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

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|   167k|{
  360|   167k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   167k|}
nx-match.c:hmap_next_with_hash__:
  348|   167k|{
  349|   467k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 301k, False: 165k]
  |  Branch (349:28): [True: 299k, False: 2.54k]
  ------------------
  350|   299k|        node = node->next;
  351|   299k|    }
  352|   167k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   167k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   167k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   167k|     (TYPE) (POINTER))
  ------------------
  353|   167k|}
nx-match.c:hmap_next_with_hash:
  395|    201|{
  396|    201|    return hmap_next_with_hash__(node->next, node->hash);
  397|    201|}
ofp-actions.c:hmap_first_with_hash:
  359|   362k|{
  360|   362k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   362k|}
ofp-actions.c:hmap_next_with_hash__:
  348|   362k|{
  349|   666k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 666k, False: 0]
  |  Branch (349:28): [True: 304k, False: 362k]
  ------------------
  350|   304k|        node = node->next;
  351|   304k|    }
  352|   362k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   362k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   362k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   362k|     (TYPE) (POINTER))
  ------------------
  353|   362k|}
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|   365k|{
  360|   365k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   365k|}
shash.c:hmap_next_with_hash__:
  348|   365k|{
  349|   861k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 740k, False: 121k]
  |  Branch (349:28): [True: 495k, False: 244k]
  ------------------
  350|   495k|        node = node->next;
  351|   495k|    }
  352|   365k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   365k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   365k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   365k|     (TYPE) (POINTER))
  ------------------
  353|   365k|}
shash.c:hmap_next_with_hash:
  395|    282|{
  396|    282|    return hmap_next_with_hash__(node->next, node->hash);
  397|    282|}

ofpbuf.c:ovs_list_poison:
  157|  28.0k|{
  158|  28.0k|    *list = OVS_LIST_POISON;
  159|  28.0k|}
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|  6.04k|{
 2364|  6.04k|    extern const struct mf_field mf_fields[MFF_N_IDS];
 2365|  6.04k|    ovs_assert((unsigned int) id < MFF_N_IDS);
  ------------------
  |  |   62|  6.04k|#define ovs_assert ovs_ignore
  ------------------
 2366|  6.04k|    return &mf_fields[id];
 2367|  6.04k|}
ofp-actions.c:mf_from_id:
 2363|  12.4k|{
 2364|  12.4k|    extern const struct mf_field mf_fields[MFF_N_IDS];
 2365|  12.4k|    ovs_assert((unsigned int) id < MFF_N_IDS);
  ------------------
  |  |   62|  12.4k|#define ovs_assert ovs_ignore
  ------------------
 2366|  12.4k|    return &mf_fields[id];
 2367|  12.4k|}

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

ofp-actions.c:ofpact_next:
  212|   831k|{
  213|   831k|    return ALIGNED_CAST(struct ofpact *,
  ------------------
  |  |  434|   831k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  214|   831k|                        (uint8_t *) ofpact + OFPACT_ALIGN(ofpact->len));
  215|   831k|}
ofp-actions.c:ofpact_get_CLONE:
 1289|  15.0k|    {                                                                   \
 1290|  15.0k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  15.0k|#define ovs_assert ovs_ignore
  ------------------
 1291|  15.0k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  15.0k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  15.0k|    }                                                                   \
ofp-actions.c:ofpact_get_CT:
 1289|  16.7k|    {                                                                   \
 1290|  16.7k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  16.7k|#define ovs_assert ovs_ignore
  ------------------
 1291|  16.7k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  16.7k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  16.7k|    }                                                                   \
ofp-actions.c:ofpact_get_WRITE_ACTIONS:
 1289|    130|    {                                                                   \
 1290|    130|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    130|#define ovs_assert ovs_ignore
  ------------------
 1291|    130|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    130|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    130|    }                                                                   \
ofp-actions.c:ofpact_put_SET_FIELD:
 1303|  51.8k|    {                                                                   \
 1304|  51.8k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  51.8k|                                            sizeof(struct STRUCT));     \
 1306|  51.8k|    }                                                                   \
ofp-actions.c:ofpact_finish_SET_FIELD:
 1317|  51.8k|    {                                                                   \
 1318|  51.8k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  51.8k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  51.8k|#define ovs_assert ovs_ignore
  ------------------
 1320|  51.8k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  51.8k|    }
ofp-actions.c:ofpact_end:
  221|   775k|{
  222|   775k|    return ofpacts
  ------------------
  |  Branch (222:12): [True: 771k, False: 4.19k]
  ------------------
  223|   775k|           ? ALIGNED_CAST(struct ofpact *, (uint8_t *) ofpacts + ofpacts_len)
  ------------------
  |  |  434|   771k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  224|       |           : NULL;
  225|   775k|}
ofp-actions.c:ofpact_put_METER:
 1303|    659|    {                                                                   \
 1304|    659|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    659|                                            sizeof(struct STRUCT));     \
 1306|    659|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT:
 1303|   148k|    {                                                                   \
 1304|   148k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|   148k|                                            sizeof(struct STRUCT));     \
 1306|   148k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_VLAN_VID:
 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_put_SET_VLAN_PCP:
 1303|  2.01k|    {                                                                   \
 1304|  2.01k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.01k|                                            sizeof(struct STRUCT));     \
 1306|  2.01k|    }                                                                   \
ofp-actions.c:ofpact_put_PUSH_VLAN:
 1303|  1.59k|    {                                                                   \
 1304|  1.59k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.59k|                                            sizeof(struct STRUCT));     \
 1306|  1.59k|    }                                                                   \
ofp-actions.c:ofpact_put_STRIP_VLAN:
 1303|  3.30k|    {                                                                   \
 1304|  3.30k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  3.30k|                                            sizeof(struct STRUCT));     \
 1306|  3.30k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_ETH_SRC:
 1303|    952|    {                                                                   \
 1304|    952|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    952|                                            sizeof(struct STRUCT));     \
 1306|    952|    }                                                                   \
ofp-actions.c:ofpact_put_SET_ETH_DST:
 1303|    557|    {                                                                   \
 1304|    557|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    557|                                            sizeof(struct STRUCT));     \
 1306|    557|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IPV4_SRC:
 1303|    793|    {                                                                   \
 1304|    793|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    793|                                            sizeof(struct STRUCT));     \
 1306|    793|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IPV4_DST:
 1303|    865|    {                                                                   \
 1304|    865|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    865|                                            sizeof(struct STRUCT));     \
 1306|    865|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_DSCP:
 1303|  1.14k|    {                                                                   \
 1304|  1.14k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.14k|                                            sizeof(struct STRUCT));     \
 1306|  1.14k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_ECN:
 1303|  1.15k|    {                                                                   \
 1304|  1.15k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.15k|                                            sizeof(struct STRUCT));     \
 1306|  1.15k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_L4_SRC_PORT:
 1303|  2.13k|    {                                                                   \
 1304|  2.13k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.13k|                                            sizeof(struct STRUCT));     \
 1306|  2.13k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_L4_DST_PORT:
 1303|  1.94k|    {                                                                   \
 1304|  1.94k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.94k|                                            sizeof(struct STRUCT));     \
 1306|  1.94k|    }                                                                   \
ofp-actions.c:ofpact_put_ENQUEUE:
 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_SET_MPLS_LABEL:
 1303|  1.29k|    {                                                                   \
 1304|  1.29k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.29k|                                            sizeof(struct STRUCT));     \
 1306|  1.29k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_TC:
 1303|  1.05k|    {                                                                   \
 1304|  1.05k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.05k|                                            sizeof(struct STRUCT));     \
 1306|  1.05k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_TTL:
 1303|    910|    {                                                                   \
 1304|    910|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    910|                                            sizeof(struct STRUCT));     \
 1306|    910|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_MPLS_TTL:
 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_PUSH_MPLS:
 1303|    581|    {                                                                   \
 1304|    581|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    581|                                            sizeof(struct STRUCT));     \
 1306|    581|    }                                                                   \
ofp-actions.c:ofpact_put_POP_MPLS:
 1303|  2.52k|    {                                                                   \
 1304|  2.52k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.52k|                                            sizeof(struct STRUCT));     \
 1306|  2.52k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_QUEUE:
 1303|    292|    {                                                                   \
 1304|    292|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    292|                                            sizeof(struct STRUCT));     \
 1306|    292|    }                                                                   \
ofp-actions.c:ofpact_put_GROUP:
 1303|    565|    {                                                                   \
 1304|    565|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    565|                                            sizeof(struct STRUCT));     \
 1306|    565|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_TTL:
 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_DEC_TTL:
 1303|  3.84k|    {                                                                   \
 1304|  3.84k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  3.84k|                                            sizeof(struct STRUCT));     \
 1306|  3.84k|    }                                                                   \
ofp-actions.c:ofpact_finish_DEC_TTL:
 1317|  3.83k|    {                                                                   \
 1318|  3.83k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  3.83k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.83k|#define ovs_assert ovs_ignore
  ------------------
 1320|  3.83k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  3.83k|    }
ofp-actions.c:ofpact_put_REG_MOVE:
 1303|    655|    {                                                                   \
 1304|    655|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    655|                                            sizeof(struct STRUCT));     \
 1306|    655|    }                                                                   \
ofp-actions.c:ofpact_put_RESUBMIT:
 1303|  1.95k|    {                                                                   \
 1304|  1.95k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.95k|                                            sizeof(struct STRUCT));     \
 1306|  1.95k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_TUNNEL:
 1303|  1.38k|    {                                                                   \
 1304|  1.38k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.38k|                                            sizeof(struct STRUCT));     \
 1306|  1.38k|    }                                                                   \
ofp-actions.c:ofpact_put_POP_QUEUE:
 1303|  1.45k|    {                                                                   \
 1304|  1.45k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.45k|                                            sizeof(struct STRUCT));     \
 1306|  1.45k|    }                                                                   \
ofp-actions.c:ofpact_put_NOTE:
 1303|  3.61k|    {                                                                   \
 1304|  3.61k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  3.61k|                                            sizeof(struct STRUCT));     \
 1306|  3.61k|    }                                                                   \
ofp-actions.c:ofpact_finish_NOTE:
 1317|  3.59k|    {                                                                   \
 1318|  3.59k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  3.59k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.59k|#define ovs_assert ovs_ignore
  ------------------
 1320|  3.59k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  3.59k|    }
ofp-actions.c:ofpact_put_MULTIPATH:
 1303|  2.95k|    {                                                                   \
 1304|  2.95k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.95k|                                            sizeof(struct STRUCT));     \
 1306|  2.95k|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT_REG:
 1303|    879|    {                                                                   \
 1304|    879|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    879|                                            sizeof(struct STRUCT));     \
 1306|    879|    }                                                                   \
ofp-actions.c:ofpact_put_EXIT:
 1303|  1.51k|    {                                                                   \
 1304|  1.51k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.51k|                                            sizeof(struct STRUCT));     \
 1306|  1.51k|    }                                                                   \
ofp-actions.c:ofpact_put_FIN_TIMEOUT:
 1303|  1.25k|    {                                                                   \
 1304|  1.25k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.25k|                                            sizeof(struct STRUCT));     \
 1306|  1.25k|    }                                                                   \
ofp-actions.c:ofpact_put_CONTROLLER:
 1303|  8.75k|    {                                                                   \
 1304|  8.75k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  8.75k|                                            sizeof(struct STRUCT));     \
 1306|  8.75k|    }                                                                   \
ofp-actions.c:ofpact_finish_CONTROLLER:
 1317|  8.74k|    {                                                                   \
 1318|  8.74k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  8.74k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  8.74k|#define ovs_assert ovs_ignore
  ------------------
 1320|  8.74k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  8.74k|    }
ofp-actions.c:ofpact_put_STACK_PUSH:
 1303|    658|    {                                                                   \
 1304|    658|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    658|                                            sizeof(struct STRUCT));     \
 1306|    658|    }                                                                   \
ofp-actions.c:ofpact_put_STACK_POP:
 1303|  2.22k|    {                                                                   \
 1304|  2.22k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.22k|                                            sizeof(struct STRUCT));     \
 1306|  2.22k|    }                                                                   \
ofp-actions.c:ofpact_put_SAMPLE:
 1303|  1.93k|    {                                                                   \
 1304|  1.93k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.93k|                                            sizeof(struct STRUCT));     \
 1306|  1.93k|    }                                                                   \
ofp-actions.c:ofpact_put_CONJUNCTION:
 1303|  1.08k|    {                                                                   \
 1304|  1.08k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.08k|                                            sizeof(struct STRUCT));     \
 1306|  1.08k|    }                                                                   \
ofp-actions.c:ofpact_put_CT:
 1303|  11.1k|    {                                                                   \
 1304|  11.1k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  11.1k|                                            sizeof(struct STRUCT));     \
 1306|  11.1k|    }                                                                   \
ofp-actions.c:ofpact_finish_CT:
 1317|  11.1k|    {                                                                   \
 1318|  11.1k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  11.1k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  11.1k|#define ovs_assert ovs_ignore
  ------------------
 1320|  11.1k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  11.1k|    }
ofp-actions.c:ofpact_get_NAT:
 1289|  15.4k|    {                                                                   \
 1290|  15.4k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  15.4k|#define ovs_assert ovs_ignore
  ------------------
 1291|  15.4k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  15.4k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  15.4k|    }                                                                   \
ofp-actions.c:ofpact_put_NAT:
 1303|  78.1k|    {                                                                   \
 1304|  78.1k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  78.1k|                                            sizeof(struct STRUCT));     \
 1306|  78.1k|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT_TRUNC:
 1303|  1.12k|    {                                                                   \
 1304|  1.12k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.12k|                                            sizeof(struct STRUCT));     \
 1306|  1.12k|    }                                                                   \
ofp-actions.c:ofpact_put_CLONE:
 1303|  10.4k|    {                                                                   \
 1304|  10.4k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  10.4k|                                            sizeof(struct STRUCT));     \
 1306|  10.4k|    }                                                                   \
ofp-actions.c:ofpact_finish_CLONE:
 1317|  10.4k|    {                                                                   \
 1318|  10.4k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  10.4k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
 1320|  10.4k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  10.4k|    }
ofp-actions.c:ofpact_put_CT_CLEAR:
 1303|  1.13k|    {                                                                   \
 1304|  1.13k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.13k|                                            sizeof(struct STRUCT));     \
 1306|  1.13k|    }                                                                   \
ofp-actions.c:ofpact_put_ENCAP:
 1303|  2.49k|    {                                                                   \
 1304|  2.49k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.49k|                                            sizeof(struct STRUCT));     \
 1306|  2.49k|    }                                                                   \
ofp-actions.c:ofpact_finish_ENCAP:
 1317|  2.29k|    {                                                                   \
 1318|  2.29k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.29k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.29k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.29k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.29k|    }
ofp-actions.c:ofpact_put_DECAP:
 1303|  2.29k|    {                                                                   \
 1304|  2.29k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.29k|                                            sizeof(struct STRUCT));     \
 1306|  2.29k|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_NSH_TTL:
 1303|    891|    {                                                                   \
 1304|    891|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    891|                                            sizeof(struct STRUCT));     \
 1306|    891|    }                                                                   \
ofp-actions.c:ofpact_put_CHECK_PKT_LARGER:
 1303|    462|    {                                                                   \
 1304|    462|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    462|                                            sizeof(struct STRUCT));     \
 1306|    462|    }                                                                   \
ofp-actions.c:ofpact_put_DELETE_FIELD:
 1303|    437|    {                                                                   \
 1304|    437|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    437|                                            sizeof(struct STRUCT));     \
 1306|    437|    }                                                                   \
ofp-actions.c:ofpact_put_DEBUG_SLOW:
 1303|  2.55k|    {                                                                   \
 1304|  2.55k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.55k|                                            sizeof(struct STRUCT));     \
 1306|  2.55k|    }                                                                   \
ofp-actions.c:ofpact_put_DEBUG_RECIRC:
 1303|  1.18k|    {                                                                   \
 1304|  1.18k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.18k|                                            sizeof(struct STRUCT));     \
 1306|  1.18k|    }                                                                   \
ofp-actions.c:ofpact_put_CLEAR_ACTIONS:
 1303|    201|    {                                                                   \
 1304|    201|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    201|                                            sizeof(struct STRUCT));     \
 1306|    201|    }                                                                   \
ofp-actions.c:ofpact_put_WRITE_METADATA:
 1303|    622|    {                                                                   \
 1304|    622|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    622|                                            sizeof(struct STRUCT));     \
 1306|    622|    }                                                                   \
ofp-actions.c:ofpact_put_GOTO_TABLE:
 1303|    259|    {                                                                   \
 1304|    259|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    259|                                            sizeof(struct STRUCT));     \
 1306|    259|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT:
 1289|   196k|    {                                                                   \
 1290|   196k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|   196k|#define ovs_assert ovs_ignore
  ------------------
 1291|   196k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|   196k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|   196k|    }                                                                   \
ofp-actions.c:ofpact_get_CONTROLLER:
 1289|  15.4k|    {                                                                   \
 1290|  15.4k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  15.4k|#define ovs_assert ovs_ignore
  ------------------
 1291|  15.4k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  15.4k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  15.4k|    }                                                                   \
ofp-actions.c:ofpact_get_ENQUEUE:
 1289|  2.83k|    {                                                                   \
 1290|  2.83k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.83k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.83k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.83k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.83k|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT_REG:
 1289|  1.36k|    {                                                                   \
 1290|  1.36k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.36k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.36k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.36k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.36k|    }                                                                   \
ofp-actions.c:ofpact_get_BUNDLE:
 1289|  1.85k|    {                                                                   \
 1290|  1.85k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.85k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.85k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.85k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.85k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_FIELD:
 1289|  59.8k|    {                                                                   \
 1290|  59.8k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  59.8k|#define ovs_assert ovs_ignore
  ------------------
 1291|  59.8k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  59.8k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  59.8k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_VLAN_VID:
 1289|  4.39k|    {                                                                   \
 1290|  4.39k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.39k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.39k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.39k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.39k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_VLAN_PCP:
 1289|  3.41k|    {                                                                   \
 1290|  3.41k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.41k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.41k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.41k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.41k|    }                                                                   \
ofp-actions.c:ofpact_get_STRIP_VLAN:
 1289|  5.87k|    {                                                                   \
 1290|  5.87k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.87k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.87k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.87k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.87k|    }                                                                   \
ofp-actions.c:ofpact_get_PUSH_VLAN:
 1289|  2.85k|    {                                                                   \
 1290|  2.85k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.85k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.85k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.85k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.85k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_ETH_SRC:
 1289|  1.41k|    {                                                                   \
 1290|  1.41k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.41k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.41k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.41k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.41k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_ETH_DST:
 1289|    806|    {                                                                   \
 1290|    806|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    806|#define ovs_assert ovs_ignore
  ------------------
 1291|    806|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    806|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    806|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IPV4_SRC:
 1289|  1.54k|    {                                                                   \
 1290|  1.54k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.54k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.54k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.54k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.54k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IPV4_DST:
 1289|  1.65k|    {                                                                   \
 1290|  1.65k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.65k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.65k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.65k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.65k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_DSCP:
 1289|  1.98k|    {                                                                   \
 1290|  1.98k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.98k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.98k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.98k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.98k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_ECN:
 1289|  2.13k|    {                                                                   \
 1290|  2.13k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.13k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.13k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.13k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.13k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_TTL:
 1289|  2.62k|    {                                                                   \
 1290|  2.62k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.62k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.62k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.62k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.62k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_L4_SRC_PORT:
 1289|  3.90k|    {                                                                   \
 1290|  3.90k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.90k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.90k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.90k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.90k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_L4_DST_PORT:
 1289|  3.59k|    {                                                                   \
 1290|  3.59k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.59k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.59k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.59k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.59k|    }                                                                   \
ofp-actions.c:ofpact_get_REG_MOVE:
 1289|  1.22k|    {                                                                   \
 1290|  1.22k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.22k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.22k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.22k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.22k|    }                                                                   \
ofp-actions.c:ofpact_get_STACK_PUSH:
 1289|  1.26k|    {                                                                   \
 1290|  1.26k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.26k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.26k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.26k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.26k|    }                                                                   \
ofp-actions.c:ofpact_get_STACK_POP:
 1289|  4.00k|    {                                                                   \
 1290|  4.00k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.00k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.00k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.00k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.00k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_TTL:
 1289|  6.25k|    {                                                                   \
 1290|  6.25k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  6.25k|#define ovs_assert ovs_ignore
  ------------------
 1291|  6.25k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  6.25k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  6.25k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_LABEL:
 1289|  2.53k|    {                                                                   \
 1290|  2.53k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.53k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.53k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.53k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.53k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_TC:
 1289|  1.92k|    {                                                                   \
 1290|  1.92k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.92k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.92k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.92k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.92k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_TTL:
 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_get_DEC_MPLS_TTL:
 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_PUSH_MPLS:
 1289|  1.05k|    {                                                                   \
 1290|  1.05k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.05k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.05k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.05k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.05k|    }                                                                   \
ofp-actions.c:ofpact_get_POP_MPLS:
 1289|  4.93k|    {                                                                   \
 1290|  4.93k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.93k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.93k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.93k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.93k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_NSH_TTL:
 1289|  1.23k|    {                                                                   \
 1290|  1.23k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.23k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.23k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.23k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.23k|    }                                                                   \
ofp-actions.c:ofpact_get_DELETE_FIELD:
 1289|    421|    {                                                                   \
 1290|    421|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    421|#define ovs_assert ovs_ignore
  ------------------
 1291|    421|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    421|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    421|    }                                                                   \
ofp-actions.c:ofpact_get_ENCAP:
 1289|  3.43k|    {                                                                   \
 1290|  3.43k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.43k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.43k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.43k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.43k|    }                                                                   \
ofp-actions.c:ofpact_get_DECAP:
 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_SET_TUNNEL:
 1289|  2.58k|    {                                                                   \
 1290|  2.58k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.58k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.58k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.58k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.58k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_QUEUE:
 1289|    572|    {                                                                   \
 1290|    572|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    572|#define ovs_assert ovs_ignore
  ------------------
 1291|    572|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    572|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    572|    }                                                                   \
ofp-actions.c:ofpact_get_POP_QUEUE:
 1289|  2.09k|    {                                                                   \
 1290|  2.09k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.09k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.09k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.09k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.09k|    }                                                                   \
ofp-actions.c:ofpact_get_FIN_TIMEOUT:
 1289|  1.49k|    {                                                                   \
 1290|  1.49k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.49k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.49k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.49k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.49k|    }                                                                   \
ofp-actions.c:ofpact_get_RESUBMIT:
 1289|  2.12k|    {                                                                   \
 1290|  2.12k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.12k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.12k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.12k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.12k|    }                                                                   \
ofp-actions.c:ofpact_get_LEARN:
 1289|  62.6k|    {                                                                   \
 1290|  62.6k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  62.6k|#define ovs_assert ovs_ignore
  ------------------
 1291|  62.6k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  62.6k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  62.6k|    }                                                                   \
ofp-actions.c:ofpact_get_CONJUNCTION:
 1289|    428|    {                                                                   \
 1290|    428|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    428|#define ovs_assert ovs_ignore
  ------------------
 1291|    428|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    428|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    428|    }                                                                   \
ofp-actions.c:ofpact_get_MULTIPATH:
 1289|  1.67k|    {                                                                   \
 1290|  1.67k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.67k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.67k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.67k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.67k|    }                                                                   \
ofp-actions.c:ofpact_get_NOTE:
 1289|  5.72k|    {                                                                   \
 1290|  5.72k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.72k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.72k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.72k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.72k|    }                                                                   \
ofp-actions.c:ofpact_get_EXIT:
 1289|  2.25k|    {                                                                   \
 1290|  2.25k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.25k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.25k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.25k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.25k|    }                                                                   \
ofp-actions.c:ofpact_get_SAMPLE:
 1289|  2.94k|    {                                                                   \
 1290|  2.94k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.94k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.94k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.94k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.94k|    }                                                                   \
ofp-actions.c:ofpact_ct_get_action_len:
  723|  16.2k|{
  724|       |    return oc->ofpact.len - offsetof(struct ofpact_conntrack, actions);
  725|  16.2k|}
ofp-actions.c:ofpact_get_CT_CLEAR:
 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_get_OUTPUT_TRUNC:
 1289|  1.85k|    {                                                                   \
 1290|  1.85k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.85k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.85k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.85k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.85k|    }                                                                   \
ofp-actions.c:ofpact_nest_get_action_len:
  673|  15.1k|{
  674|       |    return on->ofpact.len - offsetof(struct ofpact_nest, actions);
  675|  15.1k|}
ofp-actions.c:ofpact_get_CHECK_PKT_LARGER:
 1289|    810|    {                                                                   \
 1290|    810|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    810|#define ovs_assert ovs_ignore
  ------------------
 1291|    810|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    810|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    810|    }                                                                   \
ofp-actions.c:ofpact_get_DEBUG_RECIRC:
 1289|  2.06k|    {                                                                   \
 1290|  2.06k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.06k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.06k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.06k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.06k|    }                                                                   \
ofp-actions.c:ofpact_get_DEBUG_SLOW:
 1289|  4.71k|    {                                                                   \
 1290|  4.71k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.71k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.71k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.71k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.71k|    }                                                                   \
ofp-actions.c:ofpact_get_CLEAR_ACTIONS:
 1289|     14|    {                                                                   \
 1290|     14|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     14|#define ovs_assert ovs_ignore
  ------------------
 1291|     14|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     14|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     14|    }                                                                   \
ofp-actions.c:ofpact_get_WRITE_METADATA:
 1289|     14|    {                                                                   \
 1290|     14|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     14|#define ovs_assert ovs_ignore
  ------------------
 1291|     14|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     14|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     14|    }                                                                   \
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|  77.2k|{
  895|  77.2k|    return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  77.2k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  896|  77.2k|                        ofpact_next(&learn->ofpact));
  897|  77.2k|}
ofp-actions.c:ofpact_learn_spec_imm:
  850|  43.3k|{
  851|  43.3k|    return spec + 1;
  852|  43.3k|}
ofp-actions.c:ofpact_learn_spec_next:
  856|  46.0k|{
  857|  46.0k|    if (spec->src_type == NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  46.0k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (857:9): [True: 43.3k, False: 2.62k]
  ------------------
  858|  43.3k|        unsigned int n_bytes = OFPACT_ALIGN(DIV_ROUND_UP(spec->n_bits, 8));
  ------------------
  |  |  205|  43.3k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  43.3k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  43.3k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  859|  43.3k|        return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  43.3k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  860|  43.3k|                            (const uint8_t *)(spec + 1) + n_bytes);
  861|  43.3k|    }
  862|  2.62k|    return spec + 1;
  863|  46.0k|}
ofp-actions.c:ofpact_get_GROUP:
 1289|    942|    {                                                                   \
 1290|    942|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    942|#define ovs_assert ovs_ignore
  ------------------
 1291|    942|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    942|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    942|    }                                                                   \
ofp-actions.c:ofpact_get_METER:
 1289|    326|    {                                                                   \
 1290|    326|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    326|#define ovs_assert ovs_ignore
  ------------------
 1291|    326|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    326|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    326|    }                                                                   \
bundle.c:ofpact_put_BUNDLE:
 1303|  2.41k|    {                                                                   \
 1304|  2.41k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.41k|                                            sizeof(struct STRUCT));     \
 1306|  2.41k|    }                                                                   \
bundle.c:ofpact_finish_BUNDLE:
 1317|  2.41k|    {                                                                   \
 1318|  2.41k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.41k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.41k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.41k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.41k|    }
learn.c:ofpact_learn_spec_end:
  894|  77.6k|{
  895|  77.6k|    return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  77.6k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  896|  77.6k|                        ofpact_next(&learn->ofpact));
  897|  77.6k|}
learn.c:ofpact_next:
  212|  77.6k|{
  213|  77.6k|    return ALIGNED_CAST(struct ofpact *,
  ------------------
  |  |  434|  77.6k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  214|  77.6k|                        (uint8_t *) ofpact + OFPACT_ALIGN(ofpact->len));
  215|  77.6k|}
learn.c:ofpact_learn_spec_imm:
  850|  43.3k|{
  851|  43.3k|    return spec + 1;
  852|  43.3k|}
learn.c:ofpact_learn_spec_next:
  856|  46.2k|{
  857|  46.2k|    if (spec->src_type == NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  46.2k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (857:9): [True: 43.6k, False: 2.62k]
  ------------------
  858|  43.6k|        unsigned int n_bytes = OFPACT_ALIGN(DIV_ROUND_UP(spec->n_bits, 8));
  ------------------
  |  |  205|  43.6k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  43.6k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  43.6k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  859|  43.6k|        return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  43.6k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  860|  43.6k|                            (const uint8_t *)(spec + 1) + n_bytes);
  861|  43.6k|    }
  862|  2.62k|    return spec + 1;
  863|  46.2k|}
learn.c:ofpact_put_LEARN:
 1303|  33.7k|    {                                                                   \
 1304|  33.7k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  33.7k|                                            sizeof(struct STRUCT));     \
 1306|  33.7k|    }                                                                   \
learn.c:ofpact_finish_LEARN:
 1317|  32.8k|    {                                                                   \
 1318|  32.8k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  32.8k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  32.8k|#define ovs_assert ovs_ignore
  ------------------
 1320|  32.8k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  32.8k|    }
multipath.c:ofpact_init_MULTIPATH:
 1310|  2.94k|    {                                                                   \
 1311|  2.94k|        ofpact_init(&ofpact->ofpact, OFPACT_##ENUM,                     \
 1312|  2.94k|                    sizeof(struct STRUCT));                             \
 1313|  2.94k|    }                                                                   \

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

ofctl_parse_target.c:ofpbuf_delete:
  172|  10.4k|{
  173|  10.4k|    if (b) {
  ------------------
  |  Branch (173:9): [True: 10.4k, False: 0]
  ------------------
  174|  10.4k|        ofpbuf_uninit(b);
  175|  10.4k|        free(b);
  176|  10.4k|    }
  177|  10.4k|}
ofp-msgs.c:ofpbuf_at_assert:
  195|  10.4k|{
  196|  10.4k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
  197|  10.4k|    ovs_assert(b->data);
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
  198|  10.4k|    return (char *) b->data + offset;
  199|  10.4k|}
ofp-msgs.c:ofpbuf_tail:
  203|  10.4k|{
  204|  10.4k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 10.4k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  10.4k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 10.4k, False: 0]
  ------------------
  206|  10.4k|}
ofp-prop.c:ofpbuf_at_assert:
  195|  7.59k|{
  196|  7.59k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  7.59k|#define ovs_assert ovs_ignore
  ------------------
  197|  7.59k|    ovs_assert(b->data);
  ------------------
  |  |   62|  7.59k|#define ovs_assert ovs_ignore
  ------------------
  198|  7.59k|    return (char *) b->data + offset;
  199|  7.59k|}
ofpbuf.c:ofpbuf_tailroom:
  228|  3.34M|{
  229|  3.34M|    return (char*)ofpbuf_end(b) - (char*)ofpbuf_tail(b);
  230|  3.34M|}
ofpbuf.c:ofpbuf_end:
  211|  3.34M|{
  212|  3.34M|    ovs_assert(b->base || !b->allocated);
  ------------------
  |  |   62|  3.34M|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (212:16): [True: 3.33M, False: 10.4k]
  |  Branch (212:27): [True: 10.4k, False: 0]
  ------------------
  213|  3.34M|    return b->base ? (char *) b->base + b->allocated : NULL;
  ------------------
  |  Branch (213:12): [True: 3.33M, False: 10.4k]
  ------------------
  214|  3.34M|}
ofpbuf.c:ofpbuf_headroom:
  221|   914k|{
  222|   914k|    return (char*)b->data - (char*)b->base;
  223|   914k|}
ofpbuf.c:ofpbuf_tail:
  203|  6.69M|{
  204|  6.69M|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  6.69M|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 6.68M, False: 10.4k]
  |  Branch (204:27): [True: 10.4k, False: 0]
  ------------------
  205|  6.69M|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 6.68M, False: 10.4k]
  ------------------
  206|  6.69M|}
nx-match.c:ofpbuf_at:
  183|    532|{
  184|    532|    if (offset + size <= b->size) {
  ------------------
  |  Branch (184:9): [True: 532, False: 0]
  ------------------
  185|    532|        ovs_assert(b->data);
  ------------------
  |  |   62|    532|#define ovs_assert ovs_ignore
  ------------------
  186|    532|        return (char *) b->data + offset;
  187|    532|    }
  188|      0|    return NULL;
  189|    532|}
ofp-actions.c:ofpbuf_pull:
  258|   102k|{
  259|   102k|    ovs_assert(b->size >= size);
  ------------------
  |  |   62|   102k|#define ovs_assert ovs_ignore
  ------------------
  260|   102k|    void *data = b->data;
  261|       |
  262|   102k|    if (!size) {
  ------------------
  |  Branch (262:9): [True: 4.53k, False: 97.6k]
  ------------------
  263|  4.53k|        return data;
  264|  4.53k|    }
  265|       |
  266|  97.6k|    b->data = (char*)b->data + size;
  267|  97.6k|    b->size = b->size - size;
  268|  97.6k|    return data;
  269|   102k|}
ofp-actions.c:ofpbuf_at_assert:
  195|  71.8k|{
  196|  71.8k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  71.8k|#define ovs_assert ovs_ignore
  ------------------
  197|  71.8k|    ovs_assert(b->data);
  ------------------
  |  |   62|  71.8k|#define ovs_assert ovs_ignore
  ------------------
  198|  71.8k|    return (char *) b->data + offset;
  199|  71.8k|}
ofp-actions.c:ofpbuf_at:
  183|  23.4k|{
  184|  23.4k|    if (offset + size <= b->size) {
  ------------------
  |  Branch (184:9): [True: 23.4k, False: 0]
  ------------------
  185|  23.4k|        ovs_assert(b->data);
  ------------------
  |  |   62|  23.4k|#define ovs_assert ovs_ignore
  ------------------
  186|  23.4k|        return (char *) b->data + offset;
  187|  23.4k|    }
  188|      0|    return NULL;
  189|  23.4k|}
ofp-actions.c:ofpbuf_tail:
  203|   166k|{
  204|   166k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|   166k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 166k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|   166k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 166k, False: 0]
  ------------------
  206|   166k|}
ofp-actions.c:ofpbuf_oversized:
  291|  39.1k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  39.1k|}
ofp-actions.c:ofpbuf_truncate:
  297|  9.75k|{
  298|  9.75k|    ovs_assert(b->size >= new_size);
  ------------------
  |  |   62|  9.75k|#define ovs_assert ovs_ignore
  ------------------
  299|  9.75k|    b->size = new_size;
  300|  9.75k|}
bundle.c:ofpbuf_oversized:
  291|  2.41k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  2.41k|}
bundle.c:ofpbuf_tail:
  203|  2.41k|{
  204|  2.41k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  2.41k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 2.41k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  2.41k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 2.41k, False: 0]
  ------------------
  206|  2.41k|}
learn.c:ofpbuf_oversized:
  291|  32.8k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  32.8k|}
learn.c:ofpbuf_tail:
  203|  32.8k|{
  204|  32.8k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  32.8k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 32.8k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  32.8k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 32.8k, False: 0]
  ------------------
  206|  32.8k|}

ofp-msgs.c:ovsthread_once_start:
  156|  10.4k|{
  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|  10.4k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|  10.4k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 10.4k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|  10.4k|}
ofp-port.c:ovsthread_once_start:
  156|  4.98k|{
  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.98k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|  4.98k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 4.98k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|  4.98k|}
nx-match.c:ovsthread_once_start:
  156|   451k|{
  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|   451k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|   451k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 451k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|   451k|}
ofp-actions.c:ovsthread_once_start:
  156|   362k|{
  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|   362k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|   362k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 362k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|   362k|}

ofctl_parse_target.c:is_pow2:
  399|  10.4k|{
  400|  10.4k|    return IS_POW2(x);
  ------------------
  |  |  312|  10.4k|#define IS_POW2(X) ((X) && !((X) & ((X) - 1)))
  |  |  ------------------
  |  |  |  Branch (312:21): [True: 10.4k, False: 0]
  |  |  |  Branch (312:28): [True: 10.4k, False: 0]
  |  |  ------------------
  ------------------
  401|  10.4k|}
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.58M|{
   97|  1.58M|    *bitmap_unit__(bitmap, offset) |= bitmap_bit__(offset);
   98|  1.58M|    return bitmap;
   99|  1.58M|}
util.c:bitmap_bit__:
   32|  2.10M|{
   33|       |    return 1UL << (offset % BITMAP_ULONG_BITS);
  ------------------
  |  |  423|  2.10M|#define BITMAP_ULONG_BITS (sizeof(unsigned long) * CHAR_BIT)
  ------------------
   34|  2.10M|}
util.c:bitmap_unit__:
   26|  2.10M|{
   27|  2.10M|    return CONST_CAST(unsigned long *, &bitmap[offset / BITMAP_ULONG_BITS]);
  ------------------
  |  |   85|  2.10M|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  2.10M|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  2.10M|     (TYPE) (POINTER))
  ------------------
   28|  2.10M|}
util.c:bitmap_is_set:
   90|   520k|{
   91|   520k|    return (*bitmap_unit__(bitmap, offset) & bitmap_bit__(offset)) != 0;
   92|   520k|}

bundle_check:
  111|    933|{
  112|    933|    static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
  ------------------
  |  |  110|    933|        {                                                                 \
  |  |  111|    933|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|  3.73k|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 933]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|    933|            0,                              /* first_dropped */           \
  |  |  113|    933|            0,                              /* last_dropped */            \
  |  |  114|    933|            0,                              /* n_dropped */               \
  |  |  115|    933|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|    933|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|    933|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|    933|        }
  ------------------
  113|    933|    size_t i;
  114|       |
  115|    933|    if (bundle->dst.field) {
  ------------------
  |  Branch (115:9): [True: 206, False: 727]
  ------------------
  116|    206|        enum ofperr error = mf_check_dst(&bundle->dst, match);
  117|    206|        if (error) {
  ------------------
  |  Branch (117:13): [True: 1, False: 205]
  ------------------
  118|      1|            return error;
  119|      1|        }
  120|    206|    }
  121|       |
  122|  40.9k|    for (i = 0; i < bundle->n_members; i++) {
  ------------------
  |  Branch (122:17): [True: 40.0k, False: 925]
  ------------------
  123|  40.0k|        ofp_port_t ofp_port = bundle->members[i];
  124|       |
  125|  40.0k|        if (ofp_port != OFPP_NONE) {
  ------------------
  |  |   47|  40.0k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  40.0k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (125:13): [True: 39.8k, False: 200]
  ------------------
  126|  39.8k|            enum ofperr error = ofpact_check_output_port(ofp_port, max_ports);
  127|  39.8k|            if (error) {
  ------------------
  |  Branch (127:17): [True: 4, False: 39.8k]
  ------------------
  128|      4|                VLOG_WARN_RL(&rl, "invalid member %"PRIu32, ofp_port);
  ------------------
  |  |  224|      4|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      4|    do {                                                                \
  |  |  |  |  288|      4|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      4|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 4]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      4|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 4]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  129|      4|                return error;
  130|      4|            }
  131|  39.8k|        }
  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|  40.0k|        if (ofp_port == OFPP_CONTROLLER) {
  ------------------
  |  |   45|  40.0k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  40.0k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (135:13): [True: 3, False: 40.0k]
  ------------------
  136|      3|            VLOG_WARN_RL(&rl, "unsupported controller member");
  ------------------
  |  |  224|      3|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      3|    do {                                                                \
  |  |  |  |  288|      3|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      3|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 3]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      3|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 3]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  137|      3|            return OFPERR_OFPBAC_BAD_OUT_PORT;
  138|      3|        }
  139|  40.0k|    }
  140|       |
  141|    925|    return 0;
  142|    932|}
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|    344|{
  278|    344|    char *fields, *basis, *algorithm, *member_type, *dst, *member_delim;
  279|    344|    char *tokstr, *save_ptr;
  280|    344|    char *error;
  281|       |
  282|    344|    save_ptr = NULL;
  283|    344|    tokstr = xstrdup(s);
  284|    344|    fields = strtok_r(tokstr, ", ", &save_ptr);
  285|    344|    basis = strtok_r(NULL, ", ", &save_ptr);
  286|    344|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  287|    344|    member_type = strtok_r(NULL, ", ", &save_ptr);
  288|    344|    dst = strtok_r(NULL, ", ", &save_ptr);
  289|    344|    member_delim = strtok_r(NULL, ": ", &save_ptr);
  290|       |
  291|    344|    error = bundle_parse__(s, port_map,
  292|    344|                           &save_ptr, fields, basis, algorithm, member_type,
  293|    344|                           dst, member_delim, ofpacts);
  294|       |
  295|    344|    free(tokstr);
  296|       |
  297|    344|    return error;
  298|    344|}
bundle.c:bundle_parse__:
  155|  2.54k|{
  156|  2.54k|    struct ofpact_bundle *bundle;
  157|       |
  158|  2.54k|    if (!member_delim) {
  ------------------
  |  Branch (158:9): [True: 8, False: 2.53k]
  ------------------
  159|      8|        return xasprintf("%s: not enough arguments to bundle action", s);
  160|      8|    }
  161|       |
  162|  2.53k|    if (strcasecmp(member_delim, "members")
  ------------------
  |  Branch (162:9): [True: 2.31k, False: 220]
  ------------------
  163|  2.31k|        && strcasecmp(member_delim, "slaves")) {
  ------------------
  |  Branch (163:12): [True: 113, False: 2.19k]
  ------------------
  164|    113|        return xasprintf("%s: missing member delimiter, expected `members', "
  165|    113|                         "got `%s'", s, member_delim);
  166|    113|    }
  167|       |
  168|  2.41k|    bundle = ofpact_put_BUNDLE(ofpacts);
  169|       |
  170|  66.6k|    for (;;) {
  171|  66.6k|        ofp_port_t member_port;
  172|  66.6k|        char *member;
  173|       |
  174|  66.6k|        member = strtok_r(NULL, ", []", save_ptr);
  175|  66.6k|        if (!member || bundle->n_members >= BUNDLE_MAX_MEMBERS) {
  ------------------
  |  |   43|  64.2k|#define BUNDLE_MAX_MEMBERS 2048
  ------------------
  |  Branch (175:13): [True: 2.39k, False: 64.2k]
  |  Branch (175:24): [True: 18, False: 64.2k]
  ------------------
  176|  2.41k|            break;
  177|  2.41k|        }
  178|       |
  179|  64.2k|        if (!ofputil_port_from_string(member, port_map, &member_port)) {
  ------------------
  |  Branch (179:13): [True: 3, False: 64.2k]
  ------------------
  180|      3|            return xasprintf("%s: bad port number", member);
  181|      3|        }
  182|  64.2k|        ofpbuf_put(ofpacts, &member_port, sizeof member_port);
  183|       |
  184|  64.2k|        bundle = ofpacts->header;
  185|  64.2k|        bundle->n_members++;
  186|  64.2k|    }
  187|       |
  188|  2.41k|    if (ofpbuf_oversized(ofpacts)) {
  ------------------
  |  Branch (188:9): [True: 0, False: 2.41k]
  ------------------
  189|      0|        return xasprintf("input too big");
  190|      0|    }
  191|       |
  192|  2.41k|    ofpact_finish_BUNDLE(ofpacts, &bundle);
  193|  2.41k|    bundle->basis = atoi(basis);
  194|       |
  195|  2.41k|    if (!strcasecmp(fields, "eth_src")) {
  ------------------
  |  Branch (195:9): [True: 196, False: 2.22k]
  ------------------
  196|    196|        bundle->fields = NX_HASH_FIELDS_ETH_SRC;
  197|  2.22k|    } else if (!strcasecmp(fields, "symmetric_l4")) {
  ------------------
  |  Branch (197:16): [True: 437, False: 1.78k]
  ------------------
  198|    437|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
  199|  1.78k|    } else if (!strcasecmp(fields, "symmetric_l3l4")) {
  ------------------
  |  Branch (199:16): [True: 216, False: 1.56k]
  ------------------
  200|    216|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
  201|  1.56k|    } else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
  ------------------
  |  Branch (201:16): [True: 194, False: 1.37k]
  ------------------
  202|    194|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
  203|  1.37k|    } else if (!strcasecmp(fields, "nw_src")) {
  ------------------
  |  Branch (203:16): [True: 290, False: 1.08k]
  ------------------
  204|    290|        bundle->fields = NX_HASH_FIELDS_NW_SRC;
  205|  1.08k|    } else if (!strcasecmp(fields, "nw_dst")) {
  ------------------
  |  Branch (205:16): [True: 440, False: 643]
  ------------------
  206|    440|        bundle->fields = NX_HASH_FIELDS_NW_DST;
  207|    643|    } else if (!strcasecmp(fields, "symmetric_l3")) {
  ------------------
  |  Branch (207:16): [True: 377, False: 266]
  ------------------
  208|    377|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
  209|    377|    } else {
  210|    266|        return xasprintf("%s: unknown fields `%s'", s, fields);
  211|    266|    }
  212|       |
  213|  2.15k|    if (!strcasecmp(algorithm, "active_backup")) {
  ------------------
  |  Branch (213:9): [True: 389, False: 1.76k]
  ------------------
  214|    389|        bundle->algorithm = NX_BD_ALG_ACTIVE_BACKUP;
  215|  1.76k|    } else if (!strcasecmp(algorithm, "hrw")) {
  ------------------
  |  Branch (215:16): [True: 1.67k, False: 88]
  ------------------
  216|  1.67k|        bundle->algorithm = NX_BD_ALG_HRW;
  217|  1.67k|    } else {
  218|     88|        return xasprintf("%s: unknown algorithm `%s'", s, algorithm);
  219|     88|    }
  220|       |
  221|  2.06k|    if (strcasecmp(member_type, "ofport")) {
  ------------------
  |  Branch (221:9): [True: 47, False: 2.01k]
  ------------------
  222|     47|        return xasprintf("%s: unknown member_type `%s'", s, member_type);
  223|     47|    }
  224|       |
  225|  2.01k|    if (dst) {
  ------------------
  |  Branch (225:9): [True: 339, False: 1.67k]
  ------------------
  226|    339|        char *error = mf_parse_subfield(&bundle->dst, dst);
  227|    339|        if (error) {
  ------------------
  |  Branch (227:13): [True: 1, False: 338]
  ------------------
  228|      1|            return error;
  229|      1|        }
  230|       |
  231|    338|        if (!mf_nxm_header(bundle->dst.field->id)) {
  ------------------
  |  Branch (231:13): [True: 1, False: 337]
  ------------------
  232|      1|            return xasprintf("%s: experimenter OXM field '%s' not supported",
  233|      1|                             s, dst);
  234|      1|        }
  235|    338|    }
  236|       |
  237|  2.01k|    return NULL;
  238|  2.01k|}

ofp-flow.c:htonll:
   29|  11.7k|{
   30|  11.7k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 11.7k]
  ------------------
   31|  11.7k|}
ofp-flow.c:be32_to_be16:
  135|    125|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-match.c:be32_to_be16:
  135|    109|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-parse.c:htonll:
   29|  3.30k|{
   30|  3.30k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 3.30k]
  ------------------
   31|  3.30k|}
util.c:htonll:
   29|   127k|{
   30|   127k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 127k]
  ------------------
   31|   127k|}
util.c:ntohll:
   35|   127k|{
   36|   127k|    return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
  ------------------
  |  Branch (36:12): [True: 0, False: 127k]
  ------------------
   37|   127k|}
flow.c:be32_to_be16:
  135|     96|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
meta-flow.c:be32_to_be16:
  135|  8.52k|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
meta-flow.c:hton128:
   48|  7.67k|{
   49|  7.67k|    ovs_be128 dst;
   50|       |
   51|  7.67k|    dst.be64.hi = htonll(src.u64.hi);
   52|  7.67k|    dst.be64.lo = htonll(src.u64.lo);
   53|  7.67k|    return dst;
   54|  7.67k|}
meta-flow.c:htonll:
   29|  30.5k|{
   30|  30.5k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 30.5k]
  ------------------
   31|  30.5k|}
meta-flow.c:ntoh128:
   58|  8.61k|{
   59|  8.61k|    ovs_u128 dst;
   60|       |
   61|  8.61k|    dst.u64.hi = ntohll(src.be64.hi);
   62|  8.61k|    dst.u64.lo = ntohll(src.be64.lo);
   63|  8.61k|    return dst;
   64|  8.61k|}
meta-flow.c:ntohll:
   35|  33.8k|{
   36|  33.8k|    return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
  ------------------
  |  Branch (36:12): [True: 0, False: 33.8k]
  ------------------
   37|  33.8k|}
nx-match.c:be32_to_be16:
  135|    226|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
nx-match.c:hton128:
   48|  9.81k|{
   49|  9.81k|    ovs_be128 dst;
   50|       |
   51|  9.81k|    dst.be64.hi = htonll(src.u64.hi);
   52|  9.81k|    dst.be64.lo = htonll(src.u64.lo);
   53|  9.81k|    return dst;
   54|  9.81k|}
nx-match.c:htonll:
   29|  47.4k|{
   30|  47.4k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 47.4k]
  ------------------
   31|  47.4k|}
ofp-actions.c:be32_to_be16:
  135|  12.3k|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-actions.c:htonll:
   29|   134k|{
   30|   134k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 134k]
  ------------------
   31|   134k|}
learn.c:htonll:
   29|    225|{
   30|    225|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 225]
  ------------------
   31|    225|}

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

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|   683k|        {                                                               \
   73|   683k|            *counter_##COUNTER##_get() += n;                            \
   74|   683k|        }                                                               \
dp-packet.c:dp_packet_batch_grow_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dp-packet-gso.c:dp_packet_gso_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dp-packet-gso.c:dp_packet_partial_gso_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
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|  10.7k|        {                                                               \
   73|  10.7k|            *counter_##COUNTER##_get() += n;                            \
   74|  10.7k|        }                                                               \
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|        }
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|        }
dpif-netdev.c:dpif_netdev_output_grow_queues_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:dpif_netdev_recirc_big_batch_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|  27.4k|{
   31|       |    ds->string = NULL;
   32|  27.4k|    ds->length = 0;
   33|  27.4k|    ds->allocated = 0;
   34|  27.4k|}
ds_clear:
   40|  6.06k|{
   41|  6.06k|    ds->length = 0;
   42|  6.06k|}
ds_reserve:
   60|  30.9k|{
   61|  30.9k|    if (min_length > ds->allocated || !ds->string) {
  ------------------
  |  Branch (61:9): [True: 25.0k, False: 5.88k]
  |  Branch (61:39): [True: 7, False: 5.88k]
  ------------------
   62|  25.0k|        ds->allocated += MAX(min_length, ds->allocated);
  ------------------
  |  |   95|  25.0k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 25.0k, False: 7]
  |  |  ------------------
  ------------------
   63|  25.0k|        ds->allocated = MAX(8, ds->allocated);
  ------------------
  |  |   95|  25.0k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 12.0k, False: 12.9k]
  |  |  ------------------
  ------------------
   64|  25.0k|        ds->string = xrealloc(ds->string, ds->allocated + 1);
   65|  25.0k|    }
   66|  30.9k|}
ds_put_uninit:
   73|  22.2k|{
   74|  22.2k|    ds_reserve(ds, ds->length + n);
   75|  22.2k|    ds->length += n;
   76|  22.2k|    ds->string[ds->length] = '\0';
   77|  22.2k|    return &ds->string[ds->length - n];
   78|  22.2k|}
ds_put_char__:
   82|  1.48k|{
   83|  1.48k|    *ds_put_uninit(ds, 1) = c;
   84|  1.48k|}
ds_put_utf8:
   89|  39.2k|{
   90|  39.2k|    if (uc <= 0x7f) {
  ------------------
  |  Branch (90:9): [True: 3.38k, False: 35.8k]
  ------------------
   91|  3.38k|        ds_put_char(ds, uc);
   92|  35.8k|    } else if (uc <= 0x7ff) {
  ------------------
  |  Branch (92:16): [True: 5.87k, False: 29.9k]
  ------------------
   93|  5.87k|        ds_put_char(ds, 0xc0 | (uc >> 6));
   94|  5.87k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
   95|  29.9k|    } else if (uc <= 0xffff) {
  ------------------
  |  Branch (95:16): [True: 12.2k, False: 17.7k]
  ------------------
   96|  12.2k|        ds_put_char(ds, 0xe0 | (uc >> 12));
   97|  12.2k|        ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
   98|  12.2k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
   99|  17.7k|    } else if (uc <= 0x10ffff) {
  ------------------
  |  Branch (99:16): [True: 17.7k, False: 0]
  ------------------
  100|  17.7k|        ds_put_char(ds, 0xf0 | (uc >> 18));
  101|  17.7k|        ds_put_char(ds, 0x80 | ((uc >> 12) & 0x3f));
  102|  17.7k|        ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
  103|  17.7k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
  104|  17.7k|    } else {
  105|       |        /* Invalid code point.  Insert the Unicode general substitute
  106|       |         * REPLACEMENT CHARACTER. */
  107|      0|        ds_put_utf8(ds, 0xfffd);
  108|      0|    }
  109|  39.2k|}
ds_put_cstr:
  125|  20.7k|{
  126|  20.7k|    size_t s_len = strlen(s);
  127|  20.7k|    memcpy(ds_put_uninit(ds, s_len), s, s_len);
  128|  20.7k|}
ds_put_format:
  139|  3.04k|{
  140|  3.04k|    va_list args;
  141|       |
  142|  3.04k|    va_start(args, format);
  143|  3.04k|    ds_put_format_valist(ds, format, args);
  144|       |    va_end(args);
  145|  3.04k|}
ds_put_format_valist:
  149|  3.04k|{
  150|  3.04k|    va_list args;
  151|  3.04k|    size_t available;
  152|  3.04k|    int needed;
  153|       |
  154|  3.04k|    va_copy(args, args_);
  155|  3.04k|    available = ds->string ? ds->allocated - ds->length + 1 : 0;
  ------------------
  |  Branch (155:17): [True: 2.96k, False: 83]
  ------------------
  156|  3.04k|    needed = vsnprintf(ds->string
  ------------------
  |  Branch (156:24): [True: 2.96k, False: 83]
  ------------------
  157|  3.04k|                       ? &ds->string[ds->length]
  158|  3.04k|                       : NULL,
  159|  3.04k|                       available, format, args);
  160|  3.04k|    va_end(args);
  161|       |
  162|  3.04k|    if (needed < available) {
  ------------------
  |  Branch (162:9): [True: 672, False: 2.37k]
  ------------------
  163|    672|        ds->length += needed;
  164|  2.37k|    } else {
  165|  2.37k|        ds_reserve(ds, ds->length + needed);
  166|       |
  167|  2.37k|        va_copy(args, args_);
  168|  2.37k|        available = ds->allocated - ds->length + 1;
  169|  2.37k|        needed = vsnprintf(&ds->string[ds->length],
  170|  2.37k|                           available, format, args);
  171|  2.37k|        va_end(args);
  172|       |
  173|  2.37k|        ovs_assert(needed < available);
  ------------------
  |  |   62|  2.37k|#define ovs_assert ovs_ignore
  ------------------
  174|  2.37k|        ds->length += needed;
  175|  2.37k|    }
  176|  3.04k|}
ds_cstr:
  343|  16.9k|{
  344|  16.9k|    if (!ds->string) {
  ------------------
  |  Branch (344:9): [True: 0, False: 16.9k]
  ------------------
  345|      0|        ds_reserve(ds, 0);
  346|      0|    }
  347|  16.9k|    ds->string[ds->length] = '\0';
  348|  16.9k|    return ds->string;
  349|  16.9k|}
ds_steal_cstr:
  362|  10.4k|{
  363|  10.4k|    char *s = ds_cstr(ds);
  364|  10.4k|    ds_init(ds);
  365|  10.4k|    return s;
  366|  10.4k|}
ds_destroy:
  370|    144|{
  371|    144|    free(ds->string);
  372|    144|}
ds_put_hex:
  385|     29|{
  386|     29|    const uint8_t *buf = buf_;
  387|     29|    bool printed = false;
  388|     29|    int i;
  389|       |
  390|  1.03k|    for (i = 0; i < size; i++) {
  ------------------
  |  Branch (390:17): [True: 1.00k, False: 29]
  ------------------
  391|  1.00k|        uint8_t val = buf[i];
  392|  1.00k|        if (val || printed) {
  ------------------
  |  Branch (392:13): [True: 238, False: 768]
  |  Branch (392:20): [True: 88, False: 680]
  ------------------
  393|    326|            if (!printed) {
  ------------------
  |  Branch (393:17): [True: 29, False: 297]
  ------------------
  394|     29|                ds_put_format(ds, "0x%"PRIx8, val);
  395|    297|            } else {
  396|    297|                ds_put_format(ds, "%02"PRIx8, val);
  397|    297|            }
  398|    326|            printed = true;
  399|    326|        }
  400|  1.00k|    }
  401|     29|    if (!printed) {
  ------------------
  |  Branch (401:9): [True: 0, False: 29]
  ------------------
  402|      0|        ds_put_char(ds, '0');
  403|      0|    }
  404|     29|}
ds_chomp:
  505|     27|{
  506|     27|    if (ds->length > 0 && ds->string[ds->length - 1] == (char) c) {
  ------------------
  |  Branch (506:9): [True: 27, False: 0]
  |  Branch (506:27): [True: 27, False: 0]
  ------------------
  507|     27|        ds->string[--ds->length] = '\0';
  508|     27|        return true;
  509|     27|    } else {
  510|       |        return false;
  511|      0|    }
  512|     27|}

flow_zero_wildcards:
 1288|    467|{
 1289|    467|    uint64_t *flow_u64 = (uint64_t *) flow;
 1290|    467|    const uint64_t *wc_u64 = (const uint64_t *) &wildcards->masks;
 1291|    467|    size_t i;
 1292|       |
 1293|  43.4k|    for (i = 0; i < FLOW_U64S; i++) {
  ------------------
  |  |  165|  43.4k|#define FLOW_U64S (sizeof(struct flow) / sizeof(uint64_t))
  ------------------
  |  Branch (1293:17): [True: 42.9k, False: 467]
  ------------------
 1294|  42.9k|        flow_u64[i] &= wc_u64[i];
 1295|  42.9k|    }
 1296|    467|}
ct_state_to_string:
 1416|  9.83k|{
 1417|  9.83k|    switch (state) {
 1418|      0|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
 1419|      0|        CS_STATES
  ------------------
  |  |  926|  1.54k|    CS_STATE(NEW,         0, "new")             \
  |  |  ------------------
  |  |  |  | 1418|  1.54k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.54k, False: 8.29k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  927|  1.54k|    CS_STATE(ESTABLISHED, 1, "est")             \
  |  |  ------------------
  |  |  |  | 1418|  1.43k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.43k, False: 8.39k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  928|  1.43k|    CS_STATE(RELATED,     2, "rel")             \
  |  |  ------------------
  |  |  |  | 1418|  1.09k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.09k, False: 8.73k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  929|  1.09k|    CS_STATE(REPLY_DIR,   3, "rpl")             \
  |  |  ------------------
  |  |  |  | 1418|    791|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 791, False: 9.03k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  930|    791|    CS_STATE(INVALID,     4, "inv")             \
  |  |  ------------------
  |  |  |  | 1418|    707|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 707, False: 9.12k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  931|    707|    CS_STATE(TRACKED,     5, "trk")             \
  |  |  ------------------
  |  |  |  | 1418|    624|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 624, False: 9.20k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  932|    624|    CS_STATE(SRC_NAT,     6, "snat")            \
  |  |  ------------------
  |  |  |  | 1418|    332|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 332, False: 9.49k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  933|    332|    CS_STATE(DST_NAT,     7, "dnat")
  |  |  ------------------
  |  |  |  | 1418|    328|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 328, False: 9.50k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1420|      0|#undef CS_STATE
 1421|  2.97k|    default:
  ------------------
  |  Branch (1421:5): [True: 2.97k, False: 6.85k]
  ------------------
 1422|       |        return NULL;
 1423|  9.83k|    }
 1424|  9.83k|}
flow_tun_flag_to_string:
 1539|  1.18k|{
 1540|  1.18k|    switch (flags) {
 1541|     24|    case FLOW_TNL_F_DONT_FRAGMENT:
  ------------------
  |  |   61|     24|#define FLOW_TNL_F_DONT_FRAGMENT (1 << 1)
  ------------------
  |  Branch (1541:5): [True: 24, False: 1.16k]
  ------------------
 1542|     24|        return "df";
 1543|     26|    case FLOW_TNL_F_CSUM:
  ------------------
  |  |   62|     26|#define FLOW_TNL_F_CSUM (1 << 2)
  ------------------
  |  Branch (1543:5): [True: 26, False: 1.15k]
  ------------------
 1544|     26|        return "csum";
 1545|     23|    case FLOW_TNL_F_KEY:
  ------------------
  |  |   63|     23|#define FLOW_TNL_F_KEY (1 << 3)
  ------------------
  |  Branch (1545:5): [True: 23, False: 1.16k]
  ------------------
 1546|     23|        return "key";
 1547|    719|    case FLOW_TNL_F_OAM:
  ------------------
  |  |   56|    719|#define FLOW_TNL_F_OAM (1 << 0)
  ------------------
  |  Branch (1547:5): [True: 719, False: 466]
  ------------------
 1548|    719|        return "oam";
 1549|    393|    default:
  ------------------
  |  Branch (1549:5): [True: 393, False: 792]
  ------------------
 1550|       |        return NULL;
 1551|  1.18k|    }
 1552|  1.18k|}
format_flags:
 1557|     27|{
 1558|     27|    uint32_t bad = 0;
 1559|       |
 1560|     27|    if (!flags) {
  ------------------
  |  Branch (1560:9): [True: 0, False: 27]
  ------------------
 1561|      0|        ds_put_char(ds, '0');
 1562|      0|        return;
 1563|      0|    }
 1564|    224|    while (flags) {
  ------------------
  |  Branch (1564:12): [True: 197, False: 27]
  ------------------
 1565|    197|        uint32_t bit = rightmost_1bit(flags);
 1566|    197|        const char *s;
 1567|       |
 1568|    197|        s = bit_to_string(bit);
 1569|    197|        if (s) {
  ------------------
  |  Branch (1569:13): [True: 97, False: 100]
  ------------------
 1570|     97|            ds_put_format(ds, "%s%c", s, del);
 1571|    100|        } else {
 1572|    100|            bad |= bit;
 1573|    100|        }
 1574|       |
 1575|    197|        flags &= ~bit;
 1576|    197|    }
 1577|       |
 1578|     27|    if (bad) {
  ------------------
  |  Branch (1578:9): [True: 20, False: 7]
  ------------------
 1579|     20|        ds_put_format(ds, "0x%"PRIx32"%c", bad, del);
 1580|     20|    }
 1581|     27|    ds_chomp(ds, del);
 1582|     27|}
format_flags_masked:
 1588|     28|{
 1589|     28|    if (name) {
  ------------------
  |  Branch (1589:9): [True: 0, False: 28]
  ------------------
 1590|      0|        ds_put_format(ds, "%s%s=%s", colors.param, name, colors.end);
 1591|      0|    }
 1592|       |
 1593|     28|    if (mask == max_mask) {
  ------------------
  |  Branch (1593:9): [True: 27, False: 1]
  ------------------
 1594|     27|        format_flags(ds, bit_to_string, flags, '|');
 1595|     27|        return;
 1596|     27|    }
 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: 2, False: 30]
  ------------------
 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|     48|{
 1634|     48|    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: 48]
  |  Branch (1634:35): [True: 0, False: 0]
  ------------------
 1635|      0|        ds_put_cstr(s, "eth");
 1636|     48|    } else {
 1637|     48|        ds_put_cstr(s, "packet_type=(");
 1638|     48|        put_u16_masked(s, pt_ns(value), pt_ns(mask));
 1639|     48|        ds_put_char(s, ',');
 1640|     48|        put_u16_masked(s, pt_ns_type(value), pt_ns_type(mask));
 1641|     48|        ds_put_char(s, ')');
 1642|     48|    }
 1643|     48|}
parse_flags:
 1664|  3.62k|{
 1665|  3.62k|    uint32_t result = 0;
 1666|  3.62k|    int n;
 1667|       |
 1668|       |    /* Parse masked flags in numeric format? */
 1669|  3.62k|    if (res_mask && ovs_scan(s, "%"SCNi32"/%"SCNi32"%n",
  ------------------
  |  Branch (1669:9): [True: 3.62k, False: 0]
  |  Branch (1669:21): [True: 1.04k, False: 2.58k]
  ------------------
 1670|  3.62k|                             res_flags, res_mask, &n) && n > 0) {
  ------------------
  |  Branch (1670:58): [True: 1.04k, False: 0]
  ------------------
 1671|  1.04k|        if (*res_flags & ~allowed || *res_mask & ~allowed) {
  ------------------
  |  Branch (1671:13): [True: 23, False: 1.02k]
  |  Branch (1671:38): [True: 25, False: 1.00k]
  ------------------
 1672|     48|            goto unknown;
 1673|     48|        }
 1674|  1.00k|        return n;
 1675|  1.04k|    }
 1676|       |
 1677|  2.58k|    n = 0;
 1678|       |
 1679|  2.58k|    if (res_mask && (*s == '+' || *s == '-')) {
  ------------------
  |  Branch (1679:9): [True: 2.58k, False: 0]
  |  Branch (1679:22): [True: 270, False: 2.31k]
  |  Branch (1679:35): [True: 555, False: 1.75k]
  ------------------
 1680|    825|        uint32_t flags = 0, mask = 0;
 1681|       |
 1682|       |        /* Parse masked flags. */
 1683|  1.95k|        while (s[0] != end) {
  ------------------
  |  Branch (1683:16): [True: 1.20k, False: 747]
  ------------------
 1684|  1.20k|            bool set;
 1685|  1.20k|            uint32_t bit;
 1686|  1.20k|            size_t len;
 1687|       |
 1688|  1.20k|            if (s[0] == '+') {
  ------------------
  |  Branch (1688:17): [True: 529, False: 677]
  ------------------
 1689|    529|                set = true;
 1690|    677|            } else if (s[0] == '-') {
  ------------------
  |  Branch (1690:24): [True: 677, False: 0]
  ------------------
 1691|    677|                set = false;
 1692|    677|            } 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.20k|            s++;
 1701|  1.20k|            n++;
 1702|       |
 1703|  7.00k|            for (bit = 1; bit; bit <<= 1) {
  ------------------
  |  Branch (1703:27): [True: 6.94k, False: 68]
  ------------------
 1704|  6.94k|                const char *fname = bit_to_string(bit);
 1705|       |
 1706|  6.94k|                if (!fname) {
  ------------------
  |  Branch (1706:21): [True: 1.58k, False: 5.36k]
  ------------------
 1707|  1.58k|                    continue;
 1708|  1.58k|                }
 1709|       |
 1710|  5.36k|                len = strlen(fname);
 1711|  5.36k|                if (strncmp(s, fname, len) ||
  ------------------
  |  Branch (1711:21): [True: 4.21k, False: 1.15k]
  ------------------
 1712|  4.22k|                    (s[len] != '+' && s[len] != '-' && s[len] != end)) {
  ------------------
  |  Branch (1712:22): [True: 887, False: 264]
  |  Branch (1712:39): [True: 762, False: 125]
  |  Branch (1712:56): [True: 13, False: 749]
  ------------------
 1713|  4.22k|                    continue;
 1714|  4.22k|                }
 1715|       |
 1716|  1.13k|                if (mask & bit) {
  ------------------
  |  Branch (1716:21): [True: 9, False: 1.12k]
  ------------------
 1717|       |                    /* bit already set. */
 1718|      9|                    if (res_string) {
  ------------------
  |  Branch (1718:25): [True: 9, False: 0]
  ------------------
 1719|      9|                        *res_string = xasprintf("%s: Each %s flag can be "
 1720|      9|                                                "specified only once", s,
 1721|      9|                                                field_name);
 1722|      9|                    }
 1723|      9|                    return -EINVAL;
 1724|      9|                }
 1725|  1.12k|                if (!(bit & allowed)) {
  ------------------
  |  Branch (1725:21): [True: 1, False: 1.12k]
  ------------------
 1726|      1|                    goto unknown;
 1727|      1|                }
 1728|  1.12k|                if (set) {
  ------------------
  |  Branch (1728:21): [True: 497, False: 631]
  ------------------
 1729|    497|                   flags |= bit;
 1730|    497|                }
 1731|  1.12k|                mask |= bit;
 1732|  1.12k|                break;
 1733|  1.12k|            }
 1734|       |
 1735|  1.19k|            if (!bit) {
  ------------------
  |  Branch (1735:17): [True: 68, False: 1.12k]
  ------------------
 1736|     68|                goto unknown;
 1737|     68|            }
 1738|  1.12k|            s += len;
 1739|  1.12k|            n += len;
 1740|  1.12k|        }
 1741|       |
 1742|    747|        *res_flags = flags;
 1743|    747|        *res_mask = mask;
 1744|    747|        return n;
 1745|    825|    }
 1746|       |
 1747|       |    /* Parse unmasked flags.  If a flag is present, it is set, otherwise
 1748|       |     * it is not set. */
 1749|  8.09k|    while (s[n] != end) {
  ------------------
  |  Branch (1749:12): [True: 6.47k, False: 1.61k]
  ------------------
 1750|  6.47k|        unsigned long long int flags;
 1751|  6.47k|        uint32_t bit;
 1752|  6.47k|        int n0;
 1753|       |
 1754|  6.47k|        if (ovs_scan(&s[n], "%lli%n", &flags, &n0)) {
  ------------------
  |  Branch (1754:13): [True: 4.70k, False: 1.77k]
  ------------------
 1755|  4.70k|            if (flags & ~allowed) {
  ------------------
  |  Branch (1755:17): [True: 31, False: 4.67k]
  ------------------
 1756|     31|                goto unknown;
 1757|     31|            }
 1758|  4.67k|            n += n0 + (s[n + n0] == '|');
 1759|  4.67k|            result |= flags;
 1760|  4.67k|            continue;
 1761|  4.70k|        }
 1762|       |
 1763|  12.6k|        for (bit = 1; bit; bit <<= 1) {
  ------------------
  |  Branch (1763:23): [True: 12.4k, False: 110]
  ------------------
 1764|  12.4k|            const char *name = bit_to_string(bit);
 1765|  12.4k|            size_t len;
 1766|       |
 1767|  12.4k|            if (!name) {
  ------------------
  |  Branch (1767:17): [True: 2.56k, False: 9.93k]
  ------------------
 1768|  2.56k|                continue;
 1769|  2.56k|            }
 1770|       |
 1771|  9.93k|            len = strlen(name);
 1772|  9.93k|            if (!strncmp(s + n, name, len) &&
  ------------------
  |  Branch (1772:17): [True: 1.68k, False: 8.25k]
  ------------------
 1773|  1.68k|                (s[n + len] == '|' || s[n + len] == end)) {
  ------------------
  |  Branch (1773:18): [True: 913, False: 770]
  |  Branch (1773:39): [True: 753, False: 17]
  ------------------
 1774|  1.66k|                if (!(bit & allowed)) {
  ------------------
  |  Branch (1774:21): [True: 2, False: 1.66k]
  ------------------
 1775|      2|                    goto unknown;
 1776|      2|                }
 1777|  1.66k|                result |= bit;
 1778|  1.66k|                n += len + (s[n + len] == '|');
 1779|  1.66k|                break;
 1780|  1.66k|            }
 1781|  9.93k|        }
 1782|       |
 1783|  1.77k|        if (!bit) {
  ------------------
  |  Branch (1783:13): [True: 110, False: 1.66k]
  ------------------
 1784|    110|            goto unknown;
 1785|    110|        }
 1786|  1.77k|    }
 1787|       |
 1788|  1.61k|    *res_flags = result;
 1789|  1.61k|    if (res_mask) {
  ------------------
  |  Branch (1789:9): [True: 1.61k, False: 0]
  ------------------
 1790|  1.61k|        *res_mask = UINT32_MAX;
 1791|  1.61k|    }
 1792|  1.61k|    if (res_string) {
  ------------------
  |  Branch (1792:9): [True: 1.61k, False: 0]
  ------------------
 1793|  1.61k|        *res_string = NULL;
 1794|  1.61k|    }
 1795|  1.61k|    return n;
 1796|       |
 1797|    260|unknown:
 1798|    260|    if (res_string) {
  ------------------
  |  Branch (1798:9): [True: 260, False: 0]
  ------------------
 1799|    260|        *res_string = xasprintf("%s: unknown %s flag(s)", s, field_name);
 1800|    260|    }
 1801|       |    return -EINVAL;
 1802|  1.75k|}
flow_wildcards_init_catchall:
 1885|  31.3k|{
 1886|  31.3k|    memset(&wc->masks, 0, sizeof wc->masks);
 1887|  31.3k|}
flow_wildcards_equal:
 2230|  10.7k|{
 2231|  10.7k|    return flow_equal(&a->masks, &b->masks);
 2232|  10.7k|}
flow_wildcards_set_reg_mask:
 2275|  34.6k|{
 2276|  34.6k|    wc->masks.regs[idx] = mask;
 2277|  34.6k|}
flow_wildcards_set_xreg_mask:
 2283|  19.1k|{
 2284|  19.1k|    flow_set_xreg(&wc->masks, idx, mask);
 2285|  19.1k|}
flow_wildcards_set_xxreg_mask:
 2292|  8.33k|{
 2293|  8.33k|    flow_set_xxreg(&wc->masks, idx, mask);
 2294|  8.33k|}
flow_set_dl_vlan:
 2780|  1.01k|{
 2781|  1.01k|    if (vid == htons(OFP10_VLAN_NONE)) {
  ------------------
  |  Branch (2781:9): [True: 262, False: 755]
  ------------------
 2782|    262|        flow->vlans[id].tci = htons(0);
 2783|    755|    } else {
 2784|    755|        vid &= htons(VLAN_VID_MASK);
 2785|    755|        flow->vlans[id].tci &= ~htons(VLAN_VID_MASK);
 2786|       |        flow->vlans[id].tci |= htons(VLAN_CFI) | vid;
 2787|    755|    }
 2788|  1.01k|}
flow_set_vlan_vid:
 2805|    552|{
 2806|       |    ovs_be16 mask = htons(VLAN_VID_MASK | VLAN_CFI);
 2807|    552|    flow->vlans[0].tci &= ~mask;
 2808|    552|    flow->vlans[0].tci |= vid & mask;
 2809|    552|}
flow_set_vlan_pcp:
 2820|  1.05k|{
 2821|  1.05k|    pcp &= 0x07;
 2822|  1.05k|    flow->vlans[id].tci &= ~htons(VLAN_PCP_MASK);
 2823|       |    flow->vlans[id].tci |= htons((pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
 2824|  1.05k|}
flow_count_vlan_headers:
 2829|  3.07k|{
 2830|  3.07k|    int i;
 2831|       |
 2832|  5.42k|    for (i = 0; i < FLOW_MAX_VLAN_HEADERS; i++) {
  ------------------
  |  |   75|  5.42k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
  |  Branch (2832:17): [True: 4.90k, False: 523]
  ------------------
 2833|  4.90k|        if (!(flow->vlans[i].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (2833:13): [True: 2.54k, False: 2.35k]
  ------------------
 2834|  2.54k|            break;
 2835|  2.54k|        }
 2836|  4.90k|    }
 2837|  3.07k|    return i;
 2838|  3.07k|}
flow_pop_vlan:
 2860|  3.07k|{
 2861|  3.07k|    int n = flow_count_vlan_headers(flow);
 2862|  3.07k|    if (n > 1) {
  ------------------
  |  Branch (2862:9): [True: 523, False: 2.54k]
  ------------------
 2863|    523|        if (wc) {
  ------------------
  |  Branch (2863:13): [True: 0, False: 523]
  ------------------
 2864|      0|            memset(&wc->masks.vlans[1], 0xff,
 2865|      0|                   sizeof(union flow_vlan_hdr) * (n - 1));
 2866|      0|        }
 2867|    523|        memmove(&flow->vlans[0], &flow->vlans[1],
 2868|    523|                sizeof(union flow_vlan_hdr) * (n - 1));
 2869|    523|    }
 2870|  3.07k|    if (n > 0) {
  ------------------
  |  Branch (2870:9): [True: 1.83k, False: 1.23k]
  ------------------
 2871|  1.83k|        memset(&flow->vlans[n - 1], 0, sizeof(union flow_vlan_hdr));
 2872|  1.83k|    }
 2873|  3.07k|}
flow_push_vlan_uninit:
 2877|  1.55k|{
 2878|  1.55k|    if (wc) {
  ------------------
  |  Branch (2878:9): [True: 0, False: 1.55k]
  ------------------
 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.55k|    memmove(&flow->vlans[1], &flow->vlans[0],
 2885|  1.55k|            sizeof(union flow_vlan_hdr) * (FLOW_MAX_VLAN_HEADERS - 1));
  ------------------
  |  |   75|  1.55k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
 2886|  1.55k|    memset(&flow->vlans[0], 0, sizeof(union flow_vlan_hdr));
 2887|  1.55k|}
flow_set_mpls_label:
 3076|    687|{
 3077|    687|    set_mpls_lse_label(&flow->mpls_lse[idx], label);
 3078|    687|}
flow_set_mpls_ttl:
 3084|    706|{
 3085|    706|    set_mpls_lse_ttl(&flow->mpls_lse[idx], ttl);
 3086|    706|}
flow_set_mpls_tc:
 3092|    673|{
 3093|    673|    set_mpls_lse_tc(&flow->mpls_lse[idx], tc);
 3094|    673|}
flow_set_mpls_bos:
 3099|    569|{
 3100|    569|    set_mpls_lse_bos(&flow->mpls_lse[idx], bos);
 3101|    569|}
miniflow_init:
 3474|  21.4k|{
 3475|  21.4k|    uint64_t *dst_u64 = miniflow_values(dst);
 3476|  21.4k|    size_t idx;
 3477|       |
 3478|  22.5k|    FLOWMAP_FOR_EACH_INDEX(idx, dst->map) {
  ------------------
  |  |  337|  21.4k|    for (struct flowmap_aux aux__ = FLOWMAP_AUX_INITIALIZER(MAP);   \
  |  |  ------------------
  |  |  |  |  331|  21.4k|#define FLOWMAP_AUX_INITIALIZER(FLOWMAP) { .unit = 0, .map = (FLOWMAP) }
  |  |  ------------------
  |  |  338|  43.9k|         flowmap_next_index(&aux__, &(IDX));)
  |  |  ------------------
  |  |  |  Branch (338:10): [True: 22.5k, False: 21.4k]
  |  |  ------------------
  ------------------
 3479|  22.5k|        *dst_u64++ = flow_u64_value(src, idx);
 3480|  22.5k|    }
 3481|  21.4k|}
miniflow_map_init:
 3486|  10.7k|{
 3487|       |    /* Initialize map, counting the number of nonzero elements. */
 3488|  10.7k|    flowmap_init(&flow->map);
 3489|   996k|    for (size_t i = 0; i < FLOW_U64S; i++) {
  ------------------
  |  |  165|   996k|#define FLOW_U64S (sizeof(struct flow) / sizeof(uint64_t))
  ------------------
  |  Branch (3489:24): [True: 985k, False: 10.7k]
  ------------------
 3490|   985k|        if (flow_u64_value(src, i)) {
  ------------------
  |  Branch (3490:13): [True: 11.2k, False: 974k]
  ------------------
 3491|  11.2k|            flowmap_set(&flow->map, i, 1);
 3492|  11.2k|        }
 3493|   985k|    }
 3494|  10.7k|}
miniflow_alloc:
 3501|  10.7k|{
 3502|  10.7k|    size_t n_values = miniflow_n_values(src);
 3503|  10.7k|    size_t data_size = MINIFLOW_VALUES_SIZE(n_values);
  ------------------
  |  |  527|  10.7k|#define MINIFLOW_VALUES_SIZE(COUNT) ((COUNT) * sizeof(uint64_t))
  ------------------
 3504|  10.7k|    struct miniflow *dst = xmalloc(n * (sizeof *src + data_size));
 3505|  10.7k|    size_t i;
 3506|       |
 3507|  10.7k|    COVERAGE_INC(miniflow_malloc);
  ------------------
  |  |   83|  10.7k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|  10.7k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
 3508|       |
 3509|  32.1k|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3509:17): [True: 21.4k, False: 10.7k]
  ------------------
 3510|  21.4k|        *dst = *src;   /* Copy maps. */
 3511|  21.4k|        dsts[i] = dst;
 3512|  21.4k|        dst += 1;      /* Just past the maps. */
 3513|  21.4k|        dst = (struct miniflow *)((uint64_t *)dst + n_values); /* Skip data. */
 3514|  21.4k|    }
 3515|  10.7k|    return data_size;
 3516|  10.7k|}
miniflow_expand:
 3547|  42.3k|{
 3548|  42.3k|    memset(dst, 0, sizeof *dst);
 3549|  42.3k|    flow_union_with_miniflow(dst, src);
 3550|  42.3k|}
minimask_init:
 3616|  10.7k|{
 3617|  10.7k|    miniflow_init(&mask->masks, &wc->masks);
 3618|  10.7k|}
minimask_expand:
 3660|  21.1k|{
 3661|  21.1k|    miniflow_expand(&mask->masks, &wc->masks);
 3662|  21.1k|}
flow.c:put_u16_masked:
 1615|     96|{
 1616|     96|    if (!mask) {
  ------------------
  |  Branch (1616:9): [True: 0, False: 96]
  ------------------
 1617|      0|        ds_put_char(s, '*');
 1618|     96|    } else {
 1619|     96|        if (value > 9) {
  ------------------
  |  Branch (1619:13): [True: 68, False: 28]
  ------------------
 1620|     68|            ds_put_format(s, "0x%"PRIx16, value);
 1621|     68|        } else {
 1622|     28|            ds_put_format(s, "%"PRIu16, value);
 1623|     28|        }
 1624|       |
 1625|     96|        if (mask != UINT16_MAX) {
  ------------------
  |  Branch (1625:13): [True: 0, False: 96]
  ------------------
 1626|       |            ds_put_format(s, "/0x%"PRIx16, mask);
 1627|      0|        }
 1628|     96|    }
 1629|     96|}

match.c:flow_set_xreg:
  149|  19.1k|{
  150|  19.1k|    flow->regs[idx * 2] = value >> 32;
  151|  19.1k|    flow->regs[idx * 2 + 1] = value;
  152|  19.1k|}
match.c:flow_set_xxreg:
  169|  8.33k|{
  170|  8.33k|    flow->regs[idx * 4] = value.u64.hi >> 32;
  171|  8.33k|    flow->regs[idx * 4 + 1] = value.u64.hi;
  172|  8.33k|    flow->regs[idx * 4 + 2] = value.u64.lo >> 32;
  173|  8.33k|    flow->regs[idx * 4 + 3] = value.u64.lo;
  174|  8.33k|}
match.c:u16_to_ofp:
  214|  1.70k|{
  215|  1.70k|    return OFP_PORT_C(port);
  ------------------
  |  |  157|  1.70k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|  1.70k|}
ofp-flow.c:ofp_to_u16:
  196|  9.75k|{
  197|  9.75k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  9.75k|}
ofp-match.c:ofp_to_u16:
  196|  5.38k|{
  197|  5.38k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  5.38k|}
ofp-port.c:ofp_to_u16:
  196|   332k|{
  197|   332k|    return (OVS_FORCE uint16_t) ofp_port;
  198|   332k|}
ofp-port.c:u16_to_ofp:
  214|   218k|{
  215|   218k|    return OFP_PORT_C(port);
  ------------------
  |  |  157|   218k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|   218k|}
ofp-port.c:ofp11_to_u32:
  208|  1.36k|{
  209|  1.36k|    return (OVS_FORCE uint32_t) ofp11_port;
  210|  1.36k|}
flow.c:miniflow_values:
  530|  21.4k|{
  531|  21.4k|    return (uint64_t *)(mf + 1);
  532|  21.4k|}
flow.c:flowmap_set:
  385|  11.2k|{
  386|  11.2k|    map_t n_bits_mask = (MAP_1 << n_bits) - 1;
  ------------------
  |  |  271|  11.2k|#define MAP_1 (map_t)1
  ------------------
  387|  11.2k|    size_t unit = idx / MAP_T_BITS;
  ------------------
  |  |  270|  11.2k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  388|       |
  389|  11.2k|    idx %= MAP_T_BITS;
  ------------------
  |  |  270|  11.2k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  390|       |
  391|  11.2k|    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|  11.2k|    if (unit + 1 < FLOWMAP_UNITS && idx + n_bits > MAP_T_BITS) {
  ------------------
  |  |  280|  11.2k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  ------------------
  |  |  |  |  300|  22.5k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
                  if (unit + 1 < FLOWMAP_UNITS && idx + n_bits > MAP_T_BITS) {
  ------------------
  |  |  270|  6.75k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  |  Branch (394:9): [True: 6.75k, False: 4.50k]
  |  Branch (394:37): [True: 0, False: 6.75k]
  ------------------
  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|  11.2k|}
flow.c:flowmap_init:
  343|  10.7k|{
  344|  10.7k|    memset(fm, 0, sizeof *fm);
  345|  10.7k|}
flow.c:flow_equal:
  184|  10.7k|{
  185|  10.7k|    return !flow_compare_3way(a, b);
  186|  10.7k|}
flow.c:flow_compare_3way:
  178|  10.7k|{
  179|  10.7k|    return memcmp(a, b, sizeof *a);
  180|  10.7k|}
flow.c:flow_set_xreg:
  149|  19.1k|{
  150|  19.1k|    flow->regs[idx * 2] = value >> 32;
  151|  19.1k|    flow->regs[idx * 2 + 1] = value;
  152|  19.1k|}
flow.c:flow_set_xxreg:
  169|  8.33k|{
  170|  8.33k|    flow->regs[idx * 4] = value.u64.hi >> 32;
  171|  8.33k|    flow->regs[idx * 4 + 1] = value.u64.hi;
  172|  8.33k|    flow->regs[idx * 4 + 2] = value.u64.lo >> 32;
  173|  8.33k|    flow->regs[idx * 4 + 3] = value.u64.lo;
  174|  8.33k|}
flow.c:miniflow_get_values:
  535|  42.3k|{
  536|  42.3k|    return (const uint64_t *)(mf + 1);
  537|  42.3k|}
flow.c:flowmap_next_index:
  479|  43.9k|{
  480|  65.3k|    for (;;) {
  481|  65.3k|        map_t *map = &aux->map.bits[aux->unit];
  482|  65.3k|        if (*map) {
  ------------------
  |  Branch (482:13): [True: 22.5k, False: 42.8k]
  ------------------
  483|  22.5k|            *idx = aux->unit * MAP_T_BITS + raw_ctz(*map);
  ------------------
  |  |  270|  22.5k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  484|  22.5k|            *map = zero_rightmost_1bit(*map);
  485|  22.5k|            return true;
  486|  22.5k|        }
  487|  42.8k|        if (++aux->unit >= FLOWMAP_UNITS) {
  ------------------
  |  |  280|  42.8k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  ------------------
  |  |  |  |  300|  42.8k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  |  Branch (487:13): [True: 21.4k, False: 21.4k]
  ------------------
  488|       |            return false;
  489|  21.4k|        }
  490|  42.8k|    }
  491|  43.9k|}
flow.c:flow_u64_value:
  557|  1.00M|{
  558|  1.00M|    return ((uint64_t *)flow)[index];
  559|  1.00M|}
flow.c:miniflow_n_values:
  568|  10.7k|{
  569|  10.7k|    return flowmap_n_1bits(flow->map);
  570|  10.7k|}
flow.c:flowmap_n_1bits:
  462|  10.7k|{
  463|  10.7k|    unsigned int n_1bits = 0;
  464|  10.7k|    size_t unit;
  465|       |
  466|  21.4k|    FLOWMAP_FOR_EACH_UNIT (unit) {
  ------------------
  |  |  320|  32.1k|    for ((UNIT) = 0; (UNIT) < FLOWMAP_UNITS; (UNIT)++)
  |  |  ------------------
  |  |  |  |  280|  32.1k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  32.1k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (320:22): [True: 21.4k, False: 10.7k]
  |  |  ------------------
  ------------------
  467|  21.4k|        n_1bits += count_1bits(fm.bits[unit]);
  468|  21.4k|    }
  469|  10.7k|    return n_1bits;
  470|  10.7k|}
flow.c:flow_union_with_miniflow:
  938|  42.3k|{
  939|  42.3k|    flow_union_with_miniflow_subset(dst, src, src->map);
  940|  42.3k|}
flow.c:flow_union_with_miniflow_subset:
  919|  42.3k|{
  920|  42.3k|    uint64_t *dst_u64 = (uint64_t *) dst;
  921|  42.3k|    const uint64_t *p = miniflow_get_values(src);
  922|  42.3k|    map_t map;
  923|       |
  924|  84.7k|    FLOWMAP_FOR_EACH_MAP (map, subset) {
  ------------------
  |  |  324|  42.3k|    for (size_t unit__ = 0;                                       \
  |  |  325|   127k|         unit__ < FLOWMAP_UNITS && ((MAP) = (FLOWMAP).bits[unit__], true); \
  |  |  ------------------
  |  |  |  |  280|   127k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|   254k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (325:10): [True: 84.7k, False: 42.3k]
  |  |  |  Branch (325:36): [True: 84.7k, False: 0]
  |  |  ------------------
  |  |  326|  84.7k|         unit__++)
  ------------------
  925|  84.7k|        size_t idx;
  926|       |
  927|  84.7k|        MAP_FOR_EACH_INDEX(idx, map) {
  ------------------
  |  |  278|  84.7k|    ULLONG_FOR_EACH_1(IDX, MAP)
  |  |  ------------------
  |  |  |  |  285|  84.7k|    for (uint64_t map__ = (MAP);                    \
  |  |  |  |  286|   129k|         map__ && (((IDX) = raw_ctz(map__)), true); \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (286:10): [True: 44.5k, False: 84.7k]
  |  |  |  |  |  Branch (286:19): [True: 44.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  287|  84.7k|         map__ = zero_rightmost_1bit(map__))
  |  |  ------------------
  ------------------
  928|  44.5k|            dst_u64[idx] |= *p++;
  929|  44.5k|        }
  930|       |        dst_u64 += MAP_T_BITS;
  ------------------
  |  |  270|  84.7k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  931|  84.7k|    }
  932|  42.3k|}
meta-flow.c:flow_get_xreg:
  143|  14.1k|{
  144|  14.1k|    return ((uint64_t) flow->regs[idx * 2] << 32) | flow->regs[idx * 2 + 1];
  145|  14.1k|}
meta-flow.c:flow_get_xxreg:
  156|  6.81k|{
  157|  6.81k|    ovs_u128 value;
  158|       |
  159|  6.81k|    value.u64.hi = (uint64_t) flow->regs[idx * 4] << 32;
  160|  6.81k|    value.u64.hi |= flow->regs[idx * 4 + 1];
  161|  6.81k|    value.u64.lo = (uint64_t) flow->regs[idx * 4 + 2] << 32;
  162|  6.81k|    value.u64.lo |= flow->regs[idx * 4 + 3];
  163|       |
  164|  6.81k|    return value;
  165|  6.81k|}
meta-flow.c:get_dl_type:
 1036|  91.6k|{
 1037|  91.6k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 81.3k, False: 10.2k]
  ------------------
 1038|  81.3k|        return flow->dl_type;
 1039|  81.3k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 8.52k, False: 1.74k]
  ------------------
 1040|  8.52k|        return pt_ns_type_be(flow->packet_type);
 1041|  8.52k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  1.74k|    }
 1044|  91.6k|}
meta-flow.c:is_ethernet:
 1028|  3.63k|{
 1029|  3.63k|    if (wc) {
  ------------------
  |  Branch (1029:9): [True: 0, False: 3.63k]
  ------------------
 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.63k|}
meta-flow.c:is_vlan:
 1048|    430|{
 1049|    430|    if (!is_ethernet(flow, wc)) {
  ------------------
  |  Branch (1049:9): [True: 34, False: 396]
  ------------------
 1050|     34|        return false;
 1051|     34|    }
 1052|    396|    if (wc) {
  ------------------
  |  Branch (1052:9): [True: 0, False: 396]
  ------------------
 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|    430|}
meta-flow.c:is_ct_valid:
  954|    455|{
  955|       |    /* Matches are checked with 'mask' and without 'wc'. */
  956|    455|    if (mask && !wc) {
  ------------------
  |  Branch (956:9): [True: 454, False: 1]
  |  Branch (956:17): [True: 454, False: 0]
  ------------------
  957|       |        /* Must match at least one of the bits that implies a valid
  958|       |         * conntrack entry, or an explicit not-invalid. */
  959|    454|        return flow->ct_state & (CS_NEW | CS_ESTABLISHED | CS_RELATED
  ------------------
  |  Branch (959:16): [True: 194, False: 260]
  ------------------
  960|    454|                                 | CS_REPLY_DIR | CS_SRC_NAT | CS_DST_NAT)
  961|    260|            || (flow->ct_state & CS_TRACKED
  ------------------
  |  Branch (961:17): [True: 258, False: 2]
  ------------------
  962|    258|                && mask->masks.ct_state & CS_INVALID
  ------------------
  |  Branch (962:20): [True: 258, False: 0]
  ------------------
  963|    258|                && !(flow->ct_state & CS_INVALID));
  ------------------
  |  Branch (963:20): [True: 257, False: 1]
  ------------------
  964|    454|    }
  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|    455|}
meta-flow.c:is_tcp:
 1077|  1.54k|{
 1078|       |    return is_ip_proto(flow, IPPROTO_TCP, wc);
 1079|  1.54k|}
meta-flow.c:is_ip_proto:
 1065|  3.16k|{
 1066|  3.16k|    if (is_ip_any(flow)) {
  ------------------
  |  Branch (1066:9): [True: 3.06k, False: 100]
  ------------------
 1067|  3.06k|        if (wc) {
  ------------------
  |  Branch (1067:13): [True: 0, False: 3.06k]
  ------------------
 1068|      0|            WC_MASK_FIELD(wc, nw_proto);
  ------------------
  |  |  201|      0|    memset(&(WC)->masks.FIELD, 0xff, sizeof (WC)->masks.FIELD)
  ------------------
 1069|      0|        }
 1070|  3.06k|        return flow->nw_proto == ip_proto;
 1071|  3.06k|    }
 1072|    100|    return false;
 1073|  3.16k|}
meta-flow.c:is_udp:
 1083|  1.14k|{
 1084|       |    return is_ip_proto(flow, IPPROTO_UDP, wc);
 1085|  1.14k|}
meta-flow.c:is_sctp:
 1089|    470|{
 1090|       |    return is_ip_proto(flow, IPPROTO_SCTP, wc);
 1091|    470|}
meta-flow.c:is_icmpv4:
 1095|    454|{
 1096|    454|    if (get_dl_type(flow) == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (1096:9): [True: 442, False: 12]
  ------------------
 1097|    442|        if (wc) {
  ------------------
  |  Branch (1097:13): [True: 0, False: 442]
  ------------------
 1098|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1099|      0|        }
 1100|    442|        return flow->nw_proto == IPPROTO_ICMP;
 1101|    442|    }
 1102|     12|    return false;
 1103|    454|}
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.97k, False: 55]
  ------------------
 1109|  1.97k|        if (wc) {
  ------------------
  |  Branch (1109:13): [True: 0, False: 1.97k]
  ------------------
 1110|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1111|      0|        }
 1112|  1.97k|        return flow->nw_proto == IPPROTO_ICMPV6;
 1113|  1.97k|    }
 1114|     55|    return false;
 1115|  2.02k|}
meta-flow.c:is_nd:
 1119|  1.34k|{
 1120|  1.34k|    if (is_icmpv6(flow, wc)) {
  ------------------
  |  Branch (1120:9): [True: 1.30k, False: 42]
  ------------------
 1121|  1.30k|        if (wc) {
  ------------------
  |  Branch (1121:13): [True: 0, False: 1.30k]
  ------------------
 1122|      0|            memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
 1123|      0|        }
 1124|  1.30k|        if (flow->tp_dst != htons(0)) {
  ------------------
  |  Branch (1124:13): [True: 14, False: 1.29k]
  ------------------
 1125|     14|            return false;
 1126|     14|        }
 1127|       |
 1128|  1.29k|        if (wc) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 1.29k]
  ------------------
 1129|      0|            memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
 1130|      0|        }
 1131|  1.29k|        return (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
  ------------------
  |  Branch (1131:17): [True: 584, False: 706]
  ------------------
 1132|    706|                flow->tp_src == htons(ND_NEIGHBOR_ADVERT));
  ------------------
  |  Branch (1132:17): [True: 655, False: 51]
  ------------------
 1133|  1.30k|    }
 1134|     42|    return false;
 1135|  1.34k|}
meta-flow.c:ofp_to_u16:
  196|  1.07k|{
  197|  1.07k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  1.07k|}
meta-flow.c:u16_to_ofp:
  214|    228|{
  215|    228|    return OFP_PORT_C(port);
  ------------------
  |  |  157|    228|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|    228|}
meta-flow.c:is_ip_any:
 1059|  4.25k|{
 1060|  4.25k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  4.25k|}
nx-match.c:get_dl_type:
 1036|  10.9k|{
 1037|  10.9k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 9.57k, False: 1.33k]
  ------------------
 1038|  9.57k|        return flow->dl_type;
 1039|  9.57k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 226, False: 1.11k]
  ------------------
 1040|    226|        return pt_ns_type_be(flow->packet_type);
 1041|  1.11k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  1.11k|    }
 1044|  10.9k|}
nx-match.c:ofp_to_u16:
  196|     12|{
  197|     12|    return (OVS_FORCE uint16_t) ofp_port;
  198|     12|}
nx-match.c:is_ip_any:
 1059|  4.90k|{
 1060|  4.90k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  4.90k|}
nx-match.c:is_icmpv4:
 1095|    188|{
 1096|    188|    if (get_dl_type(flow) == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (1096:9): [True: 31, False: 157]
  ------------------
 1097|     31|        if (wc) {
  ------------------
  |  Branch (1097:13): [True: 0, False: 31]
  ------------------
 1098|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1099|      0|        }
 1100|     31|        return flow->nw_proto == IPPROTO_ICMP;
 1101|     31|    }
 1102|    157|    return false;
 1103|    188|}
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|    138|{
 1120|    138|    if (is_icmpv6(flow, wc)) {
  ------------------
  |  Branch (1120:9): [True: 138, False: 0]
  ------------------
 1121|    138|        if (wc) {
  ------------------
  |  Branch (1121:13): [True: 0, False: 138]
  ------------------
 1122|      0|            memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
 1123|      0|        }
 1124|    138|        if (flow->tp_dst != htons(0)) {
  ------------------
  |  Branch (1124:13): [True: 20, False: 118]
  ------------------
 1125|     20|            return false;
 1126|     20|        }
 1127|       |
 1128|    118|        if (wc) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 118]
  ------------------
 1129|      0|            memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
 1130|      0|        }
 1131|    118|        return (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
  ------------------
  |  Branch (1131:17): [True: 25, False: 93]
  ------------------
 1132|     93|                flow->tp_src == htons(ND_NEIGHBOR_ADVERT));
  ------------------
  |  Branch (1132:17): [True: 28, False: 65]
  ------------------
 1133|    138|    }
 1134|      0|    return false;
 1135|    138|}
ofp-actions.c:ofp_to_u16:
  196|   385k|{
  197|   385k|    return (OVS_FORCE uint16_t) ofp_port;
  198|   385k|}
ofp-actions.c:get_dl_type:
 1036|  37.7k|{
 1037|  37.7k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 22.8k, False: 14.9k]
  ------------------
 1038|  22.8k|        return flow->dl_type;
 1039|  22.8k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 11.3k, False: 3.54k]
  ------------------
 1040|  11.3k|        return pt_ns_type_be(flow->packet_type);
 1041|  11.3k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  3.54k|    }
 1044|  37.7k|}
ofp-actions.c:is_ip_any:
 1059|  12.3k|{
 1060|  12.3k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  12.3k|}
ofp-actions.c:is_ct_valid:
  954|    396|{
  955|       |    /* Matches are checked with 'mask' and without 'wc'. */
  956|    396|    if (mask && !wc) {
  ------------------
  |  Branch (956:9): [True: 396, False: 0]
  |  Branch (956:17): [True: 396, False: 0]
  ------------------
  957|       |        /* Must match at least one of the bits that implies a valid
  958|       |         * conntrack entry, or an explicit not-invalid. */
  959|    396|        return flow->ct_state & (CS_NEW | CS_ESTABLISHED | CS_RELATED
  ------------------
  |  Branch (959:16): [True: 199, False: 197]
  ------------------
  960|    396|                                 | CS_REPLY_DIR | CS_SRC_NAT | CS_DST_NAT)
  961|    197|            || (flow->ct_state & CS_TRACKED
  ------------------
  |  Branch (961:17): [True: 196, False: 1]
  ------------------
  962|    196|                && mask->masks.ct_state & CS_INVALID
  ------------------
  |  Branch (962:20): [True: 195, False: 1]
  ------------------
  963|    195|                && !(flow->ct_state & CS_INVALID));
  ------------------
  |  Branch (963:20): [True: 194, False: 1]
  ------------------
  964|    396|    }
  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|    396|}

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

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|   533k|{
  119|   533k|    return mhash_finish(hash ^ final);
  120|   533k|}
hash.c:mhash_finish:
   84|   533k|{
   85|   533k|    hash ^= hash >> 16;
   86|   533k|    hash *= 0x85ebca6b;
   87|   533k|    hash ^= hash >> 13;
   88|   533k|    hash *= 0xc2b2ae35;
   89|   533k|    hash ^= hash >> 16;
   90|   533k|    return hash;
   91|   533k|}
hash.c:hash_add:
  108|  1.75M|{
  109|  1.75M|    return mhash_add(hash, data);
  110|  1.75M|}
hash.c:mhash_add:
   77|  1.75M|{
   78|  1.75M|    hash = mhash_add__(hash, data);
   79|  1.75M|    hash = hash_rot(hash, 13);
   80|  1.75M|    return hash * 5 + 0xe6546b64;
   81|  1.75M|}
hash.c:mhash_add__:
   64|  1.75M|{
   65|       |    /* zero-valued 'data' will not change the 'hash' value */
   66|  1.75M|    if (!data) {
  ------------------
  |  Branch (66:9): [True: 0, False: 1.75M]
  ------------------
   67|      0|        return hash;
   68|      0|    }
   69|       |
   70|  1.75M|    data *= 0xcc9e2d51;
   71|  1.75M|    data = hash_rot(data, 15);
   72|  1.75M|    data *= 0x1b873593;
   73|  1.75M|    return hash ^ data;
   74|  1.75M|}
hash.c:hash_rot:
   31|  3.51M|{
   32|  3.51M|    return (x << k) | (x >> (32 - k));
   33|  3.51M|}
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|   362k|{
  154|   362k|    return hash_finish(hash_add(hash_add(x, 0), y), 8);
  155|   362k|}
ofp-actions.c:hash_finish:
  118|   362k|{
  119|   362k|    return mhash_finish(hash ^ final);
  120|   362k|}
ofp-actions.c:mhash_finish:
   84|   362k|{
   85|   362k|    hash ^= hash >> 16;
   86|   362k|    hash *= 0x85ebca6b;
   87|   362k|    hash ^= hash >> 13;
   88|   362k|    hash *= 0xc2b2ae35;
   89|   362k|    hash ^= hash >> 16;
   90|   362k|    return hash;
   91|   362k|}
ofp-actions.c:hash_add:
  108|   725k|{
  109|   725k|    return mhash_add(hash, data);
  110|   725k|}
ofp-actions.c:mhash_add:
   77|   725k|{
   78|   725k|    hash = mhash_add__(hash, data);
   79|   725k|    hash = hash_rot(hash, 13);
   80|   725k|    return hash * 5 + 0xe6546b64;
   81|   725k|}
ofp-actions.c:mhash_add__:
   64|   725k|{
   65|       |    /* zero-valued 'data' will not change the 'hash' value */
   66|   725k|    if (!data) {
  ------------------
  |  Branch (66:9): [True: 362k, False: 362k]
  ------------------
   67|   362k|        return hash;
   68|   362k|    }
   69|       |
   70|   362k|    data *= 0xcc9e2d51;
   71|   362k|    data = hash_rot(data, 15);
   72|   362k|    data *= 0x1b873593;
   73|   362k|    return hash ^ data;
   74|   725k|}
ofp-actions.c:hash_rot:
   31|  1.08M|{
   32|  1.08M|    return (x << k) | (x >> (32 - k));
   33|  1.08M|}
shash.c:hash_string:
  403|   200k|{
  404|   200k|    return hash_bytes(s, strlen(s), basis);
  405|   200k|}

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|  6.32k|{
 1079|  6.32k|    const char *end = in + in_len;
 1080|  6.32k|    bool ok = false;
 1081|  6.32k|    struct ds out;
 1082|       |
 1083|  6.32k|    ds_init(&out);
 1084|  6.32k|    ds_reserve(&out, in_len);
 1085|  15.9M|    while (in < end) {
  ------------------
  |  Branch (1085:12): [True: 15.9M, False: 256]
  ------------------
 1086|  15.9M|        if (*in == '"') {
  ------------------
  |  Branch (1086:13): [True: 542, False: 15.9M]
  ------------------
 1087|    542|            ds_clear(&out);
 1088|    542|            ds_put_cstr(&out, "quoted string may not include unescaped \"");
 1089|    542|            goto exit;
 1090|    542|        }
 1091|  15.9M|        if (*in != '\\') {
  ------------------
  |  Branch (1091:13): [True: 15.8M, False: 95.1k]
  ------------------
 1092|  15.8M|            ds_put_char(&out, *in++);
 1093|  15.8M|            continue;
 1094|  15.8M|        }
 1095|       |
 1096|  95.1k|        in++;
 1097|  95.1k|        if (in >= end) {
  ------------------
  |  Branch (1097:13): [True: 249, False: 94.9k]
  ------------------
 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|    249|            ds_clear(&out);
 1103|    249|            ds_put_cstr(&out, "quoted string may not end with backslash");
 1104|    249|            goto exit;
 1105|    249|        }
 1106|  94.9k|        switch (*in++) {
 1107|  13.8k|        case '"': case '\\': case '/':
  ------------------
  |  Branch (1107:9): [True: 4.45k, False: 90.4k]
  |  Branch (1107:19): [True: 5.80k, False: 89.1k]
  |  Branch (1107:30): [True: 3.57k, False: 91.3k]
  ------------------
 1108|  13.8k|            ds_put_char(&out, in[-1]);
 1109|  13.8k|            break;
 1110|       |
 1111|  17.1k|        case 'b':
  ------------------
  |  Branch (1111:9): [True: 17.1k, False: 77.7k]
  ------------------
 1112|  17.1k|            ds_put_char(&out, '\b');
 1113|  17.1k|            break;
 1114|       |
 1115|  13.4k|        case 'f':
  ------------------
  |  Branch (1115:9): [True: 13.4k, False: 81.4k]
  ------------------
 1116|  13.4k|            ds_put_char(&out, '\f');
 1117|  13.4k|            break;
 1118|       |
 1119|  3.11k|        case 'n':
  ------------------
  |  Branch (1119:9): [True: 3.11k, False: 91.8k]
  ------------------
 1120|  3.11k|            ds_put_char(&out, '\n');
 1121|  3.11k|            break;
 1122|       |
 1123|  1.25k|        case 'r':
  ------------------
  |  Branch (1123:9): [True: 1.25k, False: 93.6k]
  ------------------
 1124|  1.25k|            ds_put_char(&out, '\r');
 1125|  1.25k|            break;
 1126|       |
 1127|  1.62k|        case 't':
  ------------------
  |  Branch (1127:9): [True: 1.62k, False: 93.2k]
  ------------------
 1128|  1.62k|            ds_put_char(&out, '\t');
 1129|  1.62k|            break;
 1130|       |
 1131|  42.0k|        case 'u':
  ------------------
  |  Branch (1131:9): [True: 42.0k, False: 52.8k]
  ------------------
 1132|  42.0k|            in = json_lex_unicode(in, end, &out);
 1133|  42.0k|            if (!in) {
  ------------------
  |  Branch (1133:17): [True: 2.82k, False: 39.2k]
  ------------------
 1134|  2.82k|                goto exit;
 1135|  2.82k|            }
 1136|  39.2k|            break;
 1137|       |
 1138|  39.2k|        default:
  ------------------
  |  Branch (1138:9): [True: 2.45k, False: 92.4k]
  ------------------
 1139|  2.45k|            ds_clear(&out);
 1140|  2.45k|            ds_put_format(&out, "bad escape \\%c", in[-1]);
 1141|  2.45k|            goto exit;
 1142|  94.9k|        }
 1143|  94.9k|    }
 1144|    256|    ok = true;
 1145|       |
 1146|  6.32k|exit:
 1147|  6.32k|    *outp = ds_cstr(&out);
 1148|  6.32k|    return ok;
 1149|    256|}
json.c:json_lex_unicode:
 1036|  42.0k|{
 1037|  42.0k|    const char *error;
 1038|  42.0k|    int c0, c1;
 1039|       |
 1040|  42.0k|    error = json_lex_4hex(cp, end, &c0);
 1041|  42.0k|    if (error) {
  ------------------
  |  Branch (1041:9): [True: 1.13k, False: 40.9k]
  ------------------
 1042|  1.13k|        ds_clear(out);
 1043|  1.13k|        ds_put_cstr(out, error);
 1044|  1.13k|        return NULL;
 1045|  1.13k|    }
 1046|  40.9k|    cp += 4;
 1047|  40.9k|    if (!uc_is_leading_surrogate(c0)) {
  ------------------
  |  Branch (1047:9): [True: 21.5k, False: 19.3k]
  ------------------
 1048|  21.5k|        ds_put_utf8(out, c0);
 1049|  21.5k|        return cp;
 1050|  21.5k|    }
 1051|       |
 1052|  19.3k|    if (cp + 2 > end || *cp++ != '\\' || *cp++ != 'u') {
  ------------------
  |  Branch (1052:9): [True: 206, False: 19.1k]
  |  Branch (1052:25): [True: 259, False: 18.9k]
  |  Branch (1052:42): [True: 210, False: 18.7k]
  ------------------
 1053|    675|        ds_clear(out);
 1054|    675|        ds_put_cstr(out, "malformed escaped surrogate pair");
 1055|    675|        return NULL;
 1056|    675|    }
 1057|       |
 1058|  18.7k|    error = json_lex_4hex(cp, end, &c1);
 1059|  18.7k|    if (error) {
  ------------------
  |  Branch (1059:9): [True: 802, False: 17.9k]
  ------------------
 1060|    802|        ds_clear(out);
 1061|    802|        ds_put_cstr(out, error);
 1062|    802|        return NULL;
 1063|    802|    }
 1064|  17.9k|    cp += 4;
 1065|  17.9k|    if (!uc_is_trailing_surrogate(c1)) {
  ------------------
  |  Branch (1065:9): [True: 214, False: 17.7k]
  ------------------
 1066|    214|        ds_clear(out);
 1067|    214|        ds_put_cstr(out, "second half of escaped surrogate pair is not "
 1068|    214|                    "trailing surrogate");
 1069|    214|        return NULL;
 1070|    214|    }
 1071|       |
 1072|  17.7k|    ds_put_utf8(out, utf16_decode_surrogate_pair(c0, c1));
 1073|  17.7k|    return cp;
 1074|  17.9k|}
json.c:json_lex_4hex:
 1015|  60.7k|{
 1016|  60.7k|    unsigned int value;
 1017|  60.7k|    bool ok;
 1018|       |
 1019|  60.7k|    if (cp + 4 > end) {
  ------------------
  |  Branch (1019:9): [True: 544, False: 60.2k]
  ------------------
 1020|    544|        return "quoted string ends within \\u escape";
 1021|    544|    }
 1022|       |
 1023|  60.2k|    value = hexits_value(cp, 4, &ok);
 1024|  60.2k|    if (!ok) {
  ------------------
  |  Branch (1024:9): [True: 903, False: 59.3k]
  ------------------
 1025|    903|        return "malformed \\u escape";
 1026|    903|    }
 1027|  59.3k|    if (!value) {
  ------------------
  |  Branch (1027:9): [True: 486, False: 58.8k]
  ------------------
 1028|    486|        return "null bytes not supported in quoted strings";
 1029|    486|    }
 1030|  58.8k|    *valuep = value;
 1031|       |    return NULL;
 1032|  59.3k|}

learn_check:
   42|  31.3k|{
   43|  31.3k|    const struct ofpact_learn_spec *spec;
   44|  31.3k|    struct match dst_match;
   45|       |
   46|  31.3k|    match_init_catchall(&dst_match);
   47|  46.3k|    OFPACT_LEARN_SPEC_FOR_EACH (spec, learn) {
  ------------------
  |  |  900|  31.3k|    for ((SPEC) = (LEARN)->specs;               \
  |  |  901|  77.6k|         (SPEC) < ofpact_learn_spec_end(LEARN); \
  |  |  ------------------
  |  |  |  Branch (901:10): [True: 46.3k, False: 31.2k]
  |  |  ------------------
  |  |  902|  46.2k|         (SPEC) = ofpact_learn_spec_next(SPEC))
  ------------------
   48|  46.3k|        enum ofperr error;
   49|       |
   50|       |        /* Check the source. */
   51|  46.3k|        if (spec->src_type == NX_LEARN_SRC_FIELD) {
  ------------------
  |  |  821|  46.3k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  |  Branch (51:13): [True: 2.70k, False: 43.6k]
  ------------------
   52|  2.70k|            error = mf_check_src(&spec->src, src_match);
   53|  2.70k|            if (error) {
  ------------------
  |  Branch (53:17): [True: 59, False: 2.64k]
  ------------------
   54|     59|                return error;
   55|     59|            }
   56|  2.70k|        }
   57|       |
   58|       |        /* Check the destination. */
   59|  46.2k|        switch (spec->dst_type) {
  ------------------
  |  Branch (59:17): [True: 46.2k, False: 0]
  ------------------
   60|  45.6k|        case NX_LEARN_DST_MATCH:
  ------------------
  |  |  825|  45.6k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  |  Branch (60:9): [True: 45.6k, False: 664]
  ------------------
   61|  45.6k|            error = mf_check_src(&spec->dst, &dst_match);
   62|  45.6k|            if (error) {
  ------------------
  |  Branch (62:17): [True: 23, False: 45.5k]
  ------------------
   63|     23|                return error;
   64|     23|            }
   65|  45.5k|            if (spec->src_type & NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  45.5k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (65:17): [True: 43.3k, False: 2.20k]
  ------------------
   66|  43.3k|                mf_write_subfield_value(&spec->dst,
   67|  43.3k|                                        ofpact_learn_spec_imm(spec),
   68|  43.3k|                                        &dst_match);
   69|  43.3k|            }
   70|  45.5k|            break;
   71|       |
   72|    469|        case NX_LEARN_DST_LOAD:
  ------------------
  |  |  826|    469|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  |  Branch (72:9): [True: 469, False: 45.8k]
  ------------------
   73|    469|            error = mf_check_dst(&spec->dst, &dst_match);
   74|    469|            if (error) {
  ------------------
  |  Branch (74:17): [True: 1, False: 468]
  ------------------
   75|      1|                return error;
   76|      1|            }
   77|    468|            break;
   78|       |
   79|    468|        case NX_LEARN_DST_OUTPUT:
  ------------------
  |  |  827|    195|#define NX_LEARN_DST_OUTPUT    (2 << 11) /* Add OFPAT_OUTPUT action. */
  ------------------
  |  Branch (79:9): [True: 195, False: 46.0k]
  ------------------
   80|       |            /* Nothing to do. */
   81|    195|            break;
   82|  46.2k|        }
   83|  46.2k|    }
   84|  31.2k|    return 0;
   85|  31.3k|}
learn_parse:
  480|  33.7k|{
  481|  33.7k|    char *orig = xstrdup(arg);
  482|  33.7k|    char *error = learn_parse__(orig, arg, port_map, table_map, ofpacts);
  483|  33.7k|    free(orig);
  484|  33.7k|    return error;
  485|  33.7k|}
learn.c:learn_parse__:
  390|  33.7k|{
  391|  33.7k|    struct ofpact_learn *learn;
  392|  33.7k|    char *name, *value;
  393|       |
  394|  33.7k|    learn = ofpact_put_LEARN(ofpacts);
  395|  33.7k|    learn->idle_timeout = OFP_FLOW_PERMANENT;
  ------------------
  |  |  135|  33.7k|#define OFP_FLOW_PERMANENT 0
  ------------------
  396|  33.7k|    learn->hard_timeout = OFP_FLOW_PERMANENT;
  ------------------
  |  |  135|  33.7k|#define OFP_FLOW_PERMANENT 0
  ------------------
  397|  33.7k|    learn->priority = OFP_DEFAULT_PRIORITY;
  ------------------
  |  |  138|  33.7k|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
  398|  33.7k|    learn->table_id = 1;
  399|       |
  400|  91.5k|    while (ofputil_parse_key_value(&arg, &name, &value)) {
  ------------------
  |  Branch (400:12): [True: 58.6k, False: 32.8k]
  ------------------
  401|  58.6k|        if (!strcmp(name, "table")) {
  ------------------
  |  Branch (401:13): [True: 2.69k, False: 55.9k]
  ------------------
  402|  2.69k|            if (!ofputil_table_from_string(value, table_map,
  ------------------
  |  Branch (402:17): [True: 1, False: 2.69k]
  ------------------
  403|  2.69k|                                           &learn->table_id)) {
  404|      1|                return xasprintf("unknown table \"%s\"", value);
  405|  2.69k|            } else if (learn->table_id == 255) {
  ------------------
  |  Branch (405:24): [True: 1, False: 2.69k]
  ------------------
  406|      1|                return xasprintf("%s: table id 255 not valid for `learn' "
  407|      1|                                 "action", orig);
  408|      1|            }
  409|  55.9k|        } else if (!strcmp(name, "priority")) {
  ------------------
  |  Branch (409:20): [True: 1.10k, False: 54.8k]
  ------------------
  410|  1.10k|            learn->priority = atoi(value);
  411|  54.8k|        } else if (!strcmp(name, "idle_timeout")) {
  ------------------
  |  Branch (411:20): [True: 210, False: 54.6k]
  ------------------
  412|    210|            learn->idle_timeout = atoi(value);
  413|  54.6k|        } else if (!strcmp(name, "hard_timeout")) {
  ------------------
  |  Branch (413:20): [True: 490, False: 54.1k]
  ------------------
  414|    490|            learn->hard_timeout = atoi(value);
  415|  54.1k|        } else if (!strcmp(name, "fin_idle_timeout")) {
  ------------------
  |  Branch (415:20): [True: 194, False: 53.9k]
  ------------------
  416|    194|            learn->fin_idle_timeout = atoi(value);
  417|  53.9k|        } else if (!strcmp(name, "fin_hard_timeout")) {
  ------------------
  |  Branch (417:20): [True: 269, False: 53.7k]
  ------------------
  418|    269|            learn->fin_hard_timeout = atoi(value);
  419|  53.7k|        } else if (!strcmp(name, "cookie")) {
  ------------------
  |  Branch (419:20): [True: 225, False: 53.5k]
  ------------------
  420|    225|            learn->cookie = htonll(strtoull(value, NULL, 0));
  421|  53.5k|        } else if (!strcmp(name, "send_flow_rem")) {
  ------------------
  |  Branch (421:20): [True: 1.09k, False: 52.4k]
  ------------------
  422|  1.09k|            learn->flags |= NX_LEARN_F_SEND_FLOW_REM;
  423|  52.4k|        } else if (!strcmp(name, "delete_learned")) {
  ------------------
  |  Branch (423:20): [True: 768, False: 51.6k]
  ------------------
  424|    768|            learn->flags |= NX_LEARN_F_DELETE_LEARNED;
  425|  51.6k|        } else if (!strcmp(name, "limit")) {
  ------------------
  |  Branch (425:20): [True: 814, False: 50.8k]
  ------------------
  426|    814|            learn->limit = atoi(value);
  427|  50.8k|        } else if (!strcmp(name, "result_dst")) {
  ------------------
  |  Branch (427:20): [True: 277, False: 50.5k]
  ------------------
  428|    277|            char *error;
  429|    277|            learn->flags |= NX_LEARN_F_WRITE_RESULT;
  430|    277|            error = mf_parse_subfield(&learn->result_dst, value);
  431|    277|            if (error) {
  ------------------
  |  Branch (431:17): [True: 1, False: 276]
  ------------------
  432|      1|                return error;
  433|      1|            }
  434|    276|            if (!learn->result_dst.field->writable) {
  ------------------
  |  Branch (434:17): [True: 1, False: 275]
  ------------------
  435|      1|                return xasprintf("%s is read-only", value);
  436|      1|            }
  437|    275|            if (learn->result_dst.n_bits != 1) {
  ------------------
  |  Branch (437:17): [True: 2, False: 273]
  ------------------
  438|      2|                return xasprintf("result_dst in 'learn' action must be a "
  439|      2|                                 "single bit");
  440|      2|            }
  441|  50.5k|        } else {
  442|  50.5k|            struct ofpact_learn_spec *spec;
  443|  50.5k|            char *error;
  444|       |
  445|  50.5k|            spec = ofpbuf_put_zeros(ofpacts, sizeof *spec);
  446|  50.5k|            error = learn_parse_spec(orig, name, value, port_map,
  447|  50.5k|                                     spec, ofpacts);
  448|  50.5k|            if (error) {
  ------------------
  |  Branch (448:17): [True: 877, False: 49.6k]
  ------------------
  449|    877|                return error;
  450|    877|            }
  451|  49.6k|            learn = ofpacts->header;
  452|  49.6k|        }
  453|  58.6k|    }
  454|       |
  455|  32.8k|    if (ofpbuf_oversized(ofpacts)) {
  ------------------
  |  Branch (455:9): [True: 1, False: 32.8k]
  ------------------
  456|      1|        return xasprintf("input too big");
  457|      1|    }
  458|       |
  459|  32.8k|    ofpact_finish_LEARN(ofpacts, &learn);
  460|       |
  461|       |    return NULL;
  462|  32.8k|}
learn.c:learn_parse_spec:
  245|  50.5k|{
  246|       |    /* Parse destination and check prerequisites. */
  247|  50.5k|    struct mf_subfield dst;
  248|       |
  249|  50.5k|    char *error = mf_parse_subfield(&dst, name);
  250|  50.5k|    bool parse_error = error != NULL;
  251|  50.5k|    free(error);
  252|       |
  253|  50.5k|    if (!parse_error) {
  ------------------
  |  Branch (253:9): [True: 48.5k, False: 2.00k]
  ------------------
  254|  48.5k|        if (!mf_nxm_header(dst.field->id)) {
  ------------------
  |  Branch (254:13): [True: 3, False: 48.5k]
  ------------------
  255|      3|            return xasprintf("%s: experimenter OXM field '%s' not supported",
  256|      3|                             orig, name);
  257|      3|        }
  258|  48.5k|        spec->dst = dst;
  259|  48.5k|        spec->n_bits = dst.n_bits;
  260|  48.5k|        spec->dst_type = NX_LEARN_DST_MATCH;
  ------------------
  |  |  825|  48.5k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  261|       |
  262|       |        /* Parse source and check prerequisites. */
  263|  48.5k|        if (value[0] != '\0') {
  ------------------
  |  Branch (263:13): [True: 45.9k, False: 2.55k]
  ------------------
  264|  45.9k|            struct mf_subfield src;
  265|  45.9k|            error = mf_parse_subfield(&src, value);
  266|  45.9k|            if (error) {
  ------------------
  |  Branch (266:17): [True: 45.7k, False: 220]
  ------------------
  267|  45.7k|                union mf_value imm;
  268|  45.7k|                char *imm_error = NULL;
  269|       |
  270|       |                /* Try an immediate value. */
  271|  45.7k|                if (dst.ofs == 0 && dst.n_bits == dst.field->n_bits) {
  ------------------
  |  Branch (271:21): [True: 38.4k, False: 7.29k]
  |  Branch (271:37): [True: 29.7k, False: 8.73k]
  ------------------
  272|       |                    /* Full field value. */
  273|  29.7k|                    imm_error = mf_parse_value(dst.field, value, port_map,
  274|  29.7k|                                               &imm);
  275|  29.7k|                } else {
  276|  16.0k|                    char *tail;
  277|       |                    /* Partial field value. */
  278|  16.0k|                    if (parse_int_string(value, imm.b,
  ------------------
  |  Branch (278:25): [True: 3, False: 16.0k]
  ------------------
  279|  16.0k|                                          dst.field->n_bytes, &tail)
  280|  16.0k|                        || *tail != 0) {
  ------------------
  |  Branch (280:28): [True: 6, False: 16.0k]
  ------------------
  281|      9|                        imm_error = xasprintf("%s: cannot parse integer value", orig);
  282|      9|                    }
  283|       |
  284|  16.0k|                    if (!imm_error &&
  ------------------
  |  Branch (284:25): [True: 16.0k, False: 9]
  ------------------
  285|  16.0k|                        !bitwise_is_all_zeros(imm.b, dst.field->n_bytes,
  ------------------
  |  Branch (285:25): [True: 2, False: 16.0k]
  ------------------
  286|  16.0k|                                              dst.n_bits,
  287|  16.0k|                                              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|  16.0k|                }
  297|  45.7k|                if (imm_error) {
  ------------------
  |  Branch (297:21): [True: 27, False: 45.7k]
  ------------------
  298|     27|                    char *err = xasprintf("%s: %s value %s cannot be parsed as a subfield (%s) or an immediate value (%s)",
  299|     27|                                          orig, name, value, error, imm_error);
  300|     27|                    free(error);
  301|     27|                    free(imm_error);
  302|     27|                    return err;
  303|     27|                }
  304|       |
  305|  45.7k|                spec->src_type = NX_LEARN_SRC_IMMEDIATE;
  ------------------
  |  |  822|  45.7k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  306|       |
  307|       |                /* Push value last, as this may reallocate 'spec'! */
  308|  45.7k|                unsigned int imm_bytes = DIV_ROUND_UP(dst.n_bits, 8);
  ------------------
  |  |  300|  45.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  309|  45.7k|                uint8_t *src_imm = ofpbuf_put_zeros(ofpacts,
  310|  45.7k|                                                    OFPACT_ALIGN(imm_bytes));
  ------------------
  |  |  205|  45.7k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  45.7k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  45.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  311|       |
  312|  45.7k|                memcpy(src_imm, &imm.b[dst.field->n_bytes - imm_bytes],
  313|  45.7k|                       imm_bytes);
  314|       |
  315|  45.7k|                free(error);
  316|  45.7k|                return NULL;
  317|  45.7k|            }
  318|    220|            spec->src = src;
  319|    220|            if (spec->src.n_bits != spec->dst.n_bits) {
  ------------------
  |  Branch (319:17): [True: 1, False: 219]
  ------------------
  320|      1|                return xasprintf("%s: bit widths of %s (%u) and %s (%u) "
  321|      1|                                 "differ", orig, name, spec->src.n_bits, value,
  322|      1|                                 spec->dst.n_bits);
  323|      1|            }
  324|  2.55k|        } else {
  325|  2.55k|            spec->src = spec->dst;
  326|  2.55k|        }
  327|       |
  328|  2.77k|        spec->src_type = NX_LEARN_SRC_FIELD;
  ------------------
  |  |  821|  2.77k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  329|  2.77k|    } else if (!strcmp(name, "load")) {
  ------------------
  |  Branch (329:16): [True: 949, False: 1.05k]
  ------------------
  330|    949|        union mf_subvalue imm;
  331|    949|        char *tail;
  332|    949|        char *dst_value = strstr(value, "->");
  333|       |
  334|    949|        if (dst_value == value) {
  ------------------
  |  Branch (334:13): [True: 1, False: 948]
  ------------------
  335|      1|            return xasprintf("%s: missing source before `->' in `%s'", name,
  336|      1|                             value);
  337|      1|        }
  338|    948|        if (!dst_value) {
  ------------------
  |  Branch (338:13): [True: 2, False: 946]
  ------------------
  339|      2|            return xasprintf("%s: missing `->' in `%s'", name, value);
  340|      2|        }
  341|       |
  342|    946|        if (!parse_int_string(value, imm.u8, sizeof imm.u8, (char **) &tail)
  ------------------
  |  Branch (342:13): [True: 338, False: 608]
  ------------------
  343|    338|            && tail != value) {
  ------------------
  |  Branch (343:16): [True: 338, False: 0]
  ------------------
  344|    338|            if (tail != dst_value) {
  ------------------
  |  Branch (344:17): [True: 1, False: 337]
  ------------------
  345|      1|                return xasprintf("%s: garbage before `->' in `%s'",
  346|      1|                                 name, value);
  347|      1|            }
  348|       |
  349|    337|            error = learn_parse_load_immediate(&imm, dst_value + 2, value, spec,
  350|    337|                                               ofpacts);
  351|    337|            if (error) {
  ------------------
  |  Branch (351:17): [True: 6, False: 331]
  ------------------
  352|      6|                return error;
  353|      6|            }
  354|    608|        } else {
  355|    608|            struct ofpact_reg_move move;
  356|       |
  357|    608|            error = nxm_parse_reg_move(&move, value);
  358|    608|            if (error) {
  ------------------
  |  Branch (358:17): [True: 7, False: 601]
  ------------------
  359|      7|                return error;
  360|      7|            }
  361|       |
  362|    601|            spec->n_bits = move.src.n_bits;
  363|    601|            spec->src_type = NX_LEARN_SRC_FIELD;
  ------------------
  |  |  821|    601|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  364|    601|            spec->src = move.src;
  365|    601|            spec->dst_type = NX_LEARN_DST_LOAD;
  ------------------
  |  |  826|    601|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  366|    601|            spec->dst = move.dst;
  367|    601|        }
  368|  1.05k|    } else if (!strcmp(name, "output")) {
  ------------------
  |  Branch (368:16): [True: 231, False: 828]
  ------------------
  369|    231|        error = mf_parse_subfield(&spec->src, value);
  370|    231|        if (error) {
  ------------------
  |  Branch (370:13): [True: 1, False: 230]
  ------------------
  371|      1|            return error;
  372|      1|        }
  373|       |
  374|    230|        spec->n_bits = spec->src.n_bits;
  375|    230|        spec->src_type = NX_LEARN_SRC_FIELD;
  ------------------
  |  |  821|    230|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  376|    230|        spec->dst_type = NX_LEARN_DST_OUTPUT;
  ------------------
  |  |  827|    230|#define NX_LEARN_DST_OUTPUT    (2 << 11) /* Add OFPAT_OUTPUT action. */
  ------------------
  377|    828|    } else {
  378|    828|        return xasprintf("%s: unknown keyword %s", orig, name);
  379|    828|    }
  380|       |
  381|  3.93k|    return NULL;
  382|  50.5k|}
learn.c:learn_parse_load_immediate:
  206|    337|{
  207|    337|    struct mf_subfield dst;
  208|    337|    char *error;
  209|       |
  210|    337|    error = mf_parse_subfield(&dst, s);
  211|    337|    if (error) {
  ------------------
  |  Branch (211:9): [True: 4, False: 333]
  ------------------
  212|      4|        return error;
  213|      4|    }
  214|    333|    if (!mf_nxm_header(dst.field->id)) {
  ------------------
  |  Branch (214:9): [True: 1, False: 332]
  ------------------
  215|      1|        return xasprintf("%s: experimenter OXM field '%s' not supported",
  216|      1|                         full_s, s);
  217|      1|    }
  218|       |
  219|    332|    if (!bitwise_is_all_zeros(imm, sizeof *imm, dst.n_bits,
  ------------------
  |  Branch (219:9): [True: 1, False: 331]
  ------------------
  220|    332|                              (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|    331|    spec->n_bits = dst.n_bits;
  226|    331|    spec->src_type = NX_LEARN_SRC_IMMEDIATE;
  ------------------
  |  |  822|    331|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  227|    331|    spec->dst_type = NX_LEARN_DST_LOAD;
  ------------------
  |  |  826|    331|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  228|    331|    spec->dst = dst;
  229|       |
  230|       |    /* Push value last, as this may reallocate 'spec'! */
  231|    331|    unsigned int n_bytes = DIV_ROUND_UP(dst.n_bits, 8);
  ------------------
  |  |  300|    331|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  232|    331|    uint8_t *src_imm = ofpbuf_put_zeros(ofpacts, OFPACT_ALIGN(n_bytes));
  ------------------
  |  |  205|    331|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|    331|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|    331|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  233|    331|    memcpy(src_imm, &imm->u8[sizeof imm->u8 - n_bytes], n_bytes);
  234|       |
  235|       |    return NULL;
  236|    332|}

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

mf_from_name:
   85|   199k|{
   86|   199k|    nxm_init();
   87|   199k|    return shash_find_data(&mf_by_name, name);
   88|   199k|}
mf_from_name_len:
   94|   165k|{
   95|   165k|    nxm_init();
   96|       |
   97|   165k|    struct shash_node *node = shash_find_len(&mf_by_name, name, len);
   98|   165k|    return node ? node->data : NULL;
  ------------------
  |  Branch (98:12): [True: 117k, False: 48.2k]
  ------------------
   99|   165k|}
mf_get_mask:
  416|   101k|{
  417|   101k|    mf_get_value(mf, &wc->masks, mask);
  418|   101k|}
mf_is_mask_valid:
  424|   122k|{
  425|   122k|    switch (mf->maskable) {
  ------------------
  |  Branch (425:13): [True: 122k, False: 0]
  ------------------
  426|  16.9k|    case MFM_NONE:
  ------------------
  |  Branch (426:5): [True: 16.9k, False: 105k]
  ------------------
  427|  16.9k|        return (is_all_zeros(mask, mf->n_bytes) ||
  ------------------
  |  Branch (427:17): [True: 7.37k, False: 9.55k]
  ------------------
  428|  9.55k|                is_all_ones(mask, mf->n_bytes));
  ------------------
  |  Branch (428:17): [True: 9.55k, False: 4]
  ------------------
  429|       |
  430|   105k|    case MFM_FULLY:
  ------------------
  |  Branch (430:5): [True: 105k, False: 16.9k]
  ------------------
  431|   105k|        return true;
  432|   122k|    }
  433|       |
  434|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  435|   122k|}
mf_are_prereqs_ok:
  496|  30.0k|{
  497|       |    return mf_are_prereqs_ok__(mf, flow, NULL, wc);
  498|  30.0k|}
mf_are_match_prereqs_ok:
  504|  54.8k|{
  505|       |    return mf_are_prereqs_ok__(mf, &match->flow, &match->wc, NULL);
  506|  54.8k|}
mf_is_value_valid:
  520|  51.1k|{
  521|  51.1k|    switch (mf->id) {
  522|      0|    case MFF_DP_HASH:
  ------------------
  |  Branch (522:5): [True: 0, False: 51.1k]
  ------------------
  523|      0|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (523:5): [True: 0, False: 51.1k]
  ------------------
  524|      0|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (524:5): [True: 0, False: 51.1k]
  ------------------
  525|      0|    case MFF_CONJ_ID:
  ------------------
  |  Branch (525:5): [True: 0, False: 51.1k]
  ------------------
  526|     68|    case MFF_TUN_ID:
  ------------------
  |  Branch (526:5): [True: 68, False: 51.0k]
  ------------------
  527|    262|    case MFF_TUN_SRC:
  ------------------
  |  Branch (527:5): [True: 194, False: 50.9k]
  ------------------
  528|    456|    case MFF_TUN_DST:
  ------------------
  |  Branch (528:5): [True: 194, False: 50.9k]
  ------------------
  529|    652|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (529:5): [True: 196, False: 50.9k]
  ------------------
  530|    846|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (530:5): [True: 194, False: 50.9k]
  ------------------
  531|    846|    case MFF_TUN_TOS:
  ------------------
  |  Branch (531:5): [True: 0, False: 51.1k]
  ------------------
  532|    846|    case MFF_TUN_TTL:
  ------------------
  |  Branch (532:5): [True: 0, False: 51.1k]
  ------------------
  533|  1.19k|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (533:5): [True: 346, False: 50.7k]
  ------------------
  534|  1.38k|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (534:5): [True: 194, False: 50.9k]
  ------------------
  535|  1.38k|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (535:5): [True: 0, False: 51.1k]
  ------------------
  536|  1.38k|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (536:5): [True: 0, False: 51.1k]
  ------------------
  537|  1.38k|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (537:5): [True: 0, False: 51.1k]
  ------------------
  538|  1.38k|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (538:5): [True: 0, False: 51.1k]
  ------------------
  539|  1.38k|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (539:5): [True: 0, False: 51.1k]
  ------------------
  540|  1.38k|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (540:5): [True: 0, False: 51.1k]
  ------------------
  541|   576k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|  1.83k|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 201, False: 50.9k]
  |  |  |  Branch (2110:29): [True: 244, False: 50.8k]
  |  |  ------------------
  |  | 2111|  2.47k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 217, False: 50.9k]
  |  |  |  Branch (2111:29): [True: 428, False: 50.7k]
  |  |  ------------------
  |  | 2112|  2.92k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 220, False: 50.9k]
  |  |  |  Branch (2112:29): [True: 230, False: 50.9k]
  |  |  ------------------
  |  | 2113|  3.46k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 211, False: 50.9k]
  |  |  |  Branch (2113:29): [True: 332, False: 50.8k]
  |  |  ------------------
  |  | 2114|  3.73k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 194, False: 50.9k]
  |  |  |  Branch (2114:29): [True: 69, False: 51.0k]
  |  |  ------------------
  |  | 2115|  4.03k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 77, False: 51.0k]
  |  |  |  Branch (2115:30): [True: 229, False: 50.9k]
  |  |  ------------------
  |  | 2116|  4.74k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 425, False: 50.7k]
  |  |  |  Branch (2116:30): [True: 277, False: 50.8k]
  |  |  ------------------
  |  | 2117|  5.25k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 268, False: 50.8k]
  |  |  |  Branch (2117:30): [True: 248, False: 50.8k]
  |  |  ------------------
  |  | 2118|  5.71k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 221, False: 50.9k]
  |  |  |  Branch (2118:30): [True: 238, False: 50.9k]
  |  |  ------------------
  |  | 2119|  6.26k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 231, False: 50.9k]
  |  |  |  Branch (2119:30): [True: 317, False: 50.8k]
  |  |  ------------------
  |  | 2120|  6.71k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 241, False: 50.8k]
  |  |  |  Branch (2120:30): [True: 211, False: 50.9k]
  |  |  ------------------
  |  | 2121|  7.11k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 198, False: 50.9k]
  |  |  |  Branch (2121:30): [True: 204, False: 50.9k]
  |  |  ------------------
  |  | 2122|  7.56k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 213, False: 50.9k]
  |  |  |  Branch (2122:30): [True: 239, False: 50.8k]
  |  |  ------------------
  |  | 2123|  8.02k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 215, False: 50.9k]
  |  |  |  Branch (2123:30): [True: 241, False: 50.8k]
  |  |  ------------------
  |  | 2124|  8.46k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 220, False: 50.9k]
  |  |  |  Branch (2124:30): [True: 218, False: 50.9k]
  |  |  ------------------
  |  | 2125|  8.87k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 202, False: 50.9k]
  |  |  |  Branch (2125:30): [True: 211, False: 50.9k]
  |  |  ------------------
  |  | 2126|  9.29k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 194, False: 50.9k]
  |  |  |  Branch (2126:30): [True: 221, False: 50.9k]
  |  |  ------------------
  |  | 2127|  9.69k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 205, False: 50.9k]
  |  |  |  Branch (2127:30): [True: 195, False: 50.9k]
  |  |  ------------------
  |  | 2128|  10.1k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 214, False: 50.9k]
  |  |  |  Branch (2128:30): [True: 237, False: 50.9k]
  |  |  ------------------
  |  | 2129|  10.6k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 280, False: 50.8k]
  |  |  |  Branch (2129:30): [True: 196, False: 50.9k]
  |  |  ------------------
  |  | 2130|  11.2k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 203, False: 50.9k]
  |  |  |  Branch (2130:30): [True: 441, False: 50.6k]
  |  |  ------------------
  |  | 2131|  11.6k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 195, False: 50.9k]
  |  |  |  Branch (2131:30): [True: 195, False: 50.9k]
  |  |  ------------------
  |  | 2132|  12.2k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 194, False: 50.9k]
  |  |  |  Branch (2132:30): [True: 424, False: 50.7k]
  |  |  ------------------
  |  | 2133|  12.6k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 223, False: 50.9k]
  |  |  |  Branch (2133:30): [True: 196, False: 50.9k]
  |  |  ------------------
  |  | 2134|  13.1k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 246, False: 50.8k]
  |  |  |  Branch (2134:30): [True: 222, False: 50.9k]
  |  |  ------------------
  |  | 2135|  13.5k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 195, False: 50.9k]
  |  |  |  Branch (2135:30): [True: 195, False: 50.9k]
  |  |  ------------------
  |  | 2136|  13.9k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 196, False: 50.9k]
  |  |  |  Branch (2136:30): [True: 194, False: 50.9k]
  |  |  ------------------
  |  | 2137|  14.3k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 218, False: 50.9k]
  |  |  |  Branch (2137:30): [True: 242, False: 50.8k]
  |  |  ------------------
  |  | 2138|  14.9k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 292, False: 50.8k]
  |  |  |  Branch (2138:30): [True: 240, False: 50.8k]
  |  |  ------------------
  |  | 2139|  15.3k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 222, False: 50.9k]
  |  |  |  Branch (2139:30): [True: 198, False: 50.9k]
  |  |  ------------------
  |  | 2140|  15.7k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 194, False: 50.9k]
  |  |  |  Branch (2140:30): [True: 203, False: 50.9k]
  |  |  ------------------
  |  | 2141|  16.2k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 199, False: 50.9k]
  |  |  ------------------
  ------------------
  542|   576k|    case MFF_METADATA:
  ------------------
  |  Branch (542:5): [True: 194, False: 50.9k]
  ------------------
  543|  16.7k|    case MFF_IN_PORT:
  ------------------
  |  Branch (543:5): [True: 222, False: 50.9k]
  ------------------
  544|  16.7k|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (544:5): [True: 0, False: 51.1k]
  ------------------
  545|  16.7k|    case MFF_PKT_MARK:
  ------------------
  |  Branch (545:5): [True: 66, False: 51.0k]
  ------------------
  546|  16.7k|    case MFF_CT_ZONE:
  ------------------
  |  Branch (546:5): [True: 0, False: 51.1k]
  ------------------
  547|  16.9k|    case MFF_CT_MARK:
  ------------------
  |  Branch (547:5): [True: 226, False: 50.9k]
  ------------------
  548|  17.2k|    case MFF_CT_LABEL:
  ------------------
  |  Branch (548:5): [True: 207, False: 50.9k]
  ------------------
  549|  17.2k|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (549:5): [True: 0, False: 51.1k]
  ------------------
  550|  17.2k|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (550:5): [True: 0, False: 51.1k]
  ------------------
  551|  17.2k|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (551:5): [True: 0, False: 51.1k]
  ------------------
  552|  17.2k|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (552:5): [True: 0, False: 51.1k]
  ------------------
  553|  17.2k|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (553:5): [True: 0, False: 51.1k]
  ------------------
  554|  17.2k|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (554:5): [True: 0, False: 51.1k]
  ------------------
  555|  17.2k|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (555:5): [True: 0, False: 51.1k]
  ------------------
  556|   701k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  18.4k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 369, False: 50.7k]
  |  |  |  Branch (2065:20): [True: 343, False: 50.7k]
  |  |  |  Branch (2065:35): [True: 345, False: 50.7k]
  |  |  |  Branch (2065:50): [True: 222, False: 50.9k]
  |  |  ------------------
  |  | 2066|  19.6k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 312, False: 50.8k]
  |  |  |  Branch (2066:20): [True: 197, False: 50.9k]
  |  |  |  Branch (2066:35): [True: 335, False: 50.8k]
  |  |  |  Branch (2066:50): [True: 331, False: 50.8k]
  |  |  ------------------
  |  | 2067|  20.6k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 205, False: 50.9k]
  |  |  |  Branch (2067:20): [True: 208, False: 50.9k]
  |  |  |  Branch (2067:35): [True: 303, False: 50.8k]
  |  |  |  Branch (2067:51): [True: 249, False: 50.8k]
  |  |  ------------------
  |  | 2068|  21.8k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 201, False: 50.9k]
  |  |  |  Branch (2068:21): [True: 330, False: 50.8k]
  |  |  |  Branch (2068:37): [True: 390, False: 50.7k]
  |  |  |  Branch (2068:53): [True: 310, False: 50.8k]
  |  |  ------------------
  |  | 2069|  22.9k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 224, False: 50.9k]
  |  |  |  Branch (2069:21): [True: 206, False: 50.9k]
  |  |  |  Branch (2069:37): [True: 236, False: 50.9k]
  |  |  |  Branch (2069:53): [True: 465, False: 50.6k]
  |  |  ------------------
  |  | 2070|  23.9k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 223, False: 50.9k]
  |  |  |  Branch (2070:21): [True: 233, False: 50.9k]
  |  |  |  Branch (2070:37): [True: 251, False: 50.8k]
  |  |  |  Branch (2070:53): [True: 261, False: 50.8k]
  |  |  ------------------
  |  | 2071|  25.1k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 478, False: 50.6k]
  |  |  |  Branch (2071:21): [True: 197, False: 50.9k]
  |  |  |  Branch (2071:37): [True: 284, False: 50.8k]
  |  |  |  Branch (2071:53): [True: 227, False: 50.9k]
  |  |  ------------------
  |  | 2072|  26.2k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 203, False: 50.9k]
  |  |  |  Branch (2072:21): [True: 365, False: 50.7k]
  |  |  |  Branch (2072:37): [True: 214, False: 50.9k]
  |  |  ------------------
  ------------------
  557|   701k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  27.1k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 246, False: 50.8k]
  |  |  |  Branch (2081:21): [True: 214, False: 50.9k]
  |  |  |  Branch (2081:37): [True: 198, False: 50.9k]
  |  |  |  Branch (2081:53): [True: 238, False: 50.9k]
  |  |  ------------------
  |  | 2082|  28.2k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 195, False: 50.9k]
  |  |  |  Branch (2082:21): [True: 230, False: 50.9k]
  |  |  |  Branch (2082:37): [True: 514, False: 50.6k]
  |  |  |  Branch (2082:53): [True: 198, False: 50.9k]
  |  |  ------------------
  |  | 2083|  29.3k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 248, False: 50.8k]
  |  |  |  Branch (2083:21): [True: 195, False: 50.9k]
  |  |  |  Branch (2083:37): [True: 444, False: 50.6k]
  |  |  |  Branch (2083:54): [True: 196, False: 50.9k]
  |  |  ------------------
  |  | 2084|  30.4k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 484, False: 50.6k]
  |  |  |  Branch (2084:22): [True: 194, False: 50.9k]
  |  |  |  Branch (2084:39): [True: 206, False: 50.9k]
  |  |  ------------------
  ------------------
  558|   454k|    CASE_MFF_XXREGS:
  ------------------
  |  | 2093|  35.7k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 1.65k, False: 49.4k]
  |  |  |  Branch (2093:22): [True: 2.91k, False: 48.2k]
  |  |  |  Branch (2093:39): [True: 334, False: 50.8k]
  |  |  |  Branch (2093:56): [True: 396, False: 50.7k]
  |  |  ------------------
  |  | 2094|  36.6k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 242, False: 50.8k]
  |  |  |  Branch (2094:22): [True: 234, False: 50.9k]
  |  |  |  Branch (2094:39): [True: 194, False: 50.9k]
  |  |  ------------------
  ------------------
  559|   283k|    case MFF_ETH_SRC:
  ------------------
  |  Branch (559:5): [True: 198, False: 50.9k]
  ------------------
  560|  37.1k|    case MFF_ETH_DST:
  ------------------
  |  Branch (560:5): [True: 322, False: 50.8k]
  ------------------
  561|  37.1k|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (561:5): [True: 0, False: 51.1k]
  ------------------
  562|  38.7k|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (562:5): [True: 1.54k, False: 49.5k]
  ------------------
  563|  38.9k|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (563:5): [True: 194, False: 50.9k]
  ------------------
  564|  39.3k|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (564:5): [True: 407, False: 50.7k]
  ------------------
  565|  39.6k|    case MFF_IPV4_DST:
  ------------------
  |  Branch (565:5): [True: 291, False: 50.8k]
  ------------------
  566|  39.8k|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (566:5): [True: 195, False: 50.9k]
  ------------------
  567|  40.0k|    case MFF_IPV6_DST:
  ------------------
  |  Branch (567:5): [True: 232, False: 50.9k]
  ------------------
  568|  40.0k|    case MFF_IP_PROTO:
  ------------------
  |  Branch (568:5): [True: 0, False: 51.1k]
  ------------------
  569|  40.2k|    case MFF_IP_TTL:
  ------------------
  |  Branch (569:5): [True: 198, False: 50.9k]
  ------------------
  570|  40.4k|    case MFF_ARP_SPA:
  ------------------
  |  Branch (570:5): [True: 205, False: 50.9k]
  ------------------
  571|  40.7k|    case MFF_ARP_TPA:
  ------------------
  |  Branch (571:5): [True: 262, False: 50.8k]
  ------------------
  572|  41.1k|    case MFF_ARP_SHA:
  ------------------
  |  Branch (572:5): [True: 374, False: 50.7k]
  ------------------
  573|  41.3k|    case MFF_ARP_THA:
  ------------------
  |  Branch (573:5): [True: 298, False: 50.8k]
  ------------------
  574|  41.6k|    case MFF_TCP_SRC:
  ------------------
  |  Branch (574:5): [True: 219, False: 50.9k]
  ------------------
  575|  41.9k|    case MFF_TCP_DST:
  ------------------
  |  Branch (575:5): [True: 320, False: 50.8k]
  ------------------
  576|  42.4k|    case MFF_UDP_SRC:
  ------------------
  |  Branch (576:5): [True: 533, False: 50.6k]
  ------------------
  577|  42.6k|    case MFF_UDP_DST:
  ------------------
  |  Branch (577:5): [True: 203, False: 50.9k]
  ------------------
  578|  42.9k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (578:5): [True: 294, False: 50.8k]
  ------------------
  579|  43.2k|    case MFF_SCTP_DST:
  ------------------
  |  Branch (579:5): [True: 330, False: 50.8k]
  ------------------
  580|  43.5k|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (580:5): [True: 230, False: 50.9k]
  ------------------
  581|  43.9k|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (581:5): [True: 387, False: 50.7k]
  ------------------
  582|  44.2k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (582:5): [True: 343, False: 50.7k]
  ------------------
  583|  44.4k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (583:5): [True: 196, False: 50.9k]
  ------------------
  584|  44.4k|    case MFF_ND_TARGET:
  ------------------
  |  Branch (584:5): [True: 0, False: 51.1k]
  ------------------
  585|  44.9k|    case MFF_ND_SLL:
  ------------------
  |  Branch (585:5): [True: 475, False: 50.6k]
  ------------------
  586|  45.3k|    case MFF_ND_TLL:
  ------------------
  |  Branch (586:5): [True: 397, False: 50.7k]
  ------------------
  587|  45.3k|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (587:5): [True: 0, False: 51.1k]
  ------------------
  588|  45.3k|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (588:5): [True: 0, False: 51.1k]
  ------------------
  589|  45.3k|        return true;
  590|       |
  591|      0|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (591:5): [True: 0, False: 51.1k]
  ------------------
  592|      0|    case MFF_ACTSET_OUTPUT: {
  ------------------
  |  Branch (592:5): [True: 0, False: 51.1k]
  ------------------
  593|      0|        ofp_port_t port;
  594|      0|        return !ofputil_port_from_ofp11(value->be32, &port);
  595|      0|    }
  596|       |
  597|    220|    case MFF_IP_DSCP:
  ------------------
  |  Branch (597:5): [True: 220, False: 50.9k]
  ------------------
  598|    220|        return !(value->u8 & ~IP_DSCP_MASK);
  ------------------
  |  |  724|    220|#define IP_DSCP_MASK 0xfc
  ------------------
  599|    210|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (599:5): [True: 210, False: 50.9k]
  ------------------
  600|    210|        return !(value->u8 & (~IP_DSCP_MASK >> 2));
  ------------------
  |  |  724|    210|#define IP_DSCP_MASK 0xfc
  ------------------
  601|    511|    case MFF_IP_ECN:
  ------------------
  |  Branch (601:5): [True: 511, False: 50.6k]
  ------------------
  602|    511|        return !(value->u8 & ~IP_ECN_MASK);
  ------------------
  |  |  722|    511|#define IP_ECN_MASK 0x03
  ------------------
  603|      0|    case MFF_IP_FRAG:
  ------------------
  |  Branch (603:5): [True: 0, False: 51.1k]
  ------------------
  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: 51.1k]
  ------------------
  606|      0|        return !(value->be16 & ~htons(0x0fff));
  607|       |
  608|    194|    case MFF_ARP_OP:
  ------------------
  |  Branch (608:5): [True: 194, False: 50.9k]
  ------------------
  609|    194|        return !(value->be16 & htons(0xff00));
  610|       |
  611|    322|    case MFF_DL_VLAN:
  ------------------
  |  Branch (611:5): [True: 322, False: 50.8k]
  ------------------
  612|    322|        return !(value->be16 & htons(VLAN_CFI | VLAN_PCP_MASK));
  613|    406|    case MFF_VLAN_VID:
  ------------------
  |  Branch (613:5): [True: 406, False: 50.7k]
  ------------------
  614|    406|        return !(value->be16 & htons(VLAN_PCP_MASK));
  615|       |
  616|    194|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (616:5): [True: 194, False: 50.9k]
  ------------------
  617|    603|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (617:5): [True: 409, False: 50.7k]
  ------------------
  618|    603|        return !(value->u8 & ~(VLAN_PCP_MASK >> VLAN_PCP_SHIFT));
  ------------------
  |  |  497|    603|#define VLAN_PCP_MASK 0xe000
  ------------------
                      return !(value->u8 & ~(VLAN_PCP_MASK >> VLAN_PCP_SHIFT));
  ------------------
  |  |  498|    603|#define VLAN_PCP_SHIFT 13
  ------------------
  619|       |
  620|    197|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (620:5): [True: 197, False: 50.9k]
  ------------------
  621|    197|        return !(value->be32 & ~htonl(IPV6_LABEL_MASK));
  622|       |
  623|    227|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (623:5): [True: 227, False: 50.9k]
  ------------------
  624|    227|        return !(value->be32 & ~htonl(MPLS_LABEL_MASK >> MPLS_LABEL_SHIFT));
  625|       |
  626|    357|    case MFF_MPLS_TC:
  ------------------
  |  Branch (626:5): [True: 357, False: 50.7k]
  ------------------
  627|    357|        return !(value->u8 & ~(MPLS_TC_MASK >> MPLS_TC_SHIFT));
  ------------------
  |  |  551|    357|#define MPLS_TC_MASK        0x00000e00
  ------------------
                      return !(value->u8 & ~(MPLS_TC_MASK >> MPLS_TC_SHIFT));
  ------------------
  |  |  552|    357|#define MPLS_TC_SHIFT       9
  ------------------
  628|       |
  629|      0|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (629:5): [True: 0, False: 51.1k]
  ------------------
  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|     67|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (632:5): [True: 67, False: 51.0k]
  ------------------
  633|     67|        return !(value->be16 & ~htons(FLOW_TNL_PUB_F_MASK));
  634|       |
  635|      0|    case MFF_CT_STATE:
  ------------------
  |  Branch (635:5): [True: 0, False: 51.1k]
  ------------------
  636|      0|        return !(value->be32 & ~htonl(CS_SUPPORTED_MASK));
  637|       |
  638|    195|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (638:5): [True: 195, False: 50.9k]
  ------------------
  639|    195|        return true;
  640|    201|    case MFF_NSH_TTL:
  ------------------
  |  Branch (640:5): [True: 201, False: 50.9k]
  ------------------
  641|    201|        return (value->u8 <= 63);
  642|      0|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (642:5): [True: 0, False: 51.1k]
  ------------------
  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: 51.1k]
  ------------------
  645|      0|        return true;
  646|    200|    case MFF_NSH_SPI:
  ------------------
  |  Branch (646:5): [True: 200, False: 50.9k]
  ------------------
  647|    200|        return !(value->be32 & htonl(0xFF000000));
  648|    200|    case MFF_NSH_SI:
  ------------------
  |  Branch (648:5): [True: 200, False: 50.9k]
  ------------------
  649|    499|    case MFF_NSH_C1:
  ------------------
  |  Branch (649:5): [True: 299, False: 50.8k]
  ------------------
  650|    885|    case MFF_NSH_C2:
  ------------------
  |  Branch (650:5): [True: 386, False: 50.7k]
  ------------------
  651|  1.67k|    case MFF_NSH_C3:
  ------------------
  |  Branch (651:5): [True: 787, False: 50.3k]
  ------------------
  652|  1.90k|    case MFF_NSH_C4:
  ------------------
  |  Branch (652:5): [True: 230, False: 50.9k]
  ------------------
  653|  1.90k|        return true;
  654|       |
  655|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (655:5): [True: 0, False: 51.1k]
  ------------------
  656|      0|    default:
  ------------------
  |  Branch (656:5): [True: 0, False: 51.1k]
  ------------------
  657|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  658|  51.1k|    }
  659|  51.1k|}
mf_get_value:
  666|   202k|{
  667|   202k|    switch (mf->id) {
  668|    710|    case MFF_DP_HASH:
  ------------------
  |  Branch (668:5): [True: 710, False: 201k]
  ------------------
  669|    710|        value->be32 = htonl(flow->dp_hash);
  670|    710|        break;
  671|    838|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (671:5): [True: 838, False: 201k]
  ------------------
  672|    838|        value->be32 = htonl(flow->recirc_id);
  673|    838|        break;
  674|  2.34k|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (674:5): [True: 2.34k, False: 200k]
  ------------------
  675|  2.34k|        value->be32 = flow->packet_type;
  676|  2.34k|        break;
  677|    890|    case MFF_CONJ_ID:
  ------------------
  |  Branch (677:5): [True: 890, False: 201k]
  ------------------
  678|    890|        value->be32 = htonl(flow->conj_id);
  679|    890|        break;
  680|  1.32k|    case MFF_TUN_ID:
  ------------------
  |  Branch (680:5): [True: 1.32k, False: 201k]
  ------------------
  681|  1.32k|        value->be64 = flow->tunnel.tun_id;
  682|  1.32k|        break;
  683|    648|    case MFF_TUN_SRC:
  ------------------
  |  Branch (683:5): [True: 648, False: 201k]
  ------------------
  684|    648|        value->be32 = flow->tunnel.ip_src;
  685|    648|        break;
  686|    928|    case MFF_TUN_DST:
  ------------------
  |  Branch (686:5): [True: 928, False: 201k]
  ------------------
  687|    928|        value->be32 = flow->tunnel.ip_dst;
  688|    928|        break;
  689|    856|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (689:5): [True: 856, False: 201k]
  ------------------
  690|    856|        value->ipv6 = flow->tunnel.ipv6_src;
  691|    856|        break;
  692|    904|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (692:5): [True: 904, False: 201k]
  ------------------
  693|    904|        value->ipv6 = flow->tunnel.ipv6_dst;
  694|    904|        break;
  695|    534|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (695:5): [True: 534, False: 201k]
  ------------------
  696|    534|        value->be16 = htons(flow->tunnel.flags & FLOW_TNL_PUB_F_MASK);
  697|    534|        break;
  698|    904|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (698:5): [True: 904, False: 201k]
  ------------------
  699|    904|        value->be16 = flow->tunnel.gbp_id;
  700|    904|        break;
  701|    900|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (701:5): [True: 900, False: 201k]
  ------------------
  702|    900|        value->u8 = flow->tunnel.gbp_flags;
  703|    900|        break;
  704|  1.00k|    case MFF_TUN_TTL:
  ------------------
  |  Branch (704:5): [True: 1.00k, False: 201k]
  ------------------
  705|  1.00k|        value->u8 = flow->tunnel.ip_ttl;
  706|  1.00k|        break;
  707|  3.45k|    case MFF_TUN_TOS:
  ------------------
  |  Branch (707:5): [True: 3.45k, False: 198k]
  ------------------
  708|  3.45k|        value->u8 = flow->tunnel.ip_tos;
  709|  3.45k|        break;
  710|    938|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (710:5): [True: 938, False: 201k]
  ------------------
  711|    938|        value->u8 = flow->tunnel.erspan_ver;
  712|    938|        break;
  713|    516|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (713:5): [True: 516, False: 201k]
  ------------------
  714|    516|        value->be32 = htonl(flow->tunnel.erspan_idx);
  715|    516|        break;
  716|    260|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (716:5): [True: 260, False: 202k]
  ------------------
  717|    260|        value->u8 = flow->tunnel.erspan_dir;
  718|    260|        break;
  719|      0|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (719:5): [True: 0, False: 202k]
  ------------------
  720|      0|        value->u8 = flow->tunnel.erspan_hwid;
  721|      0|        break;
  722|    842|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (722:5): [True: 842, False: 201k]
  ------------------
  723|    842|        value->u8 = flow->tunnel.gtpu_flags;
  724|    842|        break;
  725|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (725:5): [True: 0, False: 202k]
  ------------------
  726|      0|        value->u8 = flow->tunnel.gtpu_msgtype;
  727|      0|        break;
  728|  76.9k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|  2.36k|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 1.24k, False: 201k]
  |  |  |  Branch (2110:29): [True: 1.11k, False: 201k]
  |  |  ------------------
  |  | 2111|  5.27k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 1.19k, False: 201k]
  |  |  |  Branch (2111:29): [True: 1.71k, False: 200k]
  |  |  ------------------
  |  | 2112|  8.04k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 1.60k, False: 200k]
  |  |  |  Branch (2112:29): [True: 1.16k, False: 201k]
  |  |  ------------------
  |  | 2113|  10.2k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 936, False: 201k]
  |  |  |  Branch (2113:29): [True: 1.31k, False: 201k]
  |  |  ------------------
  |  | 2114|  12.5k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 1.30k, False: 201k]
  |  |  |  Branch (2114:29): [True: 994, False: 201k]
  |  |  ------------------
  |  | 2115|  14.7k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 1.04k, False: 201k]
  |  |  |  Branch (2115:30): [True: 1.06k, False: 201k]
  |  |  ------------------
  |  | 2116|  16.7k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 1.10k, False: 201k]
  |  |  |  Branch (2116:30): [True: 924, False: 201k]
  |  |  ------------------
  |  | 2117|  18.6k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 970, False: 201k]
  |  |  |  Branch (2117:30): [True: 940, False: 201k]
  |  |  ------------------
  |  | 2118|  21.3k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 1.48k, False: 200k]
  |  |  |  Branch (2118:30): [True: 1.24k, False: 201k]
  |  |  ------------------
  |  | 2119|  23.7k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 1.16k, False: 201k]
  |  |  |  Branch (2119:30): [True: 1.18k, False: 201k]
  |  |  ------------------
  |  | 2120|  26.1k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 1.06k, False: 201k]
  |  |  |  Branch (2120:30): [True: 1.34k, False: 201k]
  |  |  ------------------
  |  | 2121|  28.9k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 1.11k, False: 201k]
  |  |  |  Branch (2121:30): [True: 1.76k, False: 200k]
  |  |  ------------------
  |  | 2122|  31.2k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 1.05k, False: 201k]
  |  |  |  Branch (2122:30): [True: 1.21k, False: 201k]
  |  |  ------------------
  |  | 2123|  33.4k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 1.02k, False: 201k]
  |  |  |  Branch (2123:30): [True: 1.19k, False: 201k]
  |  |  ------------------
  |  | 2124|  35.4k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 972, False: 201k]
  |  |  |  Branch (2124:30): [True: 976, False: 201k]
  |  |  ------------------
  |  | 2125|  37.6k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 978, False: 201k]
  |  |  |  Branch (2125:30): [True: 1.27k, False: 201k]
  |  |  ------------------
  |  | 2126|  41.6k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 1.20k, False: 201k]
  |  |  |  Branch (2126:30): [True: 2.72k, False: 199k]
  |  |  ------------------
  |  | 2127|  43.4k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 974, False: 201k]
  |  |  |  Branch (2127:30): [True: 912, False: 201k]
  |  |  ------------------
  |  | 2128|  50.0k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 1.79k, False: 200k]
  |  |  |  Branch (2128:30): [True: 4.79k, False: 197k]
  |  |  ------------------
  |  | 2129|  52.6k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 1.22k, False: 201k]
  |  |  |  Branch (2129:30): [True: 1.35k, False: 201k]
  |  |  ------------------
  |  | 2130|  54.5k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 1.03k, False: 201k]
  |  |  |  Branch (2130:30): [True: 854, False: 201k]
  |  |  ------------------
  |  | 2131|  56.4k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 988, False: 201k]
  |  |  |  Branch (2131:30): [True: 968, False: 201k]
  |  |  ------------------
  |  | 2132|  58.8k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 1.38k, False: 200k]
  |  |  |  Branch (2132:30): [True: 944, False: 201k]
  |  |  ------------------
  |  | 2133|  60.7k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 960, False: 201k]
  |  |  |  Branch (2133:30): [True: 968, False: 201k]
  |  |  ------------------
  |  | 2134|  62.8k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 1.11k, False: 201k]
  |  |  |  Branch (2134:30): [True: 998, False: 201k]
  |  |  ------------------
  |  | 2135|  65.0k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 1.10k, False: 201k]
  |  |  |  Branch (2135:30): [True: 1.07k, False: 201k]
  |  |  ------------------
  |  | 2136|  67.0k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 1.04k, False: 201k]
  |  |  |  Branch (2136:30): [True: 918, False: 201k]
  |  |  ------------------
  |  | 2137|  68.8k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 926, False: 201k]
  |  |  |  Branch (2137:30): [True: 954, False: 201k]
  |  |  ------------------
  |  | 2138|  70.8k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 956, False: 201k]
  |  |  |  Branch (2138:30): [True: 968, False: 201k]
  |  |  ------------------
  |  | 2139|  72.7k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 934, False: 201k]
  |  |  |  Branch (2139:30): [True: 980, False: 201k]
  |  |  ------------------
  |  | 2140|  75.0k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 1.36k, False: 200k]
  |  |  |  Branch (2140:30): [True: 946, False: 201k]
  |  |  ------------------
  |  | 2141|  76.9k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 1.00k, False: 201k]
  |  |  ------------------
  ------------------
  729|  76.9k|        tun_metadata_read(&flow->tunnel, mf, value);
  730|  76.9k|        break;
  731|       |
  732|    856|    case MFF_METADATA:
  ------------------
  |  Branch (732:5): [True: 856, False: 201k]
  ------------------
  733|    856|        value->be64 = flow->metadata;
  734|    856|        break;
  735|       |
  736|    834|    case MFF_IN_PORT:
  ------------------
  |  Branch (736:5): [True: 834, False: 201k]
  ------------------
  737|    834|        value->be16 = htons(ofp_to_u16(flow->in_port.ofp_port));
  738|    834|        break;
  739|  1.04k|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (739:5): [True: 1.04k, False: 201k]
  ------------------
  740|  1.04k|        value->be32 = ofputil_port_to_ofp11(flow->in_port.ofp_port);
  741|  1.04k|        break;
  742|  1.39k|    case MFF_ACTSET_OUTPUT:
  ------------------
  |  Branch (742:5): [True: 1.39k, False: 200k]
  ------------------
  743|  1.39k|        value->be32 = ofputil_port_to_ofp11(flow->actset_output);
  744|  1.39k|        break;
  745|       |
  746|      0|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (746:5): [True: 0, False: 202k]
  ------------------
  747|      0|        value->be32 = htonl(flow->skb_priority);
  748|      0|        break;
  749|       |
  750|    792|    case MFF_PKT_MARK:
  ------------------
  |  Branch (750:5): [True: 792, False: 201k]
  ------------------
  751|    792|        value->be32 = htonl(flow->pkt_mark);
  752|    792|        break;
  753|       |
  754|    486|    case MFF_CT_STATE:
  ------------------
  |  Branch (754:5): [True: 486, False: 201k]
  ------------------
  755|    486|        value->be32 = htonl(flow->ct_state);
  756|    486|        break;
  757|       |
  758|    880|    case MFF_CT_ZONE:
  ------------------
  |  Branch (758:5): [True: 880, False: 201k]
  ------------------
  759|    880|        value->be16 = htons(flow->ct_zone);
  760|    880|        break;
  761|       |
  762|    630|    case MFF_CT_MARK:
  ------------------
  |  Branch (762:5): [True: 630, False: 201k]
  ------------------
  763|    630|        value->be32 = htonl(flow->ct_mark);
  764|    630|        break;
  765|       |
  766|    868|    case MFF_CT_LABEL:
  ------------------
  |  Branch (766:5): [True: 868, False: 201k]
  ------------------
  767|    868|        value->be128 = hton128(flow->ct_label);
  768|    868|        break;
  769|       |
  770|    910|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (770:5): [True: 910, False: 201k]
  ------------------
  771|    910|        value->u8 = flow->ct_nw_proto;
  772|    910|        break;
  773|       |
  774|    906|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (774:5): [True: 906, False: 201k]
  ------------------
  775|    906|        value->be32 = flow->ct_nw_src;
  776|    906|        break;
  777|       |
  778|    844|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (778:5): [True: 844, False: 201k]
  ------------------
  779|    844|        value->be32 = flow->ct_nw_dst;
  780|    844|        break;
  781|       |
  782|    942|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (782:5): [True: 942, False: 201k]
  ------------------
  783|    942|        value->ipv6 = flow->ct_ipv6_src;
  784|    942|        break;
  785|       |
  786|    864|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (786:5): [True: 864, False: 201k]
  ------------------
  787|    864|        value->ipv6 = flow->ct_ipv6_dst;
  788|    864|        break;
  789|       |
  790|  1.29k|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (790:5): [True: 1.29k, False: 201k]
  ------------------
  791|  1.29k|        value->be16 = flow->ct_tp_src;
  792|  1.29k|        break;
  793|       |
  794|    862|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (794:5): [True: 862, False: 201k]
  ------------------
  795|    862|        value->be16 = flow->ct_tp_dst;
  796|    862|        break;
  797|       |
  798|  24.2k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  4.12k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 1.26k, False: 201k]
  |  |  |  Branch (2065:20): [True: 1.38k, False: 200k]
  |  |  |  Branch (2065:35): [True: 822, False: 201k]
  |  |  |  Branch (2065:50): [True: 654, False: 201k]
  |  |  ------------------
  |  | 2066|  7.03k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 1.21k, False: 201k]
  |  |  |  Branch (2066:20): [True: 560, False: 201k]
  |  |  |  Branch (2066:35): [True: 762, False: 201k]
  |  |  |  Branch (2066:50): [True: 364, False: 201k]
  |  |  ------------------
  |  | 2067|  10.5k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 702, False: 201k]
  |  |  |  Branch (2067:20): [True: 1.27k, False: 201k]
  |  |  |  Branch (2067:35): [True: 634, False: 201k]
  |  |  |  Branch (2067:51): [True: 878, False: 201k]
  |  |  ------------------
  |  | 2068|  13.4k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 946, False: 201k]
  |  |  |  Branch (2068:21): [True: 550, False: 201k]
  |  |  |  Branch (2068:37): [True: 810, False: 201k]
  |  |  |  Branch (2068:53): [True: 588, False: 201k]
  |  |  ------------------
  |  | 2069|  16.4k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 700, False: 201k]
  |  |  |  Branch (2069:21): [True: 878, False: 201k]
  |  |  |  Branch (2069:37): [True: 646, False: 201k]
  |  |  |  Branch (2069:53): [True: 860, False: 201k]
  |  |  ------------------
  |  | 2070|  18.5k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 326, False: 202k]
  |  |  |  Branch (2070:21): [True: 270, False: 202k]
  |  |  |  Branch (2070:37): [True: 886, False: 201k]
  |  |  |  Branch (2070:53): [True: 540, False: 201k]
  |  |  ------------------
  |  | 2071|  21.0k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 524, False: 201k]
  |  |  |  Branch (2071:21): [True: 444, False: 201k]
  |  |  |  Branch (2071:37): [True: 996, False: 201k]
  |  |  |  Branch (2071:53): [True: 580, False: 201k]
  |  |  ------------------
  |  | 2072|  24.2k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 684, False: 201k]
  |  |  |  Branch (2072:21): [True: 768, False: 201k]
  |  |  |  Branch (2072:37): [True: 1.12k, False: 201k]
  |  |  ------------------
  ------------------
  799|  24.2k|        value->be32 = htonl(flow->regs[mf->id - MFF_REG0]);
  800|  24.2k|        break;
  801|       |
  802|  14.1k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  2.70k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 442, False: 201k]
  |  |  |  Branch (2081:21): [True: 326, False: 202k]
  |  |  |  Branch (2081:37): [True: 1.05k, False: 201k]
  |  |  |  Branch (2081:53): [True: 884, False: 201k]
  |  |  ------------------
  |  | 2082|  6.83k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 1.18k, False: 201k]
  |  |  |  Branch (2082:21): [True: 582, False: 201k]
  |  |  |  Branch (2082:37): [True: 1.54k, False: 200k]
  |  |  |  Branch (2082:53): [True: 822, False: 201k]
  |  |  ------------------
  |  | 2083|  10.5k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 1.03k, False: 201k]
  |  |  |  Branch (2083:21): [True: 1.35k, False: 201k]
  |  |  |  Branch (2083:37): [True: 702, False: 201k]
  |  |  |  Branch (2083:54): [True: 598, False: 201k]
  |  |  ------------------
  |  | 2084|  14.1k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 908, False: 201k]
  |  |  |  Branch (2084:22): [True: 608, False: 201k]
  |  |  |  Branch (2084:39): [True: 586, False: 201k]
  |  |  ------------------
  ------------------
  803|  14.1k|        value->be64 = htonll(flow_get_xreg(flow, mf->id - MFF_XREG0));
  804|  14.1k|        break;
  805|       |
  806|  6.81k|    CASE_MFF_XXREGS:
  ------------------
  |  | 2093|  4.07k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 1.38k, False: 200k]
  |  |  |  Branch (2093:22): [True: 858, False: 201k]
  |  |  |  Branch (2093:39): [True: 968, False: 201k]
  |  |  |  Branch (2093:56): [True: 864, False: 201k]
  |  |  ------------------
  |  | 2094|  6.81k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 1.26k, False: 201k]
  |  |  |  Branch (2094:22): [True: 620, False: 201k]
  |  |  |  Branch (2094:39): [True: 532, False: 201k]
  |  |  ------------------
  ------------------
  807|  6.81k|        value->be128 = hton128(flow_get_xxreg(flow, mf->id - MFF_XXREG0));
  808|  6.81k|        break;
  809|       |
  810|    676|    case MFF_ETH_SRC:
  ------------------
  |  Branch (810:5): [True: 676, False: 201k]
  ------------------
  811|    676|        value->mac = flow->dl_src;
  812|    676|        break;
  813|       |
  814|  1.03k|    case MFF_ETH_DST:
  ------------------
  |  Branch (814:5): [True: 1.03k, False: 201k]
  ------------------
  815|  1.03k|        value->mac = flow->dl_dst;
  816|  1.03k|        break;
  817|       |
  818|    824|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (818:5): [True: 824, False: 201k]
  ------------------
  819|    824|        value->be16 = flow->dl_type;
  820|    824|        break;
  821|       |
  822|    576|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (822:5): [True: 576, False: 201k]
  ------------------
  823|    576|        value->be16 = flow->vlans[0].tci;
  824|    576|        break;
  825|       |
  826|    516|    case MFF_DL_VLAN:
  ------------------
  |  Branch (826:5): [True: 516, False: 201k]
  ------------------
  827|    516|        value->be16 = flow->vlans[0].tci & htons(VLAN_VID_MASK);
  828|    516|        break;
  829|    624|    case MFF_VLAN_VID:
  ------------------
  |  Branch (829:5): [True: 624, False: 201k]
  ------------------
  830|    624|        value->be16 = flow->vlans[0].tci & htons(VLAN_VID_MASK | VLAN_CFI);
  831|    624|        break;
  832|       |
  833|    878|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (833:5): [True: 878, False: 201k]
  ------------------
  834|  1.64k|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (834:5): [True: 766, False: 201k]
  ------------------
  835|  1.64k|        value->u8 = vlan_tci_to_pcp(flow->vlans[0].tci);
  836|  1.64k|        break;
  837|       |
  838|    586|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (838:5): [True: 586, False: 201k]
  ------------------
  839|    586|        value->be32 = htonl(mpls_lse_to_label(flow->mpls_lse[0]));
  840|    586|        break;
  841|       |
  842|    516|    case MFF_MPLS_TC:
  ------------------
  |  Branch (842:5): [True: 516, False: 201k]
  ------------------
  843|    516|        value->u8 = mpls_lse_to_tc(flow->mpls_lse[0]);
  844|    516|        break;
  845|       |
  846|    516|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (846:5): [True: 516, False: 201k]
  ------------------
  847|    516|        value->u8 = mpls_lse_to_bos(flow->mpls_lse[0]);
  848|    516|        break;
  849|       |
  850|    640|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (850:5): [True: 640, False: 201k]
  ------------------
  851|    640|        value->u8 = mpls_lse_to_ttl(flow->mpls_lse[0]);
  852|    640|        break;
  853|       |
  854|  1.65k|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (854:5): [True: 1.65k, False: 200k]
  ------------------
  855|  1.65k|        value->be32 = flow->nw_src;
  856|  1.65k|        break;
  857|       |
  858|    958|    case MFF_IPV4_DST:
  ------------------
  |  Branch (858:5): [True: 958, False: 201k]
  ------------------
  859|    958|        value->be32 = flow->nw_dst;
  860|    958|        break;
  861|       |
  862|  1.16k|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (862:5): [True: 1.16k, False: 201k]
  ------------------
  863|  1.16k|        value->ipv6 = flow->ipv6_src;
  864|  1.16k|        break;
  865|       |
  866|    792|    case MFF_IPV6_DST:
  ------------------
  |  Branch (866:5): [True: 792, False: 201k]
  ------------------
  867|    792|        value->ipv6 = flow->ipv6_dst;
  868|    792|        break;
  869|       |
  870|  1.02k|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (870:5): [True: 1.02k, False: 201k]
  ------------------
  871|  1.02k|        value->be32 = flow->ipv6_label;
  872|  1.02k|        break;
  873|       |
  874|    572|    case MFF_IP_PROTO:
  ------------------
  |  Branch (874:5): [True: 572, False: 201k]
  ------------------
  875|    572|        value->u8 = flow->nw_proto;
  876|    572|        break;
  877|       |
  878|    594|    case MFF_IP_DSCP:
  ------------------
  |  Branch (878:5): [True: 594, False: 201k]
  ------------------
  879|    594|        value->u8 = flow->nw_tos & IP_DSCP_MASK;
  ------------------
  |  |  724|    594|#define IP_DSCP_MASK 0xfc
  ------------------
  880|    594|        break;
  881|       |
  882|    516|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (882:5): [True: 516, False: 201k]
  ------------------
  883|    516|        value->u8 = flow->nw_tos >> 2;
  884|    516|        break;
  885|       |
  886|    520|    case MFF_IP_ECN:
  ------------------
  |  Branch (886:5): [True: 520, False: 201k]
  ------------------
  887|    520|        value->u8 = flow->nw_tos & IP_ECN_MASK;
  ------------------
  |  |  722|    520|#define IP_ECN_MASK 0x03
  ------------------
  888|    520|        break;
  889|       |
  890|    842|    case MFF_IP_TTL:
  ------------------
  |  Branch (890:5): [True: 842, False: 201k]
  ------------------
  891|    842|        value->u8 = flow->nw_ttl;
  892|    842|        break;
  893|       |
  894|    486|    case MFF_IP_FRAG:
  ------------------
  |  Branch (894:5): [True: 486, False: 201k]
  ------------------
  895|    486|        value->u8 = flow->nw_frag;
  896|    486|        break;
  897|       |
  898|    648|    case MFF_ARP_OP:
  ------------------
  |  Branch (898:5): [True: 648, False: 201k]
  ------------------
  899|    648|        value->be16 = htons(flow->nw_proto);
  900|    648|        break;
  901|       |
  902|    996|    case MFF_ARP_SPA:
  ------------------
  |  Branch (902:5): [True: 996, False: 201k]
  ------------------
  903|    996|        value->be32 = flow->nw_src;
  904|    996|        break;
  905|       |
  906|    924|    case MFF_ARP_TPA:
  ------------------
  |  Branch (906:5): [True: 924, False: 201k]
  ------------------
  907|    924|        value->be32 = flow->nw_dst;
  908|    924|        break;
  909|       |
  910|  1.31k|    case MFF_ARP_SHA:
  ------------------
  |  Branch (910:5): [True: 1.31k, False: 201k]
  ------------------
  911|  1.96k|    case MFF_ND_SLL:
  ------------------
  |  Branch (911:5): [True: 652, False: 201k]
  ------------------
  912|  1.96k|        value->mac = flow->arp_sha;
  913|  1.96k|        break;
  914|       |
  915|  1.08k|    case MFF_ARP_THA:
  ------------------
  |  Branch (915:5): [True: 1.08k, False: 201k]
  ------------------
  916|  2.01k|    case MFF_ND_TLL:
  ------------------
  |  Branch (916:5): [True: 930, False: 201k]
  ------------------
  917|  2.01k|        value->mac = flow->arp_tha;
  918|  2.01k|        break;
  919|       |
  920|    292|    case MFF_TCP_SRC:
  ------------------
  |  Branch (920:5): [True: 292, False: 202k]
  ------------------
  921|    816|    case MFF_UDP_SRC:
  ------------------
  |  Branch (921:5): [True: 524, False: 201k]
  ------------------
  922|  1.04k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (922:5): [True: 224, False: 202k]
  ------------------
  923|  1.04k|        value->be16 = flow->tp_src;
  924|  1.04k|        break;
  925|       |
  926|  1.27k|    case MFF_TCP_DST:
  ------------------
  |  Branch (926:5): [True: 1.27k, False: 201k]
  ------------------
  927|  2.21k|    case MFF_UDP_DST:
  ------------------
  |  Branch (927:5): [True: 932, False: 201k]
  ------------------
  928|  3.00k|    case MFF_SCTP_DST:
  ------------------
  |  Branch (928:5): [True: 790, False: 201k]
  ------------------
  929|  3.00k|        value->be16 = flow->tp_dst;
  930|  3.00k|        break;
  931|       |
  932|    578|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (932:5): [True: 578, False: 201k]
  ------------------
  933|    578|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (933:5): [True: 0, False: 202k]
  ------------------
  934|    578|        value->be16 = flow->tcp_flags;
  935|    578|        break;
  936|       |
  937|      0|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (937:5): [True: 0, False: 202k]
  ------------------
  938|      0|        value->be32 = flow->igmp_group_ip4;
  939|      0|        break;
  940|       |
  941|    836|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (941:5): [True: 836, False: 201k]
  ------------------
  942|  1.69k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (942:5): [True: 856, False: 201k]
  ------------------
  943|  1.69k|        value->u8 = ntohs(flow->tp_src);
  944|  1.69k|        break;
  945|       |
  946|    902|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (946:5): [True: 902, False: 201k]
  ------------------
  947|  1.78k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (947:5): [True: 886, False: 201k]
  ------------------
  948|  1.78k|        value->u8 = ntohs(flow->tp_dst);
  949|  1.78k|        break;
  950|       |
  951|    910|    case MFF_ND_TARGET:
  ------------------
  |  Branch (951:5): [True: 910, False: 201k]
  ------------------
  952|    910|        value->ipv6 = flow->nd_target;
  953|    910|        break;
  954|       |
  955|  1.02k|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (955:5): [True: 1.02k, False: 201k]
  ------------------
  956|  1.02k|        value->u8 = flow->nsh.flags;
  957|  1.02k|        break;
  958|    792|    case MFF_NSH_TTL:
  ------------------
  |  Branch (958:5): [True: 792, False: 201k]
  ------------------
  959|    792|        value->u8 = flow->nsh.ttl;
  960|    792|        break;
  961|  1.51k|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (961:5): [True: 1.51k, False: 200k]
  ------------------
  962|  1.51k|        value->u8 = flow->nsh.mdtype;
  963|  1.51k|        break;
  964|    844|    case MFF_NSH_NP:
  ------------------
  |  Branch (964:5): [True: 844, False: 201k]
  ------------------
  965|    844|        value->u8 = flow->nsh.np;
  966|    844|        break;
  967|  2.13k|    case MFF_NSH_SPI:
  ------------------
  |  Branch (967:5): [True: 2.13k, False: 200k]
  ------------------
  968|  2.13k|        value->be32 = nsh_path_hdr_to_spi(flow->nsh.path_hdr);
  969|  2.13k|        if (value->be32 == htonl(NSH_SPI_MASK >> NSH_SPI_SHIFT)) {
  ------------------
  |  Branch (969:13): [True: 416, False: 1.71k]
  ------------------
  970|    416|            value->be32 = OVS_BE32_MAX;
  ------------------
  |  |   43|    416|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  971|    416|        }
  972|  2.13k|        break;
  973|  1.36k|    case MFF_NSH_SI:
  ------------------
  |  Branch (973:5): [True: 1.36k, False: 200k]
  ------------------
  974|  1.36k|        value->u8 = nsh_path_hdr_to_si(flow->nsh.path_hdr);
  975|  1.36k|        break;
  976|  1.97k|    case MFF_NSH_C1:
  ------------------
  |  Branch (976:5): [True: 1.97k, False: 200k]
  ------------------
  977|  3.15k|    case MFF_NSH_C2:
  ------------------
  |  Branch (977:5): [True: 1.18k, False: 201k]
  ------------------
  978|  4.84k|    case MFF_NSH_C3:
  ------------------
  |  Branch (978:5): [True: 1.69k, False: 200k]
  ------------------
  979|  6.42k|    case MFF_NSH_C4:
  ------------------
  |  Branch (979:5): [True: 1.58k, False: 200k]
  ------------------
  980|  6.42k|        value->be32 = flow->nsh.context[mf->id - MFF_NSH_C1];
  981|  6.42k|        break;
  982|       |
  983|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (983:5): [True: 0, False: 202k]
  ------------------
  984|      0|    default:
  ------------------
  |  Branch (984:5): [True: 0, False: 202k]
  ------------------
  985|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  986|   202k|    }
  987|   202k|}
mf_set_value:
  999|  74.9k|{
 1000|  74.9k|    if (err_str) {
  ------------------
  |  Branch (1000:9): [True: 47.7k, False: 27.2k]
  ------------------
 1001|  47.7k|        *err_str = NULL;
 1002|  47.7k|    }
 1003|       |
 1004|  74.9k|    switch (mf->id) {
 1005|    269|    case MFF_DP_HASH:
  ------------------
  |  Branch (1005:5): [True: 269, False: 74.6k]
  ------------------
 1006|    269|        match_set_dp_hash(match, ntohl(value->be32));
 1007|    269|        break;
 1008|    211|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (1008:5): [True: 211, False: 74.7k]
  ------------------
 1009|    211|        match_set_recirc_id(match, ntohl(value->be32));
 1010|    211|        break;
 1011|  1.09k|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (1011:5): [True: 1.09k, False: 73.8k]
  ------------------
 1012|  1.09k|        match_set_packet_type(match, value->be32);
 1013|  1.09k|        break;
 1014|    259|    case MFF_CONJ_ID:
  ------------------
  |  Branch (1014:5): [True: 259, False: 74.7k]
  ------------------
 1015|    259|        match_set_conj_id(match, ntohl(value->be32));
 1016|    259|        break;
 1017|    420|    case MFF_TUN_ID:
  ------------------
  |  Branch (1017:5): [True: 420, False: 74.5k]
  ------------------
 1018|    420|        match_set_tun_id(match, value->be64);
 1019|    420|        break;
 1020|    258|    case MFF_TUN_SRC:
  ------------------
  |  Branch (1020:5): [True: 258, False: 74.7k]
  ------------------
 1021|    258|        match_set_tun_src(match, value->be32);
 1022|    258|        break;
 1023|    194|    case MFF_TUN_DST:
  ------------------
  |  Branch (1023:5): [True: 194, False: 74.7k]
  ------------------
 1024|    194|        match_set_tun_dst(match, value->be32);
 1025|    194|        break;
 1026|    239|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (1026:5): [True: 239, False: 74.7k]
  ------------------
 1027|    239|        match_set_tun_ipv6_src(match, &value->ipv6);
 1028|    239|        break;
 1029|    365|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (1029:5): [True: 365, False: 74.5k]
  ------------------
 1030|    365|        match_set_tun_ipv6_dst(match, &value->ipv6);
 1031|    365|        break;
 1032|    253|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (1032:5): [True: 253, False: 74.7k]
  ------------------
 1033|    253|        match_set_tun_flags(match, ntohs(value->be16));
 1034|    253|        break;
 1035|    197|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (1035:5): [True: 197, False: 74.7k]
  ------------------
 1036|    197|         match_set_tun_gbp_id(match, value->be16);
 1037|    197|         break;
 1038|    202|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (1038:5): [True: 202, False: 74.7k]
  ------------------
 1039|    202|         match_set_tun_gbp_flags(match, value->u8);
 1040|    202|         break;
 1041|    585|    case MFF_TUN_TOS:
  ------------------
  |  Branch (1041:5): [True: 585, False: 74.3k]
  ------------------
 1042|    585|        match_set_tun_tos(match, value->u8);
 1043|    585|        break;
 1044|    313|    case MFF_TUN_TTL:
  ------------------
  |  Branch (1044:5): [True: 313, False: 74.6k]
  ------------------
 1045|    313|        match_set_tun_ttl(match, value->u8);
 1046|    313|        break;
 1047|      0|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (1047:5): [True: 0, False: 74.9k]
  ------------------
 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.9k]
  ------------------
 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.9k]
  ------------------
 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.9k]
  ------------------
 1057|      0|        match_set_tun_erspan_hwid(match, value->u8);
 1058|      0|        break;
 1059|    215|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (1059:5): [True: 215, False: 74.7k]
  ------------------
 1060|    215|        match_set_tun_gtpu_flags(match, value->u8);
 1061|    215|        break;
 1062|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (1062:5): [True: 0, False: 74.9k]
  ------------------
 1063|      0|        match_set_tun_gtpu_msgtype(match, value->u8);
 1064|      0|        break;
 1065|  23.2k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|    631|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 310, False: 74.6k]
  |  |  |  Branch (2110:29): [True: 321, False: 74.6k]
  |  |  ------------------
  |  | 2111|  1.69k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 394, False: 74.5k]
  |  |  |  Branch (2111:29): [True: 666, False: 74.2k]
  |  |  ------------------
  |  | 2112|  2.56k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 480, False: 74.4k]
  |  |  |  Branch (2112:29): [True: 390, False: 74.5k]
  |  |  ------------------
  |  | 2113|  3.30k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 279, False: 74.6k]
  |  |  |  Branch (2113:29): [True: 466, False: 74.4k]
  |  |  ------------------
  |  | 2114|  4.02k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 411, False: 74.5k]
  |  |  |  Branch (2114:29): [True: 305, False: 74.6k]
  |  |  ------------------
  |  | 2115|  4.54k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 303, False: 74.6k]
  |  |  |  Branch (2115:30): [True: 218, False: 74.7k]
  |  |  ------------------
  |  | 2116|  5.06k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 254, False: 74.7k]
  |  |  |  Branch (2116:30): [True: 266, False: 74.6k]
  |  |  ------------------
  |  | 2117|  5.56k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 284, False: 74.6k]
  |  |  |  Branch (2117:30): [True: 213, False: 74.7k]
  |  |  ------------------
  |  | 2118|  6.33k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 348, False: 74.6k]
  |  |  |  Branch (2118:30): [True: 430, False: 74.5k]
  |  |  ------------------
  |  | 2119|  7.11k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 373, False: 74.5k]
  |  |  |  Branch (2119:30): [True: 402, False: 74.5k]
  |  |  ------------------
  |  | 2120|  7.61k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 203, False: 74.7k]
  |  |  |  Branch (2120:30): [True: 302, False: 74.6k]
  |  |  ------------------
  |  | 2121|  8.45k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 321, False: 74.6k]
  |  |  |  Branch (2121:30): [True: 515, False: 74.4k]
  |  |  ------------------
  |  | 2122|  9.02k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 256, False: 74.7k]
  |  |  |  Branch (2122:30): [True: 316, False: 74.6k]
  |  |  ------------------
  |  | 2123|  9.74k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 324, False: 74.6k]
  |  |  |  Branch (2123:30): [True: 399, False: 74.5k]
  |  |  ------------------
  |  | 2124|  10.3k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 268, False: 74.6k]
  |  |  |  Branch (2124:30): [True: 288, False: 74.6k]
  |  |  ------------------
  |  | 2125|  10.9k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 297, False: 74.6k]
  |  |  |  Branch (2125:30): [True: 386, False: 74.5k]
  |  |  ------------------
  |  | 2126|  12.3k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 358, False: 74.6k]
  |  |  |  Branch (2126:30): [True: 1.00k, False: 73.9k]
  |  |  ------------------
  |  | 2127|  12.8k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 231, False: 74.7k]
  |  |  |  Branch (2127:30): [True: 267, False: 74.6k]
  |  |  ------------------
  |  | 2128|  15.7k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 707, False: 74.2k]
  |  |  |  Branch (2128:30): [True: 2.20k, False: 72.7k]
  |  |  ------------------
  |  | 2129|  16.5k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 359, False: 74.6k]
  |  |  |  Branch (2129:30): [True: 395, False: 74.5k]
  |  |  ------------------
  |  | 2130|  16.9k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 208, False: 74.7k]
  |  |  |  Branch (2130:30): [True: 239, False: 74.7k]
  |  |  ------------------
  |  | 2131|  17.4k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 280, False: 74.6k]
  |  |  |  Branch (2131:30): [True: 222, False: 74.7k]
  |  |  ------------------
  |  | 2132|  18.2k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 496, False: 74.4k]
  |  |  |  Branch (2132:30): [True: 280, False: 74.6k]
  |  |  ------------------
  |  | 2133|  18.8k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 286, False: 74.6k]
  |  |  |  Branch (2133:30): [True: 289, False: 74.6k]
  |  |  ------------------
  |  | 2134|  19.4k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 351, False: 74.6k]
  |  |  |  Branch (2134:30): [True: 274, False: 74.6k]
  |  |  ------------------
  |  | 2135|  20.0k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 290, False: 74.6k]
  |  |  |  Branch (2135:30): [True: 277, False: 74.6k]
  |  |  ------------------
  |  | 2136|  20.5k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 278, False: 74.6k]
  |  |  |  Branch (2136:30): [True: 272, False: 74.6k]
  |  |  ------------------
  |  | 2137|  21.0k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 262, False: 74.6k]
  |  |  |  Branch (2137:30): [True: 216, False: 74.7k]
  |  |  ------------------
  |  | 2138|  21.5k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 291, False: 74.6k]
  |  |  |  Branch (2138:30): [True: 210, False: 74.7k]
  |  |  ------------------
  |  | 2139|  22.1k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 275, False: 74.6k]
  |  |  |  Branch (2139:30): [True: 290, False: 74.6k]
  |  |  ------------------
  |  | 2140|  22.7k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 391, False: 74.5k]
  |  |  |  Branch (2140:30): [True: 225, False: 74.7k]
  |  |  ------------------
  |  | 2141|  23.2k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 281, False: 74.6k]
  |  |  ------------------
  ------------------
 1066|  23.2k|        tun_metadata_set_match(mf, value, NULL, match, err_str);
 1067|  23.2k|        break;
 1068|       |
 1069|    223|    case MFF_METADATA:
  ------------------
  |  Branch (1069:5): [True: 223, False: 74.7k]
  ------------------
 1070|    223|        match_set_metadata(match, value->be64);
 1071|    223|        break;
 1072|       |
 1073|    205|    case MFF_IN_PORT:
  ------------------
  |  Branch (1073:5): [True: 205, False: 74.7k]
  ------------------
 1074|    205|        match_set_in_port(match, u16_to_ofp(ntohs(value->be16)));
 1075|    205|        break;
 1076|       |
 1077|    505|    case MFF_IN_PORT_OXM: {
  ------------------
  |  Branch (1077:5): [True: 505, False: 74.4k]
  ------------------
 1078|    505|        ofp_port_t port;
 1079|    505|        ofputil_port_from_ofp11(value->be32, &port);
 1080|    505|        match_set_in_port(match, port);
 1081|    505|        break;
 1082|   757k|    }
 1083|    994|    case MFF_ACTSET_OUTPUT: {
  ------------------
  |  Branch (1083:5): [True: 994, False: 73.9k]
  ------------------
 1084|    994|        ofp_port_t port;
 1085|    994|        ofputil_port_from_ofp11(value->be32, &port);
 1086|    994|        match_set_actset_output(match, port);
 1087|    994|        break;
 1088|   757k|    }
 1089|       |
 1090|      0|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (1090:5): [True: 0, False: 74.9k]
  ------------------
 1091|      0|        match_set_skb_priority(match, ntohl(value->be32));
 1092|      0|        break;
 1093|       |
 1094|    205|    case MFF_PKT_MARK:
  ------------------
  |  Branch (1094:5): [True: 205, False: 74.7k]
  ------------------
 1095|    205|        match_set_pkt_mark(match, ntohl(value->be32));
 1096|    205|        break;
 1097|       |
 1098|    736|    case MFF_CT_STATE:
  ------------------
  |  Branch (1098:5): [True: 736, False: 74.2k]
  ------------------
 1099|    736|        match_set_ct_state(match, ntohl(value->be32));
 1100|    736|        break;
 1101|       |
 1102|    262|    case MFF_CT_ZONE:
  ------------------
  |  Branch (1102:5): [True: 262, False: 74.6k]
  ------------------
 1103|    262|        match_set_ct_zone(match, ntohs(value->be16));
 1104|    262|        break;
 1105|       |
 1106|    241|    case MFF_CT_MARK:
  ------------------
  |  Branch (1106:5): [True: 241, False: 74.7k]
  ------------------
 1107|    241|        match_set_ct_mark(match, ntohl(value->be32));
 1108|    241|        break;
 1109|       |
 1110|    261|    case MFF_CT_LABEL:
  ------------------
  |  Branch (1110:5): [True: 261, False: 74.6k]
  ------------------
 1111|    261|        match_set_ct_label(match, ntoh128(value->be128));
 1112|    261|        break;
 1113|       |
 1114|    294|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (1114:5): [True: 294, False: 74.6k]
  ------------------
 1115|    294|        match_set_ct_nw_proto(match, value->u8);
 1116|    294|        break;
 1117|       |
 1118|    249|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (1118:5): [True: 249, False: 74.7k]
  ------------------
 1119|    249|        match_set_ct_nw_src(match, value->be32);
 1120|    249|        break;
 1121|       |
 1122|    240|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (1122:5): [True: 240, False: 74.7k]
  ------------------
 1123|    240|        match_set_ct_nw_dst(match, value->be32);
 1124|    240|        break;
 1125|       |
 1126|    289|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (1126:5): [True: 289, False: 74.6k]
  ------------------
 1127|    289|        match_set_ct_ipv6_src(match, &value->ipv6);
 1128|    289|        break;
 1129|       |
 1130|    269|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (1130:5): [True: 269, False: 74.6k]
  ------------------
 1131|    269|        match_set_ct_ipv6_dst(match, &value->ipv6);
 1132|    269|        break;
 1133|       |
 1134|    476|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (1134:5): [True: 476, False: 74.4k]
  ------------------
 1135|    476|        match_set_ct_tp_src(match, value->be16);
 1136|    476|        break;
 1137|       |
 1138|    256|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (1138:5): [True: 256, False: 74.7k]
  ------------------
 1139|    256|        match_set_ct_tp_dst(match, value->be16);
 1140|    256|        break;
 1141|       |
 1142|  13.1k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  2.28k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 701, False: 74.2k]
  |  |  |  Branch (2065:20): [True: 517, False: 74.4k]
  |  |  |  Branch (2065:35): [True: 523, False: 74.4k]
  |  |  |  Branch (2065:50): [True: 539, False: 74.4k]
  |  |  ------------------
  |  | 2066|  4.27k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 510, False: 74.4k]
  |  |  |  Branch (2066:20): [True: 337, False: 74.6k]
  |  |  |  Branch (2066:35): [True: 475, False: 74.4k]
  |  |  |  Branch (2066:50): [True: 673, False: 74.2k]
  |  |  ------------------
  |  | 2067|  5.69k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 344, False: 74.6k]
  |  |  |  Branch (2067:20): [True: 417, False: 74.5k]
  |  |  |  Branch (2067:35): [True: 386, False: 74.5k]
  |  |  |  Branch (2067:51): [True: 273, False: 74.6k]
  |  |  ------------------
  |  | 2068|  7.29k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 350, False: 74.6k]
  |  |  |  Branch (2068:21): [True: 383, False: 74.5k]
  |  |  |  Branch (2068:37): [True: 515, False: 74.4k]
  |  |  |  Branch (2068:53): [True: 352, False: 74.6k]
  |  |  ------------------
  |  | 2069|  8.73k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 379, False: 74.5k]
  |  |  |  Branch (2069:21): [True: 299, False: 74.6k]
  |  |  |  Branch (2069:37): [True: 397, False: 74.5k]
  |  |  |  Branch (2069:53): [True: 364, False: 74.5k]
  |  |  ------------------
  |  | 2070|  9.99k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 290, False: 74.6k]
  |  |  |  Branch (2070:21): [True: 366, False: 74.5k]
  |  |  |  Branch (2070:37): [True: 271, False: 74.6k]
  |  |  |  Branch (2070:53): [True: 338, False: 74.6k]
  |  |  ------------------
  |  | 2071|  11.3k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 301, False: 74.6k]
  |  |  |  Branch (2071:21): [True: 307, False: 74.6k]
  |  |  |  Branch (2071:37): [True: 371, False: 74.5k]
  |  |  |  Branch (2071:53): [True: 418, False: 74.5k]
  |  |  ------------------
  |  | 2072|  13.1k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 392, False: 74.5k]
  |  |  |  Branch (2072:21): [True: 445, False: 74.5k]
  |  |  |  Branch (2072:37): [True: 568, False: 74.3k]
  |  |  ------------------
  ------------------
 1143|  13.1k|        match_set_reg(match, mf->id - MFF_REG0, ntohl(value->be32));
 1144|  13.1k|        break;
 1145|       |
 1146|  6.54k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  1.63k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 394, False: 74.5k]
  |  |  |  Branch (2081:21): [True: 522, False: 74.4k]
  |  |  |  Branch (2081:37): [True: 442, False: 74.5k]
  |  |  |  Branch (2081:53): [True: 281, False: 74.6k]
  |  |  ------------------
  |  | 2082|  3.56k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 427, False: 74.5k]
  |  |  |  Branch (2082:21): [True: 484, False: 74.4k]
  |  |  |  Branch (2082:37): [True: 739, False: 74.2k]
  |  |  |  Branch (2082:53): [True: 272, False: 74.6k]
  |  |  ------------------
  |  | 2083|  5.09k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 357, False: 74.6k]
  |  |  |  Branch (2083:21): [True: 403, False: 74.5k]
  |  |  |  Branch (2083:37): [True: 441, False: 74.5k]
  |  |  |  Branch (2083:54): [True: 337, False: 74.6k]
  |  |  ------------------
  |  | 2084|  6.54k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 354, False: 74.6k]
  |  |  |  Branch (2084:22): [True: 382, False: 74.5k]
  |  |  |  Branch (2084:39): [True: 318, False: 74.6k]
  |  |  ------------------
  ------------------
 1147|  6.54k|        match_set_xreg(match, mf->id - MFF_XREG0, ntohll(value->be64));
 1148|  6.54k|        break;
 1149|       |
 1150|  2.79k|    CASE_MFF_XXREGS:
  ------------------
  |  | 2093|  1.68k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 397, False: 74.5k]
  |  |  |  Branch (2093:22): [True: 368, False: 74.5k]
  |  |  |  Branch (2093:39): [True: 441, False: 74.5k]
  |  |  |  Branch (2093:56): [True: 474, False: 74.4k]
  |  |  ------------------
  |  | 2094|  2.79k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 227, False: 74.7k]
  |  |  |  Branch (2094:22): [True: 311, False: 74.6k]
  |  |  |  Branch (2094:39): [True: 315, False: 74.6k]
  |  |  ------------------
  ------------------
 1151|  2.79k|        match_set_xxreg(match, mf->id - MFF_XXREG0, ntoh128(value->be128));
 1152|  2.79k|        break;
 1153|       |
 1154|    373|    case MFF_ETH_SRC:
  ------------------
  |  Branch (1154:5): [True: 373, False: 74.5k]
  ------------------
 1155|    373|        match_set_dl_src(match, value->mac);
 1156|    373|        break;
 1157|       |
 1158|    278|    case MFF_ETH_DST:
  ------------------
  |  Branch (1158:5): [True: 278, False: 74.6k]
  ------------------
 1159|    278|        match_set_dl_dst(match, value->mac);
 1160|    278|        break;
 1161|       |
 1162|    491|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (1162:5): [True: 491, False: 74.4k]
  ------------------
 1163|    491|        match_set_dl_type(match, value->be16);
 1164|    491|        break;
 1165|       |
 1166|    291|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (1166:5): [True: 291, False: 74.6k]
  ------------------
 1167|    291|        match_set_dl_tci(match, value->be16);
 1168|    291|        break;
 1169|       |
 1170|  1.01k|    case MFF_DL_VLAN:
  ------------------
  |  Branch (1170:5): [True: 1.01k, False: 73.9k]
  ------------------
 1171|  1.01k|        match_set_dl_vlan(match, value->be16, 0);
 1172|  1.01k|        break;
 1173|    202|    case MFF_VLAN_VID:
  ------------------
  |  Branch (1173:5): [True: 202, False: 74.7k]
  ------------------
 1174|    202|        match_set_vlan_vid(match, value->be16);
 1175|    202|        break;
 1176|       |
 1177|    687|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (1177:5): [True: 687, False: 74.2k]
  ------------------
 1178|  1.05k|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (1178:5): [True: 370, False: 74.5k]
  ------------------
 1179|  1.05k|        match_set_dl_vlan_pcp(match, value->u8, 0);
 1180|  1.05k|        break;
 1181|       |
 1182|    270|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (1182:5): [True: 270, False: 74.6k]
  ------------------
 1183|    270|        match_set_mpls_label(match, 0, value->be32);
 1184|    270|        break;
 1185|       |
 1186|    374|    case MFF_MPLS_TC:
  ------------------
  |  Branch (1186:5): [True: 374, False: 74.5k]
  ------------------
 1187|    374|        match_set_mpls_tc(match, 0, value->u8);
 1188|    374|        break;
 1189|       |
 1190|    281|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (1190:5): [True: 281, False: 74.6k]
  ------------------
 1191|    281|        match_set_mpls_bos(match, 0, value->u8);
 1192|    281|        break;
 1193|       |
 1194|    392|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (1194:5): [True: 392, False: 74.5k]
  ------------------
 1195|    392|        match_set_mpls_ttl(match, 0, value->u8);
 1196|    392|        break;
 1197|       |
 1198|    366|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (1198:5): [True: 366, False: 74.5k]
  ------------------
 1199|    366|        match_set_nw_src(match, value->be32);
 1200|    366|        break;
 1201|       |
 1202|    514|    case MFF_IPV4_DST:
  ------------------
  |  Branch (1202:5): [True: 514, False: 74.4k]
  ------------------
 1203|    514|        match_set_nw_dst(match, value->be32);
 1204|    514|        break;
 1205|       |
 1206|    516|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (1206:5): [True: 516, False: 74.4k]
  ------------------
 1207|    516|        match_set_ipv6_src(match, &value->ipv6);
 1208|    516|        break;
 1209|       |
 1210|    257|    case MFF_IPV6_DST:
  ------------------
  |  Branch (1210:5): [True: 257, False: 74.7k]
  ------------------
 1211|    257|        match_set_ipv6_dst(match, &value->ipv6);
 1212|    257|        break;
 1213|       |
 1214|    452|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (1214:5): [True: 452, False: 74.5k]
  ------------------
 1215|    452|        match_set_ipv6_label(match, value->be32);
 1216|    452|        break;
 1217|       |
 1218|    216|    case MFF_IP_PROTO:
  ------------------
  |  Branch (1218:5): [True: 216, False: 74.7k]
  ------------------
 1219|    216|        match_set_nw_proto(match, value->u8);
 1220|    216|        break;
 1221|       |
 1222|    484|    case MFF_IP_DSCP:
  ------------------
  |  Branch (1222:5): [True: 484, False: 74.4k]
  ------------------
 1223|    484|        match_set_nw_dscp(match, value->u8);
 1224|    484|        break;
 1225|       |
 1226|    253|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (1226:5): [True: 253, False: 74.7k]
  ------------------
 1227|    253|        match_set_nw_dscp(match, value->u8 << 2);
 1228|    253|        break;
 1229|       |
 1230|    200|    case MFF_IP_ECN:
  ------------------
  |  Branch (1230:5): [True: 200, False: 74.7k]
  ------------------
 1231|    200|        match_set_nw_ecn(match, value->u8);
 1232|    200|        break;
 1233|       |
 1234|    239|    case MFF_IP_TTL:
  ------------------
  |  Branch (1234:5): [True: 239, False: 74.7k]
  ------------------
 1235|    239|        match_set_nw_ttl(match, value->u8);
 1236|    239|        break;
 1237|       |
 1238|    317|    case MFF_IP_FRAG:
  ------------------
  |  Branch (1238:5): [True: 317, False: 74.6k]
  ------------------
 1239|    317|        match_set_nw_frag(match, value->u8);
 1240|    317|        break;
 1241|       |
 1242|    293|    case MFF_ARP_OP:
  ------------------
  |  Branch (1242:5): [True: 293, False: 74.6k]
  ------------------
 1243|    293|        match_set_nw_proto(match, ntohs(value->be16));
 1244|    293|        break;
 1245|       |
 1246|    257|    case MFF_ARP_SPA:
  ------------------
  |  Branch (1246:5): [True: 257, False: 74.7k]
  ------------------
 1247|    257|        match_set_nw_src(match, value->be32);
 1248|    257|        break;
 1249|       |
 1250|    194|    case MFF_ARP_TPA:
  ------------------
  |  Branch (1250:5): [True: 194, False: 74.7k]
  ------------------
 1251|    194|        match_set_nw_dst(match, value->be32);
 1252|    194|        break;
 1253|       |
 1254|    210|    case MFF_ARP_SHA:
  ------------------
  |  Branch (1254:5): [True: 210, False: 74.7k]
  ------------------
 1255|    404|    case MFF_ND_SLL:
  ------------------
  |  Branch (1255:5): [True: 194, False: 74.7k]
  ------------------
 1256|    404|        match_set_arp_sha(match, value->mac);
 1257|    404|        break;
 1258|       |
 1259|    258|    case MFF_ARP_THA:
  ------------------
  |  Branch (1259:5): [True: 258, False: 74.7k]
  ------------------
 1260|    453|    case MFF_ND_TLL:
  ------------------
  |  Branch (1260:5): [True: 195, False: 74.7k]
  ------------------
 1261|    453|        match_set_arp_tha(match, value->mac);
 1262|    453|        break;
 1263|       |
 1264|    460|    case MFF_TCP_SRC:
  ------------------
  |  Branch (1264:5): [True: 460, False: 74.4k]
  ------------------
 1265|    784|    case MFF_UDP_SRC:
  ------------------
  |  Branch (1265:5): [True: 324, False: 74.6k]
  ------------------
 1266|  1.25k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (1266:5): [True: 475, False: 74.4k]
  ------------------
 1267|  1.25k|        match_set_tp_src(match, value->be16);
 1268|  1.25k|        break;
 1269|       |
 1270|    339|    case MFF_TCP_DST:
  ------------------
  |  Branch (1270:5): [True: 339, False: 74.6k]
  ------------------
 1271|    621|    case MFF_UDP_DST:
  ------------------
  |  Branch (1271:5): [True: 282, False: 74.6k]
  ------------------
 1272|    839|    case MFF_SCTP_DST:
  ------------------
  |  Branch (1272:5): [True: 218, False: 74.7k]
  ------------------
 1273|    839|        match_set_tp_dst(match, value->be16);
 1274|    839|        break;
 1275|       |
 1276|    289|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (1276:5): [True: 289, False: 74.6k]
  ------------------
 1277|    289|        match_set_tcp_flags(match, value->be16);
 1278|    289|        break;
 1279|       |
 1280|    255|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (1280:5): [True: 255, False: 74.7k]
  ------------------
 1281|    458|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (1281:5): [True: 203, False: 74.7k]
  ------------------
 1282|    458|        match_set_icmp_type(match, value->u8);
 1283|    458|        break;
 1284|       |
 1285|    290|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (1285:5): [True: 290, False: 74.6k]
  ------------------
 1286|    511|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (1286:5): [True: 221, False: 74.7k]
  ------------------
 1287|    511|        match_set_icmp_code(match, value->u8);
 1288|    511|        break;
 1289|       |
 1290|    197|    case MFF_ND_TARGET:
  ------------------
  |  Branch (1290:5): [True: 197, False: 74.7k]
  ------------------
 1291|    197|        match_set_nd_target(match, &value->ipv6);
 1292|    197|        break;
 1293|       |
 1294|      0|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (1294:5): [True: 0, False: 74.9k]
  ------------------
 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.9k]
  ------------------
 1299|      0|        match_set_nd_options_type(match, value->u8);
 1300|      0|        break;
 1301|       |
 1302|    237|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (1302:5): [True: 237, False: 74.7k]
  ------------------
 1303|    237|        MATCH_SET_FIELD_UINT8(match, nsh.flags, value->u8);
  ------------------
  |  |   56|    237|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    237|    do {                                                      \
  |  |  |  |   51|    237|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    237|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    237|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 237]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1304|    237|        break;
 1305|    295|    case MFF_NSH_TTL:
  ------------------
  |  Branch (1305:5): [True: 295, False: 74.6k]
  ------------------
 1306|    295|        MATCH_SET_FIELD_UINT8(match, nsh.ttl, value->u8);
  ------------------
  |  |   56|    295|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    295|    do {                                                      \
  |  |  |  |   51|    295|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    295|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    295|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 295]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1307|    295|        break;
 1308|    195|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (1308:5): [True: 195, False: 74.7k]
  ------------------
 1309|    195|        MATCH_SET_FIELD_UINT8(match, nsh.mdtype, value->u8);
  ------------------
  |  |   56|    195|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    195|    do {                                                      \
  |  |  |  |   51|    195|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    195|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    195|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 195]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1310|    195|        break;
 1311|    209|    case MFF_NSH_NP:
  ------------------
  |  Branch (1311:5): [True: 209, False: 74.7k]
  ------------------
 1312|    209|        MATCH_SET_FIELD_UINT8(match, nsh.np, value->u8);
  ------------------
  |  |   56|    209|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    209|    do {                                                      \
  |  |  |  |   51|    209|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    209|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    209|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 209]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1313|    209|        break;
 1314|    759|    case MFF_NSH_SPI:
  ------------------
  |  Branch (1314:5): [True: 759, False: 74.2k]
  ------------------
 1315|    759|        match->wc.masks.nsh.path_hdr |= htonl(NSH_SPI_MASK);
 1316|    759|        nsh_path_hdr_set_spi(&match->flow.nsh.path_hdr, value->be32);
 1317|    759|        break;
 1318|    405|    case MFF_NSH_SI:
  ------------------
  |  Branch (1318:5): [True: 405, False: 74.5k]
  ------------------
 1319|    405|        match->wc.masks.nsh.path_hdr |= htonl(NSH_SI_MASK);
 1320|    405|        nsh_path_hdr_set_si(&match->flow.nsh.path_hdr, value->u8);
 1321|    405|        break;
 1322|    807|    case MFF_NSH_C1:
  ------------------
  |  Branch (1322:5): [True: 807, False: 74.1k]
  ------------------
 1323|  1.27k|    case MFF_NSH_C2:
  ------------------
  |  Branch (1323:5): [True: 470, False: 74.4k]
  ------------------
 1324|  1.96k|    case MFF_NSH_C3:
  ------------------
  |  Branch (1324:5): [True: 686, False: 74.2k]
  ------------------
 1325|  2.35k|    case MFF_NSH_C4:
  ------------------
  |  Branch (1325:5): [True: 389, False: 74.5k]
  ------------------
 1326|  2.35k|        MATCH_SET_FIELD_BE32(match, nsh.context[mf->id - MFF_NSH_C1],
  ------------------
  |  |   59|  2.35k|    MATCH_SET_FIELD_MASKED(match, field, value, OVS_BE32_MAX)
  |  |  ------------------
  |  |  |  |   50|  2.35k|    do {                                                      \
  |  |  |  |   51|  2.35k|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|  2.35k|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|  2.35k|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 2.35k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1327|  2.35k|                             value->be32);
 1328|  2.35k|        break;
 1329|       |
 1330|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (1330:5): [True: 0, False: 74.9k]
  ------------------
 1331|      0|    default:
  ------------------
  |  Branch (1331:5): [True: 0, False: 74.9k]
  ------------------
 1332|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 1333|  74.9k|    }
 1334|  74.9k|}
mf_field_len:
 1403|  55.3k|{
 1404|  55.3k|    int len, mask_len;
 1405|  55.3k|    bool is_masked = mask && !is_all_ones(mask, mf->n_bytes);
  ------------------
  |  Branch (1405:22): [True: 26.6k, False: 28.6k]
  |  Branch (1405:30): [True: 23.8k, False: 2.82k]
  ------------------
 1406|       |
 1407|  55.3k|    len = field_len(mf, value);
 1408|  55.3k|    if (is_masked) {
  ------------------
  |  Branch (1408:9): [True: 23.8k, False: 31.4k]
  ------------------
 1409|  23.8k|        mask_len = field_len(mf, mask);
 1410|  23.8k|        len = MAX(len, mask_len);
  ------------------
  |  |   95|  23.8k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 417, False: 23.4k]
  |  |  ------------------
  ------------------
 1411|  23.8k|    }
 1412|       |
 1413|  55.3k|    if (is_masked_) {
  ------------------
  |  Branch (1413:9): [True: 55.3k, False: 0]
  ------------------
 1414|  55.3k|        *is_masked_ = is_masked;
 1415|  55.3k|    }
 1416|       |
 1417|  55.3k|    return len;
 1418|  55.3k|}
mf_is_tun_metadata:
 1897|  43.6k|{
 1898|  43.6k|    return mf->id >= MFF_TUN_METADATA0 &&
  ------------------
  |  Branch (1898:12): [True: 40.3k, False: 3.28k]
  ------------------
 1899|  40.3k|           mf->id < MFF_TUN_METADATA0 + TUN_METADATA_NUM_OPTS;
  ------------------
  |  |   26|  84.0k|#define TUN_METADATA_NUM_OPTS 64
  ------------------
  |  Branch (1899:12): [True: 314, False: 40.0k]
  ------------------
 1900|  43.6k|}
mf_set_wild:
 2162|  43.3k|{
 2163|  43.3k|    if (err_str) {
  ------------------
  |  Branch (2163:9): [True: 43.3k, False: 0]
  ------------------
 2164|  43.3k|        *err_str = NULL;
 2165|  43.3k|    }
 2166|       |
 2167|  43.3k|    switch (mf->id) {
 2168|    194|    case MFF_DP_HASH:
  ------------------
  |  Branch (2168:5): [True: 194, False: 43.1k]
  ------------------
 2169|    194|        match->flow.dp_hash = 0;
 2170|    194|        match->wc.masks.dp_hash = 0;
 2171|    194|        break;
 2172|    221|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (2172:5): [True: 221, False: 43.1k]
  ------------------
 2173|    221|        match->flow.recirc_id = 0;
 2174|    221|        match->wc.masks.recirc_id = 0;
 2175|    221|        break;
 2176|    153|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (2176:5): [True: 153, False: 43.2k]
  ------------------
 2177|    153|        match->flow.packet_type = 0;
 2178|    153|        match->wc.masks.packet_type = 0;
 2179|    153|        break;
 2180|    224|    case MFF_CONJ_ID:
  ------------------
  |  Branch (2180:5): [True: 224, False: 43.1k]
  ------------------
 2181|    224|        match->flow.conj_id = 0;
 2182|    224|        match->wc.masks.conj_id = 0;
 2183|    224|        break;
 2184|    327|    case MFF_TUN_ID:
  ------------------
  |  Branch (2184:5): [True: 327, False: 43.0k]
  ------------------
 2185|    327|        match_set_tun_id_masked(match, htonll(0), htonll(0));
 2186|    327|        break;
 2187|    194|    case MFF_TUN_SRC:
  ------------------
  |  Branch (2187:5): [True: 194, False: 43.1k]
  ------------------
 2188|    194|        match_set_tun_src_masked(match, htonl(0), htonl(0));
 2189|    194|        break;
 2190|    194|    case MFF_TUN_DST:
  ------------------
  |  Branch (2190:5): [True: 194, False: 43.1k]
  ------------------
 2191|    194|        match_set_tun_dst_masked(match, htonl(0), htonl(0));
 2192|    194|        break;
 2193|     66|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (2193:5): [True: 66, False: 43.3k]
  ------------------
 2194|     66|        memset(&match->wc.masks.tunnel.ipv6_src, 0,
 2195|     66|               sizeof match->wc.masks.tunnel.ipv6_src);
 2196|     66|        memset(&match->flow.tunnel.ipv6_src, 0,
 2197|     66|               sizeof match->flow.tunnel.ipv6_src);
 2198|     66|        break;
 2199|     66|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (2199:5): [True: 66, False: 43.3k]
  ------------------
 2200|     66|        memset(&match->wc.masks.tunnel.ipv6_dst, 0,
 2201|     66|               sizeof match->wc.masks.tunnel.ipv6_dst);
 2202|     66|        memset(&match->flow.tunnel.ipv6_dst, 0,
 2203|     66|               sizeof match->flow.tunnel.ipv6_dst);
 2204|     66|        break;
 2205|    260|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (2205:5): [True: 260, False: 43.1k]
  ------------------
 2206|    260|        match_set_tun_flags_masked(match, 0, 0);
 2207|    260|        break;
 2208|    404|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (2208:5): [True: 404, False: 42.9k]
  ------------------
 2209|    404|        match_set_tun_gbp_id_masked(match, 0, 0);
 2210|    404|        break;
 2211|    198|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (2211:5): [True: 198, False: 43.1k]
  ------------------
 2212|    198|        match_set_tun_gbp_flags_masked(match, 0, 0);
 2213|    198|        break;
 2214|    300|    case MFF_TUN_TOS:
  ------------------
  |  Branch (2214:5): [True: 300, False: 43.0k]
  ------------------
 2215|    300|        match_set_tun_tos_masked(match, 0, 0);
 2216|    300|        break;
 2217|    252|    case MFF_TUN_TTL:
  ------------------
  |  Branch (2217:5): [True: 252, False: 43.1k]
  ------------------
 2218|    252|        match_set_tun_ttl_masked(match, 0, 0);
 2219|    252|        break;
 2220|      0|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (2220:5): [True: 0, False: 43.3k]
  ------------------
 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: 43.3k]
  ------------------
 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: 43.3k]
  ------------------
 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: 43.3k]
  ------------------
 2230|      0|        match_set_tun_erspan_hwid_masked(match, 0, 0);
 2231|      0|        break;
 2232|    234|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (2232:5): [True: 234, False: 43.1k]
  ------------------
 2233|    234|        match_set_tun_gtpu_flags_masked(match, 0, 0);
 2234|    234|        break;
 2235|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (2235:5): [True: 0, False: 43.3k]
  ------------------
 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: 43.3k]
  |  |  |  Branch (2110:29): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2111|      0|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2111:29): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2112|      0|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2112:29): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2113|      0|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2113:29): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2114|      0|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2114:29): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2115|      0|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2115:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2116|      0|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2116:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2117|      0|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2117:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2118|      0|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2118:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2119|      0|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2119:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2120|      0|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2120:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2121|      0|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2121:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2122|      0|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2122:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2123|      0|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2123:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2124|      0|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2124:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2125|      0|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2125:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2126|      0|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2126:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2127|      0|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2127:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2128|      0|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2128:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2129|      0|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2129:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2130|      0|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2130:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2131|      0|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2131:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2132|      0|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2132:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2133|      0|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2133:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2134|      0|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2134:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2135|      0|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2135:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2136|      0|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2136:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2137|      0|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2137:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2138|      0|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2138:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2139|      0|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2139:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2140|      0|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 0, False: 43.3k]
  |  |  |  Branch (2140:30): [True: 0, False: 43.3k]
  |  |  ------------------
  |  | 2141|      0|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 0, False: 43.3k]
  |  |  ------------------
  ------------------
 2239|      0|        tun_metadata_set_match(mf, NULL, NULL, match, err_str);
 2240|      0|        break;
 2241|       |
 2242|    195|    case MFF_METADATA:
  ------------------
  |  Branch (2242:5): [True: 195, False: 43.1k]
  ------------------
 2243|    195|        match_set_metadata_masked(match, htonll(0), htonll(0));
 2244|    195|        break;
 2245|       |
 2246|    194|    case MFF_IN_PORT:
  ------------------
  |  Branch (2246:5): [True: 194, False: 43.1k]
  ------------------
 2247|    194|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (2247:5): [True: 0, False: 43.3k]
  ------------------
 2248|    194|        match->flow.in_port.ofp_port = 0;
 2249|    194|        match->wc.masks.in_port.ofp_port = 0;
 2250|    194|        break;
 2251|     66|    case MFF_ACTSET_OUTPUT:
  ------------------
  |  Branch (2251:5): [True: 66, False: 43.3k]
  ------------------
 2252|     66|        match->flow.actset_output = 0;
 2253|     66|        match->wc.masks.actset_output = 0;
 2254|     66|        break;
 2255|       |
 2256|      0|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (2256:5): [True: 0, False: 43.3k]
  ------------------
 2257|      0|        match->flow.skb_priority = 0;
 2258|      0|        match->wc.masks.skb_priority = 0;
 2259|      0|        break;
 2260|       |
 2261|     67|    case MFF_PKT_MARK:
  ------------------
  |  Branch (2261:5): [True: 67, False: 43.3k]
  ------------------
 2262|     67|        match->flow.pkt_mark = 0;
 2263|     67|        match->wc.masks.pkt_mark = 0;
 2264|     67|        break;
 2265|       |
 2266|    400|    case MFF_CT_STATE:
  ------------------
  |  Branch (2266:5): [True: 400, False: 42.9k]
  ------------------
 2267|    400|        match->flow.ct_state = 0;
 2268|    400|        match->wc.masks.ct_state = 0;
 2269|    400|        break;
 2270|       |
 2271|    216|    case MFF_CT_ZONE:
  ------------------
  |  Branch (2271:5): [True: 216, False: 43.1k]
  ------------------
 2272|    216|        match->flow.ct_zone = 0;
 2273|    216|        match->wc.masks.ct_zone = 0;
 2274|    216|        break;
 2275|       |
 2276|     78|    case MFF_CT_MARK:
  ------------------
  |  Branch (2276:5): [True: 78, False: 43.2k]
  ------------------
 2277|     78|        match->flow.ct_mark = 0;
 2278|     78|        match->wc.masks.ct_mark = 0;
 2279|     78|        break;
 2280|       |
 2281|    196|    case MFF_CT_LABEL:
  ------------------
  |  Branch (2281:5): [True: 196, False: 43.1k]
  ------------------
 2282|    196|        memset(&match->flow.ct_label, 0, sizeof(match->flow.ct_label));
 2283|    196|        memset(&match->wc.masks.ct_label, 0, sizeof(match->wc.masks.ct_label));
 2284|    196|        break;
 2285|       |
 2286|    271|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (2286:5): [True: 271, False: 43.0k]
  ------------------
 2287|    271|        match->flow.ct_nw_proto = 0;
 2288|    271|        match->wc.masks.ct_nw_proto = 0;
 2289|    271|        break;
 2290|       |
 2291|    194|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (2291:5): [True: 194, False: 43.1k]
  ------------------
 2292|    194|        match->flow.ct_nw_src = 0;
 2293|    194|        match->wc.masks.ct_nw_src = 0;
 2294|    194|        break;
 2295|       |
 2296|    333|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (2296:5): [True: 333, False: 43.0k]
  ------------------
 2297|    333|        match->flow.ct_nw_dst = 0;
 2298|    333|        match->wc.masks.ct_nw_dst = 0;
 2299|    333|        break;
 2300|       |
 2301|    194|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (2301:5): [True: 194, False: 43.1k]
  ------------------
 2302|    194|        memset(&match->flow.ct_ipv6_src, 0, sizeof(match->flow.ct_ipv6_src));
 2303|    194|        WC_UNMASK_FIELD(&match->wc, ct_ipv6_src);
  ------------------
  |  |  205|    194|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
 2304|    194|        break;
 2305|       |
 2306|     70|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (2306:5): [True: 70, False: 43.3k]
  ------------------
 2307|     70|        memset(&match->flow.ct_ipv6_dst, 0, sizeof(match->flow.ct_ipv6_dst));
 2308|     70|        WC_UNMASK_FIELD(&match->wc, ct_ipv6_dst);
  ------------------
  |  |  205|     70|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
 2309|     70|        break;
 2310|       |
 2311|     66|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (2311:5): [True: 66, False: 43.3k]
  ------------------
 2312|     66|        match->flow.ct_tp_src = 0;
 2313|     66|        match->wc.masks.ct_tp_src = 0;
 2314|     66|        break;
 2315|       |
 2316|    195|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (2316:5): [True: 195, False: 43.1k]
  ------------------
 2317|    195|        match->flow.ct_tp_dst = 0;
 2318|    195|        match->wc.masks.ct_tp_dst = 0;
 2319|    195|        break;
 2320|       |
 2321|  12.8k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  3.24k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 925, False: 42.4k]
  |  |  |  Branch (2065:20): [True: 865, False: 42.5k]
  |  |  |  Branch (2065:35): [True: 1.04k, False: 42.3k]
  |  |  |  Branch (2065:50): [True: 417, False: 42.9k]
  |  |  ------------------
  |  | 2066|  5.00k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 472, False: 42.8k]
  |  |  |  Branch (2066:20): [True: 381, False: 42.9k]
  |  |  |  Branch (2066:35): [True: 499, False: 42.8k]
  |  |  |  Branch (2066:50): [True: 408, False: 42.9k]
  |  |  ------------------
  |  | 2067|  6.58k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 495, False: 42.8k]
  |  |  |  Branch (2067:20): [True: 346, False: 43.0k]
  |  |  |  Branch (2067:35): [True: 313, False: 43.0k]
  |  |  |  Branch (2067:51): [True: 423, False: 42.9k]
  |  |  ------------------
  |  | 2068|  8.28k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 351, False: 43.0k]
  |  |  |  Branch (2068:21): [True: 281, False: 43.0k]
  |  |  |  Branch (2068:37): [True: 626, False: 42.7k]
  |  |  |  Branch (2068:53): [True: 436, False: 42.9k]
  |  |  ------------------
  |  | 2069|  9.13k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 242, False: 43.1k]
  |  |  |  Branch (2069:21): [True: 204, False: 43.1k]
  |  |  |  Branch (2069:37): [True: 211, False: 43.1k]
  |  |  |  Branch (2069:53): [True: 201, False: 43.1k]
  |  |  ------------------
  |  | 2070|  10.3k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 377, False: 42.9k]
  |  |  |  Branch (2070:21): [True: 271, False: 43.0k]
  |  |  |  Branch (2070:37): [True: 272, False: 43.0k]
  |  |  |  Branch (2070:53): [True: 279, False: 43.0k]
  |  |  ------------------
  |  | 2071|  11.6k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 278, False: 43.0k]
  |  |  |  Branch (2071:21): [True: 210, False: 43.1k]
  |  |  |  Branch (2071:37): [True: 282, False: 43.0k]
  |  |  |  Branch (2071:53): [True: 494, False: 42.8k]
  |  |  ------------------
  |  | 2072|  12.8k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 261, False: 43.1k]
  |  |  |  Branch (2072:21): [True: 353, False: 43.0k]
  |  |  |  Branch (2072:37): [True: 326, False: 43.0k]
  |  |  ------------------
  ------------------
 2322|  12.8k|        match_set_reg_masked(match, mf->id - MFF_REG0, 0, 0);
 2323|  12.8k|        break;
 2324|       |
 2325|  7.49k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  2.52k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 577, False: 42.7k]
  |  |  |  Branch (2081:21): [True: 913, False: 42.4k]
  |  |  |  Branch (2081:37): [True: 470, False: 42.9k]
  |  |  |  Branch (2081:53): [True: 568, False: 42.8k]
  |  |  ------------------
  |  | 2082|  4.31k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 381, False: 42.9k]
  |  |  |  Branch (2082:21): [True: 338, False: 43.0k]
  |  |  |  Branch (2082:37): [True: 736, False: 42.6k]
  |  |  |  Branch (2082:53): [True: 334, False: 43.0k]
  |  |  ------------------
  |  | 2083|  6.01k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 424, False: 42.9k]
  |  |  |  Branch (2083:21): [True: 574, False: 42.7k]
  |  |  |  Branch (2083:37): [True: 275, False: 43.0k]
  |  |  |  Branch (2083:54): [True: 424, False: 42.9k]
  |  |  ------------------
  |  | 2084|  7.49k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 367, False: 43.0k]
  |  |  |  Branch (2084:22): [True: 576, False: 42.7k]
  |  |  |  Branch (2084:39): [True: 205, False: 43.1k]
  |  |  ------------------
  ------------------
 2326|  7.49k|        match_set_xreg_masked(match, mf->id - MFF_XREG0, 0, 0);
 2327|  7.49k|        break;
 2328|       |
 2329|  3.00k|    CASE_MFF_XXREGS: {
  ------------------
  |  | 2093|  1.64k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 371, False: 42.9k]
  |  |  |  Branch (2093:22): [True: 405, False: 42.9k]
  |  |  |  Branch (2093:39): [True: 447, False: 42.9k]
  |  |  |  Branch (2093:56): [True: 420, False: 42.9k]
  |  |  ------------------
  |  | 2094|  3.00k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 328, False: 43.0k]
  |  |  |  Branch (2094:22): [True: 317, False: 43.0k]
  |  |  |  Branch (2094:39): [True: 502, False: 42.8k]
  |  |  ------------------
  ------------------
 2330|  3.00k|        match_set_xxreg_masked(match, mf->id - MFF_XXREG0, OVS_U128_ZERO,
  ------------------
  |  |  130|  3.00k|#define OVS_U128_ZERO OVS_U128_MIN
  ------------------
 2331|  3.00k|                               OVS_U128_ZERO);
  ------------------
  |  |  130|  3.00k|#define OVS_U128_ZERO OVS_U128_MIN
  ------------------
 2332|  3.00k|        break;
 2333|  11.0k|    }
 2334|       |
 2335|    111|    case MFF_ETH_SRC:
  ------------------
  |  Branch (2335:5): [True: 111, False: 43.2k]
  ------------------
 2336|    111|        match->flow.dl_src = eth_addr_zero;
 2337|    111|        match->wc.masks.dl_src = eth_addr_zero;
 2338|    111|        break;
 2339|       |
 2340|    194|    case MFF_ETH_DST:
  ------------------
  |  Branch (2340:5): [True: 194, False: 43.1k]
  ------------------
 2341|    194|        match->flow.dl_dst = eth_addr_zero;
 2342|    194|        match->wc.masks.dl_dst = eth_addr_zero;
 2343|    194|        break;
 2344|       |
 2345|    198|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (2345:5): [True: 198, False: 43.1k]
  ------------------
 2346|    198|        match->flow.dl_type = htons(0);
 2347|    198|        match->wc.masks.dl_type = htons(0);
 2348|    198|        break;
 2349|       |
 2350|    198|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (2350:5): [True: 198, False: 43.1k]
  ------------------
 2351|    198|        match_set_dl_tci_masked(match, htons(0), htons(0));
 2352|    198|        break;
 2353|       |
 2354|    242|    case MFF_DL_VLAN:
  ------------------
  |  Branch (2354:5): [True: 242, False: 43.1k]
  ------------------
 2355|    619|    case MFF_VLAN_VID:
  ------------------
  |  Branch (2355:5): [True: 377, False: 42.9k]
  ------------------
 2356|    619|        match_set_any_vid(match);
 2357|    619|        break;
 2358|       |
 2359|    495|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (2359:5): [True: 495, False: 42.8k]
  ------------------
 2360|    902|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (2360:5): [True: 407, False: 42.9k]
  ------------------
 2361|    902|        match_set_any_pcp(match);
 2362|    902|        break;
 2363|       |
 2364|    417|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (2364:5): [True: 417, False: 42.9k]
  ------------------
 2365|    417|        match_set_any_mpls_label(match, 0);
 2366|    417|        break;
 2367|       |
 2368|    299|    case MFF_MPLS_TC:
  ------------------
  |  Branch (2368:5): [True: 299, False: 43.0k]
  ------------------
 2369|    299|        match_set_any_mpls_tc(match, 0);
 2370|    299|        break;
 2371|       |
 2372|    288|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (2372:5): [True: 288, False: 43.0k]
  ------------------
 2373|    288|        match_set_any_mpls_bos(match, 0);
 2374|    288|        break;
 2375|       |
 2376|    314|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (2376:5): [True: 314, False: 43.0k]
  ------------------
 2377|    314|        match_set_any_mpls_ttl(match, 0);
 2378|    314|        break;
 2379|       |
 2380|    195|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (2380:5): [True: 195, False: 43.1k]
  ------------------
 2381|    389|    case MFF_ARP_SPA:
  ------------------
  |  Branch (2381:5): [True: 194, False: 43.1k]
  ------------------
 2382|    389|        match_set_nw_src_masked(match, htonl(0), htonl(0));
 2383|    389|        break;
 2384|       |
 2385|    497|    case MFF_IPV4_DST:
  ------------------
  |  Branch (2385:5): [True: 497, False: 42.8k]
  ------------------
 2386|    691|    case MFF_ARP_TPA:
  ------------------
  |  Branch (2386:5): [True: 194, False: 43.1k]
  ------------------
 2387|    691|        match_set_nw_dst_masked(match, htonl(0), htonl(0));
 2388|    691|        break;
 2389|       |
 2390|    289|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (2390:5): [True: 289, False: 43.0k]
  ------------------
 2391|    289|        memset(&match->wc.masks.ipv6_src, 0, sizeof match->wc.masks.ipv6_src);
 2392|    289|        memset(&match->flow.ipv6_src, 0, sizeof match->flow.ipv6_src);
 2393|    289|        break;
 2394|       |
 2395|    346|    case MFF_IPV6_DST:
  ------------------
  |  Branch (2395:5): [True: 346, False: 43.0k]
  ------------------
 2396|    346|        memset(&match->wc.masks.ipv6_dst, 0, sizeof match->wc.masks.ipv6_dst);
 2397|    346|        memset(&match->flow.ipv6_dst, 0, sizeof match->flow.ipv6_dst);
 2398|    346|        break;
 2399|       |
 2400|    466|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (2400:5): [True: 466, False: 42.9k]
  ------------------
 2401|    466|        match->wc.masks.ipv6_label = htonl(0);
 2402|    466|        match->flow.ipv6_label = htonl(0);
 2403|    466|        break;
 2404|       |
 2405|     81|    case MFF_IP_PROTO:
  ------------------
  |  Branch (2405:5): [True: 81, False: 43.2k]
  ------------------
 2406|     81|        match->wc.masks.nw_proto = 0;
 2407|     81|        match->flow.nw_proto = 0;
 2408|     81|        break;
 2409|       |
 2410|    269|    case MFF_IP_DSCP:
  ------------------
  |  Branch (2410:5): [True: 269, False: 43.1k]
  ------------------
 2411|    487|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (2411:5): [True: 218, False: 43.1k]
  ------------------
 2412|    487|        match->wc.masks.nw_tos &= ~IP_DSCP_MASK;
  ------------------
  |  |  724|    487|#define IP_DSCP_MASK 0xfc
  ------------------
 2413|    487|        match->flow.nw_tos &= ~IP_DSCP_MASK;
  ------------------
  |  |  724|    487|#define IP_DSCP_MASK 0xfc
  ------------------
 2414|    487|        break;
 2415|       |
 2416|    198|    case MFF_IP_ECN:
  ------------------
  |  Branch (2416:5): [True: 198, False: 43.1k]
  ------------------
 2417|    198|        match->wc.masks.nw_tos &= ~IP_ECN_MASK;
  ------------------
  |  |  722|    198|#define IP_ECN_MASK 0x03
  ------------------
 2418|    198|        match->flow.nw_tos &= ~IP_ECN_MASK;
  ------------------
  |  |  722|    198|#define IP_ECN_MASK 0x03
  ------------------
 2419|    198|        break;
 2420|       |
 2421|    220|    case MFF_IP_TTL:
  ------------------
  |  Branch (2421:5): [True: 220, False: 43.1k]
  ------------------
 2422|    220|        match->wc.masks.nw_ttl = 0;
 2423|    220|        match->flow.nw_ttl = 0;
 2424|    220|        break;
 2425|       |
 2426|     66|    case MFF_IP_FRAG:
  ------------------
  |  Branch (2426:5): [True: 66, False: 43.3k]
  ------------------
 2427|     66|        match->wc.masks.nw_frag &= ~FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|     66|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|     66|#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|     66|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 2428|     66|        match->flow.nw_frag &= ~FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|     66|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|     66|#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|     66|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 2429|     66|        break;
 2430|       |
 2431|     82|    case MFF_ARP_OP:
  ------------------
  |  Branch (2431:5): [True: 82, False: 43.2k]
  ------------------
 2432|     82|        match->wc.masks.nw_proto = 0;
 2433|     82|        match->flow.nw_proto = 0;
 2434|     82|        break;
 2435|       |
 2436|    388|    case MFF_ARP_SHA:
  ------------------
  |  Branch (2436:5): [True: 388, False: 42.9k]
  ------------------
 2437|    582|    case MFF_ND_SLL:
  ------------------
  |  Branch (2437:5): [True: 194, False: 43.1k]
  ------------------
 2438|    582|        match->flow.arp_sha = eth_addr_zero;
 2439|    582|        match->wc.masks.arp_sha = eth_addr_zero;
 2440|    582|        break;
 2441|       |
 2442|    194|    case MFF_ARP_THA:
  ------------------
  |  Branch (2442:5): [True: 194, False: 43.1k]
  ------------------
 2443|    388|    case MFF_ND_TLL:
  ------------------
  |  Branch (2443:5): [True: 194, False: 43.1k]
  ------------------
 2444|    388|        match->flow.arp_tha = eth_addr_zero;
 2445|    388|        match->wc.masks.arp_tha = eth_addr_zero;
 2446|    388|        break;
 2447|       |
 2448|      0|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (2448:5): [True: 0, False: 43.3k]
  ------------------
 2449|      0|        match->wc.masks.igmp_group_ip4 = htonl(0);
 2450|      0|        match->flow.igmp_group_ip4 = htonl(0);
 2451|      0|        break;
 2452|       |
 2453|    353|    case MFF_TCP_SRC:
  ------------------
  |  Branch (2453:5): [True: 353, False: 43.0k]
  ------------------
 2454|    825|    case MFF_UDP_SRC:
  ------------------
  |  Branch (2454:5): [True: 472, False: 42.8k]
  ------------------
 2455|  1.09k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (2455:5): [True: 269, False: 43.1k]
  ------------------
 2456|  1.28k|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (2456:5): [True: 195, False: 43.1k]
  ------------------
 2457|  1.37k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (2457:5): [True: 83, False: 43.2k]
  ------------------
 2458|  1.37k|        match->wc.masks.tp_src = htons(0);
 2459|  1.37k|        match->flow.tp_src = htons(0);
 2460|  1.37k|        break;
 2461|       |
 2462|    427|    case MFF_TCP_DST:
  ------------------
  |  Branch (2462:5): [True: 427, False: 42.9k]
  ------------------
 2463|    871|    case MFF_UDP_DST:
  ------------------
  |  Branch (2463:5): [True: 444, False: 42.9k]
  ------------------
 2464|  1.08k|    case MFF_SCTP_DST:
  ------------------
  |  Branch (2464:5): [True: 211, False: 43.1k]
  ------------------
 2465|  1.20k|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (2465:5): [True: 127, False: 43.2k]
  ------------------
 2466|  1.41k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (2466:5): [True: 204, False: 43.1k]
  ------------------
 2467|  1.41k|        match->wc.masks.tp_dst = htons(0);
 2468|  1.41k|        match->flow.tp_dst = htons(0);
 2469|  1.41k|        break;
 2470|       |
 2471|    328|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (2471:5): [True: 328, False: 43.0k]
  ------------------
 2472|    328|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (2472:5): [True: 0, False: 43.3k]
  ------------------
 2473|    328|        match->wc.masks.tcp_flags = htons(0);
 2474|    328|        match->flow.tcp_flags = htons(0);
 2475|    328|        break;
 2476|       |
 2477|      0|    case MFF_ND_TARGET:
  ------------------
  |  Branch (2477:5): [True: 0, False: 43.3k]
  ------------------
 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|    194|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (2483:5): [True: 194, False: 43.1k]
  ------------------
 2484|    194|        MATCH_SET_FIELD_MASKED(match, nsh.flags, 0, 0);
  ------------------
  |  |   50|    194|    do {                                                      \
  |  |   51|    194|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    194|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    194|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 194]
  |  |  ------------------
  ------------------
 2485|    194|        break;
 2486|    334|    case MFF_NSH_TTL:
  ------------------
  |  Branch (2486:5): [True: 334, False: 43.0k]
  ------------------
 2487|    334|        MATCH_SET_FIELD_MASKED(match, nsh.ttl, 0, 0);
  ------------------
  |  |   50|    334|    do {                                                      \
  |  |   51|    334|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    334|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    334|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 334]
  |  |  ------------------
  ------------------
 2488|    334|        break;
 2489|    279|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (2489:5): [True: 279, False: 43.0k]
  ------------------
 2490|    279|        MATCH_SET_FIELD_MASKED(match, nsh.mdtype, 0, 0);
  ------------------
  |  |   50|    279|    do {                                                      \
  |  |   51|    279|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    279|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    279|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 279]
  |  |  ------------------
  ------------------
 2491|    279|        break;
 2492|    194|    case MFF_NSH_NP:
  ------------------
  |  Branch (2492:5): [True: 194, False: 43.1k]
  ------------------
 2493|    194|        MATCH_SET_FIELD_MASKED(match, nsh.np, 0, 0);
  ------------------
  |  |   50|    194|    do {                                                      \
  |  |   51|    194|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    194|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    194|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 194]
  |  |  ------------------
  ------------------
 2494|    194|        break;
 2495|    456|    case MFF_NSH_SPI:
  ------------------
  |  Branch (2495:5): [True: 456, False: 42.9k]
  ------------------
 2496|    456|        match->wc.masks.nsh.path_hdr &= ~htonl(NSH_SPI_MASK);
 2497|    456|        nsh_path_hdr_set_spi(&match->flow.nsh.path_hdr, htonl(0));
 2498|    456|        break;
 2499|    292|    case MFF_NSH_SI:
  ------------------
  |  Branch (2499:5): [True: 292, False: 43.0k]
  ------------------
 2500|    292|        match->wc.masks.nsh.path_hdr &= ~htonl(NSH_SI_MASK);
 2501|    292|        nsh_path_hdr_set_si(&match->flow.nsh.path_hdr, 0);
 2502|    292|        break;
 2503|    352|    case MFF_NSH_C1:
  ------------------
  |  Branch (2503:5): [True: 352, False: 43.0k]
  ------------------
 2504|    694|    case MFF_NSH_C2:
  ------------------
  |  Branch (2504:5): [True: 342, False: 43.0k]
  ------------------
 2505|    940|    case MFF_NSH_C3:
  ------------------
  |  Branch (2505:5): [True: 246, False: 43.1k]
  ------------------
 2506|  1.35k|    case MFF_NSH_C4:
  ------------------
  |  Branch (2506:5): [True: 418, False: 42.9k]
  ------------------
 2507|  1.35k|        MATCH_SET_FIELD_MASKED(match, nsh.context[mf->id - MFF_NSH_C1],
  ------------------
  |  |   50|  1.35k|    do {                                                      \
  |  |   51|  1.35k|        (match)->wc.masks.field = (msk);                      \
  |  |   52|  1.35k|        (match)->flow.field = (value) & (msk);                \
  |  |   53|  1.35k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 1.35k]
  |  |  ------------------
  ------------------
 2508|  1.35k|                               htonl(0), htonl(0));
 2509|  1.35k|        break;
 2510|       |
 2511|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (2511:5): [True: 0, False: 43.3k]
  ------------------
 2512|      0|    default:
  ------------------
  |  Branch (2512:5): [True: 0, False: 43.3k]
  ------------------
 2513|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 2514|  43.3k|    }
 2515|  43.3k|}
mf_set:
 2540|   176k|{
 2541|   176k|    if (!mask || is_all_ones(mask, mf->n_bytes)) {
  ------------------
  |  Branch (2541:9): [True: 0, False: 176k]
  |  Branch (2541:18): [True: 74.5k, False: 102k]
  ------------------
 2542|  74.5k|        mf_set_value(mf, value, match, err_str);
 2543|  74.5k|        return mf->usable_protocols_exact;
 2544|   102k|    } else if (is_all_zeros(mask, mf->n_bytes) && !mf_is_tun_metadata(mf)) {
  ------------------
  |  Branch (2544:16): [True: 43.6k, False: 58.3k]
  |  Branch (2544:51): [True: 43.3k, False: 314]
  ------------------
 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|  43.3k|        mf_set_wild(mf, match, err_str);
 2548|  43.3k|        return OFPUTIL_P_ANY;
  ------------------
  |  |  100|  43.3k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 2549|  43.3k|    }
 2550|       |
 2551|  58.7k|    if (err_str) {
  ------------------
  |  Branch (2551:9): [True: 42.5k, False: 16.1k]
  ------------------
 2552|  42.5k|        *err_str = NULL;
 2553|  42.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|  58.7k|    switch (mf->id) {
 2562|    206|    case MFF_CT_ZONE:
  ------------------
  |  Branch (2562:5): [True: 206, False: 58.4k]
  ------------------
 2563|    409|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (2563:5): [True: 203, False: 58.5k]
  ------------------
 2564|    640|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (2564:5): [True: 231, False: 58.4k]
  ------------------
 2565|    848|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (2565:5): [True: 208, False: 58.4k]
  ------------------
 2566|  1.04k|    case MFF_CONJ_ID:
  ------------------
  |  Branch (2566:5): [True: 196, False: 58.5k]
  ------------------
 2567|  1.30k|    case MFF_IN_PORT:
  ------------------
  |  Branch (2567:5): [True: 263, False: 58.4k]
  ------------------
 2568|  1.32k|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (2568:5): [True: 18, False: 58.6k]
  ------------------
 2569|  1.39k|    case MFF_ACTSET_OUTPUT:
  ------------------
  |  Branch (2569:5): [True: 67, False: 58.6k]
  ------------------
 2570|  1.39k|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (2570:5): [True: 0, False: 58.7k]
  ------------------
 2571|  1.66k|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (2571:5): [True: 275, False: 58.4k]
  ------------------
 2572|  1.92k|    case MFF_DL_VLAN:
  ------------------
  |  Branch (2572:5): [True: 258, False: 58.4k]
  ------------------
 2573|  2.36k|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (2573:5): [True: 439, False: 58.2k]
  ------------------
 2574|  2.74k|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (2574:5): [True: 383, False: 58.3k]
  ------------------
 2575|  3.04k|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (2575:5): [True: 293, False: 58.4k]
  ------------------
 2576|  3.29k|    case MFF_MPLS_TC:
  ------------------
  |  Branch (2576:5): [True: 258, False: 58.4k]
  ------------------
 2577|  3.55k|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (2577:5): [True: 258, False: 58.4k]
  ------------------
 2578|  3.63k|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (2578:5): [True: 77, False: 58.6k]
  ------------------
 2579|  3.89k|    case MFF_IP_PROTO:
  ------------------
  |  Branch (2579:5): [True: 259, False: 58.4k]
  ------------------
 2580|  4.10k|    case MFF_IP_TTL:
  ------------------
  |  Branch (2580:5): [True: 213, False: 58.4k]
  ------------------
 2581|  4.38k|    case MFF_IP_DSCP:
  ------------------
  |  Branch (2581:5): [True: 278, False: 58.4k]
  ------------------
 2582|  4.64k|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (2582:5): [True: 258, False: 58.4k]
  ------------------
 2583|  4.90k|    case MFF_IP_ECN:
  ------------------
  |  Branch (2583:5): [True: 260, False: 58.4k]
  ------------------
 2584|  5.15k|    case MFF_ARP_OP:
  ------------------
  |  Branch (2584:5): [True: 256, False: 58.4k]
  ------------------
 2585|  5.41k|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (2585:5): [True: 259, False: 58.4k]
  ------------------
 2586|  5.67k|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (2586:5): [True: 262, False: 58.4k]
  ------------------
 2587|  5.93k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (2587:5): [True: 261, False: 58.4k]
  ------------------
 2588|  6.18k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (2588:5): [True: 241, False: 58.4k]
  ------------------
 2589|  6.18k|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (2589:5): [True: 0, False: 58.7k]
  ------------------
 2590|  6.18k|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (2590:5): [True: 0, False: 58.7k]
  ------------------
 2591|  6.18k|        return OFPUTIL_P_NONE;
  ------------------
  |  |   53|  6.18k|#define OFPUTIL_P_NONE 0
  ------------------
 2592|       |
 2593|     96|    case MFF_DP_HASH:
  ------------------
  |  Branch (2593:5): [True: 96, False: 58.6k]
  ------------------
 2594|     96|        match_set_dp_hash_masked(match, ntohl(value->be32), ntohl(mask->be32));
 2595|     96|        break;
 2596|    325|    case MFF_TUN_ID:
  ------------------
  |  Branch (2596:5): [True: 325, False: 58.3k]
  ------------------
 2597|    325|        match_set_tun_id_masked(match, value->be64, mask->be64);
 2598|    325|        break;
 2599|     66|    case MFF_TUN_SRC:
  ------------------
  |  Branch (2599:5): [True: 66, False: 58.6k]
  ------------------
 2600|     66|        match_set_tun_src_masked(match, value->be32, mask->be32);
 2601|     66|        break;
 2602|    270|    case MFF_TUN_DST:
  ------------------
  |  Branch (2602:5): [True: 270, False: 58.4k]
  ------------------
 2603|    270|        match_set_tun_dst_masked(match, value->be32, mask->be32);
 2604|    270|        break;
 2605|    227|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (2605:5): [True: 227, False: 58.4k]
  ------------------
 2606|    227|        match_set_tun_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
 2607|    227|        break;
 2608|    199|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (2608:5): [True: 199, False: 58.5k]
  ------------------
 2609|    199|        match_set_tun_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
 2610|    199|        break;
 2611|    518|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (2611:5): [True: 518, False: 58.1k]
  ------------------
 2612|    518|        match_set_tun_flags_masked(match, ntohs(value->be16), ntohs(mask->be16));
 2613|    518|        break;
 2614|    264|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (2614:5): [True: 264, False: 58.4k]
  ------------------
 2615|    264|        match_set_tun_gbp_id_masked(match, value->be16, mask->be16);
 2616|    264|        break;
 2617|    262|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (2617:5): [True: 262, False: 58.4k]
  ------------------
 2618|    262|        match_set_tun_gbp_flags_masked(match, value->u8, mask->u8);
 2619|    262|        break;
 2620|    242|    case MFF_TUN_TTL:
  ------------------
  |  Branch (2620:5): [True: 242, False: 58.4k]
  ------------------
 2621|    242|        match_set_tun_ttl_masked(match, value->u8, mask->u8);
 2622|    242|        break;
 2623|  1.41k|    case MFF_TUN_TOS:
  ------------------
  |  Branch (2623:5): [True: 1.41k, False: 57.2k]
  ------------------
 2624|  1.41k|        match_set_tun_tos_masked(match, value->u8, mask->u8);
 2625|  1.41k|        break;
 2626|    469|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (2626:5): [True: 469, False: 58.2k]
  ------------------
 2627|    469|        match_set_tun_erspan_ver_masked(match, value->u8, mask->u8);
 2628|    469|        break;
 2629|    258|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (2629:5): [True: 258, False: 58.4k]
  ------------------
 2630|    258|        match_set_tun_erspan_idx_masked(match, ntohl(value->be32),
 2631|    258|                                        ntohl(mask->be32));
 2632|    258|        break;
 2633|    130|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (2633:5): [True: 130, False: 58.5k]
  ------------------
 2634|    130|        match_set_tun_erspan_dir_masked(match, value->u8, mask->u8);
 2635|    130|        break;
 2636|      0|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (2636:5): [True: 0, False: 58.7k]
  ------------------
 2637|      0|        match_set_tun_erspan_hwid_masked(match, value->u8, mask->u8);
 2638|      0|        break;
 2639|    277|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (2639:5): [True: 277, False: 58.4k]
  ------------------
 2640|    277|        match_set_tun_gtpu_flags_masked(match, value->u8, mask->u8);
 2641|    277|        break;
 2642|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (2642:5): [True: 0, False: 58.7k]
  ------------------
 2643|      0|        match_set_tun_gtpu_msgtype_masked(match, value->u8, mask->u8);
 2644|      0|        break;
 2645|  15.7k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|    580|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 323, False: 58.3k]
  |  |  |  Branch (2110:29): [True: 257, False: 58.4k]
  |  |  ------------------
  |  | 2111|  1.00k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 216, False: 58.4k]
  |  |  |  Branch (2111:29): [True: 213, False: 58.4k]
  |  |  ------------------
  |  | 2112|  1.56k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 338, False: 58.3k]
  |  |  |  Branch (2112:29): [True: 214, False: 58.4k]
  |  |  ------------------
  |  | 2113|  1.97k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 208, False: 58.4k]
  |  |  |  Branch (2113:29): [True: 201, False: 58.5k]
  |  |  ------------------
  |  | 2114|  2.42k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 253, False: 58.4k]
  |  |  |  Branch (2114:29): [True: 199, False: 58.5k]
  |  |  ------------------
  |  | 2115|  2.98k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 229, False: 58.4k]
  |  |  |  Branch (2115:30): [True: 331, False: 58.3k]
  |  |  ------------------
  |  | 2116|  3.49k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 305, False: 58.4k]
  |  |  |  Branch (2116:30): [True: 205, False: 58.5k]
  |  |  ------------------
  |  | 2117|  3.96k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 211, False: 58.4k]
  |  |  |  Branch (2117:30): [True: 263, False: 58.4k]
  |  |  ------------------
  |  | 2118|  4.56k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 401, False: 58.3k]
  |  |  |  Branch (2118:30): [True: 198, False: 58.5k]
  |  |  ------------------
  |  | 2119|  4.98k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 214, False: 58.4k]
  |  |  |  Branch (2119:30): [True: 202, False: 58.5k]
  |  |  ------------------
  |  | 2120|  5.69k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 336, False: 58.3k]
  |  |  |  Branch (2120:30): [True: 377, False: 58.3k]
  |  |  ------------------
  |  | 2121|  6.31k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 244, False: 58.4k]
  |  |  |  Branch (2121:30): [True: 375, False: 58.3k]
  |  |  ------------------
  |  | 2122|  6.89k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 280, False: 58.4k]
  |  |  |  Branch (2122:30): [True: 297, False: 58.4k]
  |  |  ------------------
  |  | 2123|  7.28k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 194, False: 58.5k]
  |  |  |  Branch (2123:30): [True: 202, False: 58.5k]
  |  |  ------------------
  |  | 2124|  7.72k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 227, False: 58.4k]
  |  |  |  Branch (2124:30): [True: 207, False: 58.4k]
  |  |  ------------------
  |  | 2125|  8.17k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 200, False: 58.5k]
  |  |  |  Branch (2125:30): [True: 259, False: 58.4k]
  |  |  ------------------
  |  | 2126|  8.79k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 253, False: 58.4k]
  |  |  |  Branch (2126:30): [True: 364, False: 58.3k]
  |  |  ------------------
  |  | 2127|  9.25k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 264, False: 58.4k]
  |  |  |  Branch (2127:30): [True: 198, False: 58.5k]
  |  |  ------------------
  |  | 2128|  9.65k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 197, False: 58.5k]
  |  |  |  Branch (2128:30): [True: 197, False: 58.5k]
  |  |  ------------------
  |  | 2129|  10.2k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 262, False: 58.4k]
  |  |  |  Branch (2129:30): [True: 286, False: 58.4k]
  |  |  ------------------
  |  | 2130|  10.7k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 318, False: 58.3k]
  |  |  |  Branch (2130:30): [True: 194, False: 58.5k]
  |  |  ------------------
  |  | 2131|  11.2k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 224, False: 58.4k]
  |  |  |  Branch (2131:30): [True: 270, False: 58.4k]
  |  |  ------------------
  |  | 2132|  11.6k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 202, False: 58.5k]
  |  |  |  Branch (2132:30): [True: 201, False: 58.5k]
  |  |  ------------------
  |  | 2133|  12.0k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 202, False: 58.5k]
  |  |  |  Branch (2133:30): [True: 203, False: 58.5k]
  |  |  ------------------
  |  | 2134|  12.4k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 214, False: 58.4k]
  |  |  |  Branch (2134:30): [True: 232, False: 58.4k]
  |  |  ------------------
  |  | 2135|  12.9k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 266, False: 58.4k]
  |  |  |  Branch (2135:30): [True: 268, False: 58.4k]
  |  |  ------------------
  |  | 2136|  13.4k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 257, False: 58.4k]
  |  |  |  Branch (2136:30): [True: 194, False: 58.5k]
  |  |  ------------------
  |  | 2137|  13.9k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 206, False: 58.4k]
  |  |  |  Branch (2137:30): [True: 269, False: 58.4k]
  |  |  ------------------
  |  | 2138|  14.3k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 194, False: 58.5k]
  |  |  |  Branch (2138:30): [True: 280, False: 58.4k]
  |  |  ------------------
  |  | 2139|  14.8k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 199, False: 58.5k]
  |  |  |  Branch (2139:30): [True: 207, False: 58.4k]
  |  |  ------------------
  |  | 2140|  15.3k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 299, False: 58.4k]
  |  |  |  Branch (2140:30): [True: 259, False: 58.4k]
  |  |  ------------------
  |  | 2141|  15.7k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 227, False: 58.4k]
  |  |  ------------------
  ------------------
 2646|  15.7k|        tun_metadata_set_match(mf, value, mask, match, err_str);
 2647|  15.7k|        break;
 2648|       |
 2649|    267|    case MFF_METADATA:
  ------------------
  |  Branch (2649:5): [True: 267, False: 58.4k]
  ------------------
 2650|    267|        match_set_metadata_masked(match, value->be64, mask->be64);
 2651|    267|        break;
 2652|       |
 2653|  8.71k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  1.51k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 375, False: 58.3k]
  |  |  |  Branch (2065:20): [True: 512, False: 58.1k]
  |  |  |  Branch (2065:35): [True: 366, False: 58.3k]
  |  |  |  Branch (2065:50): [True: 261, False: 58.4k]
  |  |  ------------------
  |  | 2066|  2.68k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 254, False: 58.4k]
  |  |  |  Branch (2066:20): [True: 316, False: 58.3k]
  |  |  |  Branch (2066:35): [True: 384, False: 58.3k]
  |  |  |  Branch (2066:50): [True: 221, False: 58.4k]
  |  |  ------------------
  |  | 2067|  3.79k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 211, False: 58.4k]
  |  |  |  Branch (2067:20): [True: 408, False: 58.2k]
  |  |  |  Branch (2067:35): [True: 257, False: 58.4k]
  |  |  |  Branch (2067:51): [True: 229, False: 58.4k]
  |  |  ------------------
  |  | 2068|  4.93k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 297, False: 58.4k]
  |  |  |  Branch (2068:21): [True: 310, False: 58.3k]
  |  |  |  Branch (2068:37): [True: 210, False: 58.4k]
  |  |  |  Branch (2068:53): [True: 325, False: 58.3k]
  |  |  ------------------
  |  | 2069|  5.92k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 258, False: 58.4k]
  |  |  |  Branch (2069:21): [True: 240, False: 58.4k]
  |  |  |  Branch (2069:37): [True: 198, False: 58.5k]
  |  |  |  Branch (2069:53): [True: 296, False: 58.4k]
  |  |  ------------------
  |  | 2070|  6.89k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 306, False: 58.3k]
  |  |  |  Branch (2070:21): [True: 210, False: 58.4k]
  |  |  |  Branch (2070:37): [True: 245, False: 58.4k]
  |  |  |  Branch (2070:53): [True: 201, False: 58.5k]
  |  |  ------------------
  |  | 2071|  7.75k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 204, False: 58.5k]
  |  |  |  Branch (2071:21): [True: 200, False: 58.5k]
  |  |  |  Branch (2071:37): [True: 199, False: 58.5k]
  |  |  |  Branch (2071:53): [True: 261, False: 58.4k]
  |  |  ------------------
  |  | 2072|  8.71k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 202, False: 58.5k]
  |  |  |  Branch (2072:21): [True: 205, False: 58.5k]
  |  |  |  Branch (2072:37): [True: 336, False: 58.3k]
  |  |  ------------------
  ------------------
 2654|  8.71k|        match_set_reg_masked(match, mf->id - MFF_REG0,
 2655|  8.71k|                             ntohl(value->be32), ntohl(mask->be32));
 2656|  8.71k|        break;
 2657|       |
 2658|  5.06k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  1.27k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 330, False: 58.3k]
  |  |  |  Branch (2081:21): [True: 260, False: 58.4k]
  |  |  |  Branch (2081:37): [True: 313, False: 58.3k]
  |  |  |  Branch (2081:53): [True: 367, False: 58.3k]
  |  |  ------------------
  |  | 2082|  2.51k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 467, False: 58.2k]
  |  |  |  Branch (2082:21): [True: 237, False: 58.4k]
  |  |  |  Branch (2082:37): [True: 299, False: 58.4k]
  |  |  |  Branch (2082:53): [True: 238, False: 58.4k]
  |  |  ------------------
  |  | 2083|  3.68k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 256, False: 58.4k]
  |  |  |  Branch (2083:21): [True: 481, False: 58.2k]
  |  |  |  Branch (2083:37): [True: 194, False: 58.5k]
  |  |  |  Branch (2083:54): [True: 240, False: 58.4k]
  |  |  ------------------
  |  | 2084|  5.06k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 203, False: 58.5k]
  |  |  |  Branch (2084:22): [True: 498, False: 58.2k]
  |  |  |  Branch (2084:39): [True: 206, False: 58.4k]
  |  |  ------------------
  ------------------
 2659|  5.06k|        match_set_xreg_masked(match, mf->id - MFF_XREG0,
 2660|  5.06k|                              ntohll(value->be64), ntohll(mask->be64));
 2661|  5.06k|        break;
 2662|       |
 2663|  2.54k|    CASE_MFF_XXREGS: {
  ------------------
  |  | 2093|  1.29k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 438, False: 58.2k]
  |  |  |  Branch (2093:22): [True: 266, False: 58.4k]
  |  |  |  Branch (2093:39): [True: 250, False: 58.4k]
  |  |  |  Branch (2093:56): [True: 345, False: 58.3k]
  |  |  ------------------
  |  | 2094|  2.54k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 524, False: 58.1k]
  |  |  |  Branch (2094:22): [True: 323, False: 58.3k]
  |  |  |  Branch (2094:39): [True: 197, False: 58.5k]
  |  |  ------------------
  ------------------
 2664|  2.54k|        match_set_xxreg_masked(match, mf->id - MFF_XXREG0,
 2665|  2.54k|                ntoh128(value->be128), ntoh128(mask->be128));
 2666|  2.54k|        break;
 2667|  9.70k|    }
 2668|       |
 2669|    262|    case MFF_PKT_MARK:
  ------------------
  |  Branch (2669:5): [True: 262, False: 58.4k]
  ------------------
 2670|    262|        match_set_pkt_mark_masked(match, ntohl(value->be32),
 2671|    262|                                  ntohl(mask->be32));
 2672|    262|        break;
 2673|       |
 2674|    465|    case MFF_CT_STATE:
  ------------------
  |  Branch (2674:5): [True: 465, False: 58.2k]
  ------------------
 2675|    465|        match_set_ct_state_masked(match, ntohl(value->be32), ntohl(mask->be32));
 2676|    465|        break;
 2677|       |
 2678|    226|    case MFF_CT_MARK:
  ------------------
  |  Branch (2678:5): [True: 226, False: 58.4k]
  ------------------
 2679|    226|        match_set_ct_mark_masked(match, ntohl(value->be32), ntohl(mask->be32));
 2680|    226|        break;
 2681|       |
 2682|    240|    case MFF_CT_LABEL:
  ------------------
  |  Branch (2682:5): [True: 240, False: 58.4k]
  ------------------
 2683|    240|        match_set_ct_label_masked(match, ntoh128(value->be128),
 2684|    240|                                  ntoh128(mask->be128));
 2685|    240|        break;
 2686|       |
 2687|    204|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (2687:5): [True: 204, False: 58.5k]
  ------------------
 2688|    204|        match_set_ct_nw_src_masked(match, value->be32, mask->be32);
 2689|    204|        break;
 2690|       |
 2691|    269|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (2691:5): [True: 269, False: 58.4k]
  ------------------
 2692|    269|        match_set_ct_nw_dst_masked(match, value->be32, mask->be32);
 2693|    269|        break;
 2694|       |
 2695|    223|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (2695:5): [True: 223, False: 58.4k]
  ------------------
 2696|    223|        match_set_ct_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
 2697|    223|        break;
 2698|       |
 2699|    236|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (2699:5): [True: 236, False: 58.4k]
  ------------------
 2700|    236|        match_set_ct_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
 2701|    236|        break;
 2702|       |
 2703|    195|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (2703:5): [True: 195, False: 58.5k]
  ------------------
 2704|    195|        match_set_ct_tp_src_masked(match, value->be16, mask->be16);
 2705|    195|        break;
 2706|       |
 2707|    214|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (2707:5): [True: 214, False: 58.4k]
  ------------------
 2708|    214|        match_set_ct_tp_dst_masked(match, value->be16, mask->be16);
 2709|    214|        break;
 2710|       |
 2711|    261|    case MFF_ETH_DST:
  ------------------
  |  Branch (2711:5): [True: 261, False: 58.4k]
  ------------------
 2712|    261|        match_set_dl_dst_masked(match, value->mac, mask->mac);
 2713|    261|        break;
 2714|       |
 2715|    450|    case MFF_ETH_SRC:
  ------------------
  |  Branch (2715:5): [True: 450, False: 58.2k]
  ------------------
 2716|    450|        match_set_dl_src_masked(match, value->mac, mask->mac);
 2717|    450|        break;
 2718|       |
 2719|    464|    case MFF_ARP_SHA:
  ------------------
  |  Branch (2719:5): [True: 464, False: 58.2k]
  ------------------
 2720|    596|    case MFF_ND_SLL:
  ------------------
  |  Branch (2720:5): [True: 132, False: 58.5k]
  ------------------
 2721|    596|        match_set_arp_sha_masked(match, value->mac, mask->mac);
 2722|    596|        break;
 2723|       |
 2724|    285|    case MFF_ARP_THA:
  ------------------
  |  Branch (2724:5): [True: 285, False: 58.4k]
  ------------------
 2725|    555|    case MFF_ND_TLL:
  ------------------
  |  Branch (2725:5): [True: 270, False: 58.4k]
  ------------------
 2726|    555|        match_set_arp_tha_masked(match, value->mac, mask->mac);
 2727|    555|        break;
 2728|       |
 2729|    194|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (2729:5): [True: 194, False: 58.5k]
  ------------------
 2730|    194|        match_set_dl_tci_masked(match, value->be16, mask->be16);
 2731|    194|        break;
 2732|       |
 2733|    350|    case MFF_VLAN_VID:
  ------------------
  |  Branch (2733:5): [True: 350, False: 58.3k]
  ------------------
 2734|    350|        match_set_vlan_vid_masked(match, value->be16, mask->be16);
 2735|    350|        break;
 2736|       |
 2737|    607|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (2737:5): [True: 607, False: 58.0k]
  ------------------
 2738|    607|        match_set_nw_src_masked(match, value->be32, mask->be32);
 2739|    607|        break;
 2740|       |
 2741|    449|    case MFF_IPV4_DST:
  ------------------
  |  Branch (2741:5): [True: 449, False: 58.2k]
  ------------------
 2742|    449|        match_set_nw_dst_masked(match, value->be32, mask->be32);
 2743|    449|        break;
 2744|       |
 2745|    501|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (2745:5): [True: 501, False: 58.2k]
  ------------------
 2746|    501|        match_set_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
 2747|    501|        break;
 2748|       |
 2749|  1.03k|    case MFF_IPV6_DST:
  ------------------
  |  Branch (2749:5): [True: 1.03k, False: 57.6k]
  ------------------
 2750|  1.03k|        match_set_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
 2751|  1.03k|        break;
 2752|       |
 2753|    520|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (2753:5): [True: 520, False: 58.1k]
  ------------------
 2754|    520|        if ((mask->be32 & htonl(IPV6_LABEL_MASK)) == htonl(IPV6_LABEL_MASK)) {
  ------------------
  |  Branch (2754:13): [True: 423, False: 97]
  ------------------
 2755|    423|            mf_set_value(mf, value, match, err_str);
 2756|    423|        } else {
 2757|     97|            match_set_ipv6_label_masked(match, value->be32, mask->be32);
 2758|     97|        }
 2759|    520|        break;
 2760|       |
 2761|    258|    case MFF_ND_TARGET:
  ------------------
  |  Branch (2761:5): [True: 258, False: 58.4k]
  ------------------
 2762|    258|        match_set_nd_target_masked(match, &value->ipv6, &mask->ipv6);
 2763|    258|        break;
 2764|       |
 2765|    348|    case MFF_IP_FRAG:
  ------------------
  |  Branch (2765:5): [True: 348, False: 58.3k]
  ------------------
 2766|    348|        match_set_nw_frag_masked(match, value->u8,
 2767|    348|                                 mask->u8 & FLOW_NW_FRAG_MASK);
  ------------------
  |  |   56|    348|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    348|#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|    348|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 2768|    348|        break;
 2769|       |
 2770|    241|    case MFF_ARP_SPA:
  ------------------
  |  Branch (2770:5): [True: 241, False: 58.4k]
  ------------------
 2771|    241|        match_set_nw_src_masked(match, value->be32, mask->be32);
 2772|    241|        break;
 2773|       |
 2774|    268|    case MFF_ARP_TPA:
  ------------------
  |  Branch (2774:5): [True: 268, False: 58.4k]
  ------------------
 2775|    268|        match_set_nw_dst_masked(match, value->be32, mask->be32);
 2776|    268|        break;
 2777|       |
 2778|    408|    case MFF_TCP_SRC:
  ------------------
  |  Branch (2778:5): [True: 408, False: 58.2k]
  ------------------
 2779|    870|    case MFF_UDP_SRC:
  ------------------
  |  Branch (2779:5): [True: 462, False: 58.2k]
  ------------------
 2780|    941|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (2780:5): [True: 71, False: 58.6k]
  ------------------
 2781|    941|        match_set_tp_src_masked(match, value->be16, mask->be16);
 2782|    941|        break;
 2783|       |
 2784|    429|    case MFF_TCP_DST:
  ------------------
  |  Branch (2784:5): [True: 429, False: 58.2k]
  ------------------
 2785|    660|    case MFF_UDP_DST:
  ------------------
  |  Branch (2785:5): [True: 231, False: 58.4k]
  ------------------
 2786|  1.04k|    case MFF_SCTP_DST:
  ------------------
  |  Branch (2786:5): [True: 383, False: 58.3k]
  ------------------
 2787|  1.04k|        match_set_tp_dst_masked(match, value->be16, mask->be16);
 2788|  1.04k|        break;
 2789|       |
 2790|    303|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (2790:5): [True: 303, False: 58.4k]
  ------------------
 2791|    303|        match_set_tcp_flags_masked(match, value->be16, mask->be16);
 2792|    303|        break;
 2793|       |
 2794|    305|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (2794:5): [True: 305, False: 58.4k]
  ------------------
 2795|    305|        MATCH_SET_FIELD_MASKED(match, nsh.flags, value->u8, mask->u8);
  ------------------
  |  |   50|    305|    do {                                                      \
  |  |   51|    305|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    305|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    305|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 305]
  |  |  ------------------
  ------------------
 2796|    305|        break;
 2797|    200|    case MFF_NSH_TTL:
  ------------------
  |  Branch (2797:5): [True: 200, False: 58.5k]
  ------------------
 2798|    200|        MATCH_SET_FIELD_MASKED(match, nsh.ttl, value->u8, mask->u8);
  ------------------
  |  |   50|    200|    do {                                                      \
  |  |   51|    200|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    200|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    200|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 200]
  |  |  ------------------
  ------------------
 2799|    200|        break;
 2800|    598|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (2800:5): [True: 598, False: 58.1k]
  ------------------
 2801|    598|        MATCH_SET_FIELD_MASKED(match, nsh.mdtype, value->u8, mask->u8);
  ------------------
  |  |   50|    598|    do {                                                      \
  |  |   51|    598|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    598|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    598|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 598]
  |  |  ------------------
  ------------------
 2802|    598|        break;
 2803|    258|    case MFF_NSH_NP:
  ------------------
  |  Branch (2803:5): [True: 258, False: 58.4k]
  ------------------
 2804|    258|        MATCH_SET_FIELD_MASKED(match, nsh.np, value->u8, mask->u8);
  ------------------
  |  |   50|    258|    do {                                                      \
  |  |   51|    258|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    258|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    258|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 258]
  |  |  ------------------
  ------------------
 2805|    258|        break;
 2806|    651|    case MFF_NSH_SPI:
  ------------------
  |  Branch (2806:5): [True: 651, False: 58.0k]
  ------------------
 2807|    651|        match->wc.masks.nsh.path_hdr |= mask->be32;
 2808|    651|        nsh_path_hdr_set_spi(&match->flow.nsh.path_hdr,
 2809|    651|                             value->be32 & mask->be32);
 2810|    651|        break;
 2811|    375|    case MFF_NSH_SI:
  ------------------
  |  Branch (2811:5): [True: 375, False: 58.3k]
  ------------------
 2812|    375|        match->wc.masks.nsh.path_hdr |= htonl(mask->u8);
 2813|    375|        nsh_path_hdr_set_si(&match->flow.nsh.path_hdr,
 2814|    375|                             value->u8 & mask->u8);
 2815|    375|        break;
 2816|    305|    case MFF_NSH_C1:
  ------------------
  |  Branch (2816:5): [True: 305, False: 58.4k]
  ------------------
 2817|    523|    case MFF_NSH_C2:
  ------------------
  |  Branch (2817:5): [True: 218, False: 58.4k]
  ------------------
 2818|    810|    case MFF_NSH_C3:
  ------------------
  |  Branch (2818:5): [True: 287, False: 58.4k]
  ------------------
 2819|  1.29k|    case MFF_NSH_C4:
  ------------------
  |  Branch (2819:5): [True: 489, False: 58.2k]
  ------------------
 2820|  1.29k|        MATCH_SET_FIELD_MASKED(match, nsh.context[mf->id - MFF_NSH_C1],
  ------------------
  |  |   50|  1.29k|    do {                                                      \
  |  |   51|  1.29k|        (match)->wc.masks.field = (msk);                      \
  |  |   52|  1.29k|        (match)->flow.field = (value) & (msk);                \
  |  |   53|  1.29k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 1.29k]
  |  |  ------------------
  ------------------
 2821|  1.29k|                               value->be32, mask->be32);
 2822|  1.29k|        break;
 2823|       |
 2824|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (2824:5): [True: 0, False: 58.7k]
  ------------------
 2825|      0|    default:
  ------------------
  |  Branch (2825:5): [True: 0, False: 58.7k]
  ------------------
 2826|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 2827|  58.7k|    }
 2828|       |
 2829|  52.5k|    return ((mf->usable_protocols_bitwise == mf->usable_protocols_cidr
  ------------------
  |  Branch (2829:14): [True: 50.9k, False: 1.56k]
  ------------------
 2830|  1.56k|             || ip_is_cidr(mask->be32))
  ------------------
  |  Branch (2830:17): [True: 654, False: 911]
  ------------------
 2831|  52.5k|            ? mf->usable_protocols_cidr
 2832|  52.5k|            : mf->usable_protocols_bitwise);
 2833|  58.7k|}
mf_check_src:
 2948|  50.5k|{
 2949|  50.5k|    return mf_check__(sf, match, "source");
 2950|  50.5k|}
mf_check_dst:
 2957|  4.23k|{
 2958|  4.23k|    int error = mf_check__(sf, match, "destination");
 2959|  4.23k|    if (!error && !sf->field->writable) {
  ------------------
  |  Branch (2959:9): [True: 4.02k, False: 211]
  |  Branch (2959:19): [True: 1, False: 4.01k]
  ------------------
 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|  4.23k|    return error;
 2965|  4.23k|}
mf_get:
 2972|   101k|{
 2973|   101k|    mf_get_value(mf, &match->flow, value);
 2974|   101k|    mf_get_mask(mf, &match->wc, mask);
 2975|   101k|}
mf_parse:
 3231|   157k|{
 3232|   157k|    char *error;
 3233|       |
 3234|   157k|    if (!strcmp(s, "*")) {
  ------------------
  |  Branch (3234:9): [True: 33.7k, False: 123k]
  ------------------
 3235|  33.7k|        memset(value, 0, mf->n_bytes);
 3236|  33.7k|        memset(mask, 0, mf->n_bytes);
 3237|  33.7k|        return NULL;
 3238|  33.7k|    }
 3239|       |
 3240|   123k|    switch (mf->string) {
 3241|  21.0k|    case MFS_DECIMAL:
  ------------------
  |  Branch (3241:5): [True: 21.0k, False: 102k]
  ------------------
 3242|   112k|    case MFS_HEXADECIMAL:
  ------------------
  |  Branch (3242:5): [True: 91.9k, False: 31.3k]
  ------------------
 3243|   112k|        error = mf_from_integer_string(mf, s,
 3244|   112k|                                       (uint8_t *) value, (uint8_t *) mask);
 3245|   112k|        break;
 3246|       |
 3247|  1.77k|    case MFS_CT_STATE:
  ------------------
  |  Branch (3247:5): [True: 1.77k, False: 121k]
  ------------------
 3248|  1.77k|        ovs_assert(mf->n_bytes == sizeof(ovs_be32));
  ------------------
  |  |   62|  1.77k|#define ovs_assert ovs_ignore
  ------------------
 3249|  1.77k|        error = mf_from_ct_state_string(s, &value->be32, &mask->be32);
 3250|  1.77k|        break;
 3251|       |
 3252|    613|    case MFS_ETHERNET:
  ------------------
  |  Branch (3252:5): [True: 613, False: 122k]
  ------------------
 3253|    613|        error = mf_from_ethernet_string(mf, s, &value->mac, &mask->mac);
 3254|    613|        break;
 3255|       |
 3256|  1.59k|    case MFS_IPV4:
  ------------------
  |  Branch (3256:5): [True: 1.59k, False: 121k]
  ------------------
 3257|  1.59k|        error = mf_from_ipv4_string(mf, s, &value->be32, &mask->be32);
 3258|  1.59k|        break;
 3259|       |
 3260|  2.79k|    case MFS_IPV6:
  ------------------
  |  Branch (3260:5): [True: 2.79k, False: 120k]
  ------------------
 3261|  2.79k|        error = mf_from_ipv6_string(mf, s, &value->ipv6, &mask->ipv6);
 3262|  2.79k|        break;
 3263|       |
 3264|    247|    case MFS_OFP_PORT:
  ------------------
  |  Branch (3264:5): [True: 247, False: 123k]
  ------------------
 3265|    247|        error = mf_from_ofp_port_string(mf, s, port_map,
 3266|    247|                                        &value->be16, &mask->be16);
 3267|    247|        break;
 3268|       |
 3269|    373|    case MFS_OFP_PORT_OXM:
  ------------------
  |  Branch (3269:5): [True: 373, False: 122k]
  ------------------
 3270|    373|        error = mf_from_ofp_port_string32(mf, s, port_map,
 3271|    373|                                          &value->be32, &mask->be32);
 3272|    373|        break;
 3273|       |
 3274|    468|    case MFS_FRAG:
  ------------------
  |  Branch (3274:5): [True: 468, False: 122k]
  ------------------
 3275|    468|        error = mf_from_frag_string(s, &value->u8, &mask->u8);
 3276|    468|        break;
 3277|       |
 3278|  1.10k|    case MFS_TNL_FLAGS:
  ------------------
  |  Branch (3278:5): [True: 1.10k, False: 122k]
  ------------------
 3279|  1.10k|        ovs_assert(mf->n_bytes == sizeof(ovs_be16));
  ------------------
  |  |   62|  1.10k|#define ovs_assert ovs_ignore
  ------------------
 3280|  1.10k|        error = mf_from_tun_flags_string(s, &value->be16, &mask->be16);
 3281|  1.10k|        break;
 3282|       |
 3283|    750|    case MFS_TCP_FLAGS:
  ------------------
  |  Branch (3283:5): [True: 750, False: 122k]
  ------------------
 3284|    750|        ovs_assert(mf->n_bytes == sizeof(ovs_be16));
  ------------------
  |  |   62|    750|#define ovs_assert ovs_ignore
  ------------------
 3285|    750|        error = mf_from_tcp_flags_string(s, &value->be16, &mask->be16);
 3286|    750|        break;
 3287|       |
 3288|    572|    case MFS_PACKET_TYPE:
  ------------------
  |  Branch (3288:5): [True: 572, False: 122k]
  ------------------
 3289|    572|        ovs_assert(mf->n_bytes == sizeof(ovs_be32));
  ------------------
  |  |   62|    572|#define ovs_assert ovs_ignore
  ------------------
 3290|    572|        error = mf_from_packet_type_string(s, &value->be32);
 3291|    572|        mask->be32 = OVS_BE32_MAX;
  ------------------
  |  |   43|    572|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
 3292|    572|        break;
 3293|       |
 3294|      0|    default:
  ------------------
  |  Branch (3294:5): [True: 0, False: 123k]
  ------------------
 3295|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 3296|   123k|    }
 3297|       |
 3298|   123k|    if (!error && !mf_is_mask_valid(mf, mask)) {
  ------------------
  |  Branch (3298:9): [True: 122k, False: 707]
  |  Branch (3298:19): [True: 4, False: 122k]
  ------------------
 3299|      4|        error = xasprintf("%s: invalid mask for field %s", s, mf->name);
 3300|      4|    }
 3301|   123k|    return error;
 3302|   123k|}
mf_parse_value:
 3309|  29.7k|{
 3310|  29.7k|    union mf_value mask;
 3311|  29.7k|    char *error;
 3312|       |
 3313|  29.7k|    error = mf_parse(mf, s, port_map, value, &mask);
 3314|  29.7k|    if (error) {
  ------------------
  |  Branch (3314:9): [True: 15, False: 29.7k]
  ------------------
 3315|     15|        return error;
 3316|     15|    }
 3317|       |
 3318|  29.7k|    if (!is_all_ones((const uint8_t *) &mask, mf->n_bytes)) {
  ------------------
  |  Branch (3318:9): [True: 1, False: 29.7k]
  ------------------
 3319|      1|        return xasprintf("%s: wildcards not allowed here", s);
 3320|      1|    }
 3321|  29.7k|    return NULL;
 3322|  29.7k|}
mf_format:
 3401|    144|{
 3402|    144|    if (mask) {
  ------------------
  |  Branch (3402:9): [True: 0, False: 144]
  ------------------
 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|    144|    switch (mf->string) {
 3412|      5|    case MFS_OFP_PORT_OXM:
  ------------------
  |  Branch (3412:5): [True: 5, False: 139]
  ------------------
 3413|      5|        if (!mask) {
  ------------------
  |  Branch (3413:13): [True: 5, False: 0]
  ------------------
 3414|      5|            ofp_port_t port;
 3415|      5|            ofputil_port_from_ofp11(value->be32, &port);
 3416|      5|            ofputil_format_port(port, port_map, s);
 3417|      5|            break;
 3418|      5|        }
 3419|       |        /* fall through */
 3420|     23|    case MFS_OFP_PORT:
  ------------------
  |  Branch (3420:5): [True: 23, False: 121]
  ------------------
 3421|     23|        if (!mask) {
  ------------------
  |  Branch (3421:13): [True: 23, False: 0]
  ------------------
 3422|     23|            ofputil_format_port(u16_to_ofp(ntohs(value->be16)), port_map, s);
 3423|     23|            break;
 3424|     23|        }
 3425|       |        /* fall through */
 3426|      4|    case MFS_DECIMAL:
  ------------------
  |  Branch (3426:5): [True: 4, False: 140]
  ------------------
 3427|     33|    case MFS_HEXADECIMAL:
  ------------------
  |  Branch (3427:5): [True: 29, False: 115]
  ------------------
 3428|     33|        mf_format_integer_string(mf, (uint8_t *) value, (uint8_t *) mask, s);
 3429|     33|        break;
 3430|       |
 3431|      1|    case MFS_CT_STATE:
  ------------------
  |  Branch (3431:5): [True: 1, False: 143]
  ------------------
 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: 143]
  ------------------
 3437|      1|        eth_format_masked(value->mac, mask ? &mask->mac : NULL, s);
  ------------------
  |  Branch (3437:39): [True: 0, False: 1]
  ------------------
 3438|      1|        break;
 3439|       |
 3440|      2|    case MFS_IPV4:
  ------------------
  |  Branch (3440:5): [True: 2, False: 142]
  ------------------
 3441|      2|        ip_format_masked(value->be32, mask ? mask->be32 : OVS_BE32_MAX, s);
  ------------------
  |  |   43|      2|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (3441:39): [True: 0, False: 2]
  ------------------
 3442|      2|        break;
 3443|       |
 3444|      1|    case MFS_IPV6:
  ------------------
  |  Branch (3444:5): [True: 1, False: 143]
  ------------------
 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: 141]
  ------------------
 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|     18|    case MFS_TNL_FLAGS:
  ------------------
  |  Branch (3452:5): [True: 18, False: 126]
  ------------------
 3453|     18|        mf_format_tnl_flags_string(value->be16,
 3454|     18|                                   mask ? mask->be16 : OVS_BE16_MAX, s);
  ------------------
  |  |   42|     36|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  |  Branch (3454:36): [True: 0, False: 18]
  ------------------
 3455|     18|        break;
 3456|       |
 3457|      9|    case MFS_TCP_FLAGS:
  ------------------
  |  Branch (3457:5): [True: 9, False: 135]
  ------------------
 3458|      9|        mf_format_tcp_flags_string(value->be16,
 3459|      9|                                   mask ? mask->be16 : OVS_BE16_MAX, s);
  ------------------
  |  |   42|     18|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  |  Branch (3459:36): [True: 0, False: 9]
  ------------------
 3460|      9|        break;
 3461|       |
 3462|     48|    case MFS_PACKET_TYPE:
  ------------------
  |  Branch (3462:5): [True: 48, False: 96]
  ------------------
 3463|     48|        mf_format_packet_type_string(value->be32,
 3464|     48|                                     mask ? mask->be32 : OVS_BE32_MAX, s);
  ------------------
  |  |   43|     48|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (3464:38): [True: 0, False: 48]
  ------------------
 3465|     48|        break;
 3466|       |
 3467|      0|    default:
  ------------------
  |  Branch (3467:5): [True: 0, False: 144]
  ------------------
 3468|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 3469|    144|    }
 3470|    144|}
mf_write_subfield_value:
 3507|  43.3k|{
 3508|  43.3k|    const struct mf_field *field = sf->field;
 3509|  43.3k|    union mf_value value, mask;
 3510|  43.3k|    unsigned int size = DIV_ROUND_UP(sf->n_bits, 8);
  ------------------
  |  |  300|  43.3k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 3511|       |
 3512|  43.3k|    mf_get(field, match, &value, &mask);
 3513|  43.3k|    bitwise_copy(src, size, 0, &value, field->n_bytes, sf->ofs, sf->n_bits);
 3514|  43.3k|    bitwise_one (              &mask,  field->n_bytes, sf->ofs, sf->n_bits);
 3515|       |    mf_set(field, &value, &mask, match, NULL);
 3516|  43.3k|}
meta-flow.c:nxm_init:
  121|   365k|{
  122|       |    static pthread_once_t once = PTHREAD_ONCE_INIT;
  123|   365k|    pthread_once(&once, nxm_do_init);
  124|   365k|}
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|  84.8k|{
  445|  84.8k|    ovs_be16 dl_type = get_dl_type(flow);
  446|       |
  447|  84.8k|    switch (mf->prereqs) {
  ------------------
  |  Branch (447:13): [True: 84.8k, False: 0]
  ------------------
  448|  71.1k|    case MFP_NONE:
  ------------------
  |  Branch (448:5): [True: 71.1k, False: 13.7k]
  ------------------
  449|  71.1k|        return true;
  450|  3.20k|    case MFP_ETHERNET:
  ------------------
  |  Branch (450:5): [True: 3.20k, False: 81.6k]
  ------------------
  451|  3.20k|        return is_ethernet(flow, wc);
  452|    835|    case MFP_ARP:
  ------------------
  |  Branch (452:5): [True: 835, False: 84.0k]
  ------------------
  453|    835|        return (dl_type == htons(ETH_TYPE_ARP) ||
  ------------------
  |  Branch (453:17): [True: 299, False: 536]
  ------------------
  454|    536|                dl_type == htons(ETH_TYPE_RARP));
  ------------------
  |  Branch (454:17): [True: 504, False: 32]
  ------------------
  455|    564|    case MFP_IPV4:
  ------------------
  |  Branch (455:5): [True: 564, False: 84.3k]
  ------------------
  456|    564|        return dl_type == htons(ETH_TYPE_IP);
  457|    246|    case MFP_IPV6:
  ------------------
  |  Branch (457:5): [True: 246, False: 84.6k]
  ------------------
  458|    246|        return dl_type == htons(ETH_TYPE_IPV6);
  459|    430|    case MFP_VLAN_VID:
  ------------------
  |  Branch (459:5): [True: 430, False: 84.4k]
  ------------------
  460|    430|        return is_vlan(flow, wc);
  461|    563|    case MFP_MPLS:
  ------------------
  |  Branch (461:5): [True: 563, False: 84.3k]
  ------------------
  462|    563|        return eth_type_mpls(dl_type);
  463|  1.08k|    case MFP_IP_ANY:
  ------------------
  |  Branch (463:5): [True: 1.08k, False: 83.8k]
  ------------------
  464|  1.08k|        return is_ip_any(flow);
  465|    733|    case MFP_NSH:
  ------------------
  |  Branch (465:5): [True: 733, False: 84.1k]
  ------------------
  466|    733|        return dl_type == htons(ETH_TYPE_NSH);
  467|    455|    case MFP_CT_VALID:
  ------------------
  |  Branch (467:5): [True: 455, False: 84.4k]
  ------------------
  468|    455|        return is_ct_valid(flow, mask, wc);
  469|  1.54k|    case MFP_TCP:
  ------------------
  |  Branch (469:5): [True: 1.54k, False: 83.3k]
  ------------------
  470|       |        /* Matching !FRAG_LATER is not enforced (mask is not checked). */
  471|  1.54k|        return is_tcp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
  ------------------
  |  |   55|  1.52k|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (471:16): [True: 1.52k, False: 25]
  |  Branch (471:36): [True: 1.52k, False: 0]
  ------------------
  472|  1.14k|    case MFP_UDP:
  ------------------
  |  Branch (472:5): [True: 1.14k, False: 83.7k]
  ------------------
  473|  1.14k|        return is_udp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
  ------------------
  |  |   55|  1.10k|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (473:16): [True: 1.10k, False: 42]
  |  Branch (473:36): [True: 1.10k, False: 0]
  ------------------
  474|    470|    case MFP_SCTP:
  ------------------
  |  Branch (474:5): [True: 470, False: 84.4k]
  ------------------
  475|    470|        return is_sctp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
  ------------------
  |  |   55|    430|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (475:16): [True: 430, False: 40]
  |  Branch (475:37): [True: 430, False: 0]
  ------------------
  476|    454|    case MFP_ICMPV4:
  ------------------
  |  Branch (476:5): [True: 454, False: 84.4k]
  ------------------
  477|    454|        return is_icmpv4(flow, wc);
  478|    679|    case MFP_ICMPV6:
  ------------------
  |  Branch (478:5): [True: 679, False: 84.2k]
  ------------------
  479|    679|        return is_icmpv6(flow, wc);
  480|    475|    case MFP_ND:
  ------------------
  |  Branch (480:5): [True: 475, False: 84.4k]
  ------------------
  481|    475|        return is_nd(flow, wc);
  482|    426|    case MFP_ND_SOLICIT:
  ------------------
  |  Branch (482:5): [True: 426, False: 84.4k]
  ------------------
  483|    426|        return is_nd(flow, wc) && flow->tp_src == htons(ND_NEIGHBOR_SOLICIT);
  ------------------
  |  Branch (483:16): [True: 388, False: 38]
  |  Branch (483:35): [True: 387, False: 1]
  ------------------
  484|    445|    case MFP_ND_ADVERT:
  ------------------
  |  Branch (484:5): [True: 445, False: 84.4k]
  ------------------
  485|    445|        return is_nd(flow, wc) && flow->tp_src == htons(ND_NEIGHBOR_ADVERT);
  ------------------
  |  Branch (485:16): [True: 398, False: 47]
  |  Branch (485:35): [True: 397, False: 1]
  ------------------
  486|  84.8k|    }
  487|       |
  488|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  489|  84.8k|}
meta-flow.c:field_len:
 1371|  79.2k|{
 1372|  79.2k|    const uint8_t *value = &value_->u8;
 1373|  79.2k|    int i;
 1374|       |
 1375|  79.2k|    if (!mf->variable_len) {
  ------------------
  |  Branch (1375:9): [True: 12.4k, False: 66.7k]
  ------------------
 1376|  12.4k|        return mf->n_bytes;
 1377|  12.4k|    }
 1378|       |
 1379|  66.7k|    if (!value) {
  ------------------
  |  Branch (1379:9): [True: 0, False: 66.7k]
  ------------------
 1380|      0|        return 0;
 1381|      0|    }
 1382|       |
 1383|  8.22M|    for (i = 0; i < mf->n_bytes; i++) {
  ------------------
  |  Branch (1383:17): [True: 8.19M, False: 27.8k]
  ------------------
 1384|  8.19M|        if (value[i] != 0) {
  ------------------
  |  Branch (1384:13): [True: 38.9k, False: 8.16M]
  ------------------
 1385|  38.9k|            break;
 1386|  38.9k|        }
 1387|  8.19M|    }
 1388|       |
 1389|  66.7k|    return mf->n_bytes - i;
 1390|  66.7k|}
meta-flow.c:mf_check__:
 2838|  54.8k|{
 2839|  54.8k|    if (!sf->field) {
  ------------------
  |  Branch (2839:9): [True: 0, False: 54.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|  54.8k|    } else if (!sf->n_bits) {
  ------------------
  |  Branch (2842:16): [True: 0, False: 54.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|  54.8k|    } else if (sf->ofs >= sf->field->n_bits) {
  ------------------
  |  Branch (2845:16): [True: 0, False: 54.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|  54.8k|    } else if (sf->ofs + sf->n_bits > sf->field->n_bits) {
  ------------------
  |  Branch (2849:16): [True: 0, False: 54.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|  54.8k|    } else if (match && !mf_are_match_prereqs_ok(sf->field, match)) {
  ------------------
  |  Branch (2854:16): [True: 54.8k, False: 0]
  |  Branch (2854:25): [True: 328, False: 54.4k]
  ------------------
 2855|    328|        VLOG_WARN_RL(&rl, "%s field %s lacks correct prerequisites",
  ------------------
  |  |  224|    328|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    328|    do {                                                                \
  |  |  |  |  288|    328|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    328|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 328]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    328|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 328]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2856|    328|                     type, sf->field->name);
 2857|    328|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 2858|  54.4k|    } else {
 2859|  54.4k|        return 0;
 2860|  54.4k|    }
 2861|  54.8k|}
meta-flow.c:mf_from_integer_string:
 2980|   112k|{
 2981|   112k|    const char *err_str;
 2982|   112k|    char *tail;
 2983|   112k|    int err;
 2984|       |
 2985|   112k|    err = parse_int_string(s, valuep, mf->n_bytes, &tail);
 2986|   112k|    if (err || (*tail != '\0' && *tail != '/')) {
  ------------------
  |  Branch (2986:9): [True: 77, False: 112k]
  |  Branch (2986:17): [True: 51.3k, False: 61.5k]
  |  Branch (2986:34): [True: 33, False: 51.3k]
  ------------------
 2987|    110|        err_str = "value";
 2988|    110|        goto syntax_error;
 2989|    110|    }
 2990|       |
 2991|   112k|    if (*tail == '/') {
  ------------------
  |  Branch (2991:9): [True: 51.3k, False: 61.5k]
  ------------------
 2992|  51.3k|        err = parse_int_string(tail + 1, maskp, mf->n_bytes, &tail);
 2993|  51.3k|        if (err || *tail != '\0') {
  ------------------
  |  Branch (2993:13): [True: 2, False: 51.3k]
  |  Branch (2993:20): [True: 11, False: 51.2k]
  ------------------
 2994|     13|            err_str = "mask";
 2995|     13|            goto syntax_error;
 2996|     13|        }
 2997|  61.5k|    } else {
 2998|  61.5k|        memset(maskp, 0xff, mf->n_bytes);
 2999|  61.5k|    }
 3000|       |
 3001|   112k|    return NULL;
 3002|       |
 3003|    123|syntax_error:
 3004|    123|    if (err == ERANGE) {
  ------------------
  |  Branch (3004:9): [True: 55, False: 68]
  ------------------
 3005|     55|        return xasprintf("%s: %s too large for %u-byte field %s",
 3006|     55|                         s, err_str, mf->n_bytes, mf->name);
 3007|     68|    } else {
 3008|     68|        return xasprintf("%s: bad syntax for %s %s", s, mf->name, err_str);
 3009|     68|    }
 3010|    123|}
meta-flow.c:mf_from_ct_state_string:
 3206|  1.77k|{
 3207|  1.77k|    int err;
 3208|  1.77k|    char *err_str;
 3209|  1.77k|    uint32_t flags, mask;
 3210|       |
 3211|  1.77k|    err = parse_flags(s, ct_state_to_string, '\0', "ct_state", &err_str,
 3212|  1.77k|                      &flags, CS_SUPPORTED_MASK, maskp ? &mask : NULL);
  ------------------
  |  Branch (3212:50): [True: 1.77k, False: 0]
  ------------------
 3213|  1.77k|    if (err < 0) {
  ------------------
  |  Branch (3213:9): [True: 179, False: 1.59k]
  ------------------
 3214|    179|        return err_str;
 3215|    179|    }
 3216|       |
 3217|  1.59k|    *flagsp = htonl(flags);
 3218|  1.59k|    if (maskp) {
  ------------------
  |  Branch (3218:9): [True: 1.59k, False: 0]
  ------------------
 3219|  1.59k|        *maskp = htonl(mask);
 3220|  1.59k|    }
 3221|       |
 3222|       |    return NULL;
 3223|  1.77k|}
meta-flow.c:mf_from_ethernet_string:
 3053|    613|{
 3054|    613|    int n;
 3055|       |
 3056|    613|    ovs_assert(mf->n_bytes == ETH_ADDR_LEN);
  ------------------
  |  |   62|    613|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(mf->n_bytes == ETH_ADDR_LEN);
  ------------------
  |  |  205|    613|#define ETH_ADDR_LEN           6
  ------------------
 3057|       |
 3058|    613|    n = -1;
 3059|    613|    if (ovs_scan(s, ETH_ADDR_SCAN_FMT"%n", ETH_ADDR_SCAN_ARGS(*mac), &n)
  ------------------
  |  |  403|    613|#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|    613|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
  |  Branch (3059:9): [True: 583, False: 30]
  ------------------
 3060|    583|        && n == strlen(s)) {
  ------------------
  |  Branch (3060:12): [True: 212, False: 371]
  ------------------
 3061|    212|        *mask = eth_addr_exact;
 3062|    212|        return NULL;
 3063|    212|    }
 3064|       |
 3065|    401|    n = -1;
 3066|    401|    if (ovs_scan(s, ETH_ADDR_SCAN_FMT"/"ETH_ADDR_SCAN_FMT"%n",
  ------------------
  |  |  403|    401|#define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
  ------------------
  |  Branch (3066:9): [True: 352, False: 49]
  ------------------
 3067|    401|                 ETH_ADDR_SCAN_ARGS(*mac), ETH_ADDR_SCAN_ARGS(*mask), &n)
  ------------------
  |  |  405|    401|    &(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|    401|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
 3068|    352|        && n == strlen(s)) {
  ------------------
  |  Branch (3068:12): [True: 309, False: 43]
  ------------------
 3069|    309|        return NULL;
 3070|    309|    }
 3071|       |
 3072|     92|    return xasprintf("%s: invalid Ethernet address", s);
 3073|    401|}
meta-flow.c:mf_from_ipv4_string:
 3078|  1.59k|{
 3079|  1.59k|    ovs_assert(mf->n_bytes == sizeof *ip);
  ------------------
  |  |   62|  1.59k|#define ovs_assert ovs_ignore
  ------------------
 3080|  1.59k|    return ip_parse_masked(s, ip, mask);
 3081|  1.59k|}
meta-flow.c:mf_from_ipv6_string:
 3086|  2.79k|{
 3087|  2.79k|    ovs_assert(mf->n_bytes == sizeof *ipv6);
  ------------------
  |  |   62|  2.79k|#define ovs_assert ovs_ignore
  ------------------
 3088|  2.79k|    return ipv6_parse_masked(s, ipv6, mask);
 3089|  2.79k|}
meta-flow.c:mf_from_ofp_port_string:
 3095|    247|{
 3096|    247|    ofp_port_t port;
 3097|       |
 3098|    247|    ovs_assert(mf->n_bytes == sizeof(ovs_be16));
  ------------------
  |  |   62|    247|#define ovs_assert ovs_ignore
  ------------------
 3099|       |
 3100|    247|    if (ofputil_port_from_string(s, port_map, &port)) {
  ------------------
  |  Branch (3100:9): [True: 245, False: 2]
  ------------------
 3101|    245|        *valuep = htons(ofp_to_u16(port));
 3102|    245|        *maskp = OVS_BE16_MAX;
  ------------------
  |  |   42|    245|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 3103|    245|        return NULL;
 3104|    245|    }
 3105|      2|    return xasprintf("%s: invalid or unknown port for %s", s, mf->name);
 3106|    247|}
meta-flow.c:mf_from_ofp_port_string32:
 3112|    373|{
 3113|    373|    ofp_port_t port;
 3114|       |
 3115|    373|    ovs_assert(mf->n_bytes == sizeof(ovs_be32));
  ------------------
  |  |   62|    373|#define ovs_assert ovs_ignore
  ------------------
 3116|    373|    if (ofputil_port_from_string(s, port_map, &port)) {
  ------------------
  |  Branch (3116:9): [True: 371, False: 2]
  ------------------
 3117|    371|        *valuep = ofputil_port_to_ofp11(port);
 3118|    371|        *maskp = OVS_BE32_MAX;
  ------------------
  |  |   43|    371|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
 3119|    371|        return NULL;
 3120|    371|    }
 3121|      2|    return xasprintf("%s: port value out of range for %s", s, mf->name);
 3122|    373|}
meta-flow.c:mf_from_frag_string:
 3150|    468|{
 3151|    468|    const struct frag_handling *h;
 3152|       |
 3153|  1.69k|    for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
  ------------------
  |  |  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 (3153:25): [True: 1.64k, False: 46]
  ------------------
 3154|  1.64k|        if (!strcasecmp(s, h->name)) {
  ------------------
  |  Branch (3154:13): [True: 422, False: 1.22k]
  ------------------
 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|    422|            *maskp = h->mask | ~FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    422|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    422|#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|    422|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 3158|    422|            *valuep = h->value;
 3159|    422|            return NULL;
 3160|    422|        }
 3161|  1.64k|    }
 3162|       |
 3163|     46|    return xasprintf("%s: unknown fragment type (valid types are \"no\", "
 3164|     46|                     "\"yes\", \"first\", \"later\", \"not_later\"", s);
 3165|    468|}
meta-flow.c:mf_from_tun_flags_string:
 3199|  1.10k|{
 3200|  1.10k|    return parse_mf_flags(s, flow_tun_flag_to_string, "tunnel", flagsp,
 3201|       |                          htons(FLOW_TNL_PUB_F_MASK), maskp);
 3202|  1.10k|}
meta-flow.c:parse_mf_flags:
 3171|  1.85k|{
 3172|  1.85k|    int err;
 3173|  1.85k|    char *err_str;
 3174|  1.85k|    uint32_t flags, mask;
 3175|       |
 3176|  1.85k|    err = parse_flags(s, bit_to_string, '\0', field_name, &err_str,
 3177|  1.85k|                      &flags, ntohs(allowed), maskp ? &mask : NULL);
  ------------------
  |  Branch (3177:47): [True: 1.85k, False: 0]
  ------------------
 3178|  1.85k|    if (err < 0) {
  ------------------
  |  Branch (3178:9): [True: 90, False: 1.76k]
  ------------------
 3179|     90|        return err_str;
 3180|     90|    }
 3181|       |
 3182|  1.76k|    *flagsp = htons(flags);
 3183|  1.76k|    if (maskp) {
  ------------------
  |  Branch (3183:9): [True: 1.76k, False: 0]
  ------------------
 3184|  1.76k|        *maskp = htons(mask);
 3185|  1.76k|    }
 3186|       |
 3187|       |    return NULL;
 3188|  1.85k|}
meta-flow.c:mf_from_tcp_flags_string:
 3192|    750|{
 3193|    750|    return parse_mf_flags(s, packet_tcp_flag_to_string, "TCP", flagsp,
 3194|       |                          TCP_FLAGS_BE16(OVS_BE16_MAX), maskp);
  ------------------
  |  |  905|    750|#define TCP_FLAGS_BE16(tcp_ctl) ((tcp_ctl) & htons(0x0fff))
  ------------------
 3195|    750|}
meta-flow.c:mf_from_packet_type_string:
 3014|    572|{
 3015|    572|    const char *err_str;
 3016|    572|    char *tail;
 3017|    572|    int err;
 3018|       |
 3019|    572|    if (*s != '(') {
  ------------------
  |  Branch (3019:9): [True: 3, False: 569]
  ------------------
 3020|      3|        err_str = "missing '('";
 3021|      3|        goto syntax_error;
 3022|      3|    }
 3023|    569|    s++;
 3024|    569|    err = parse_int_string(s, (uint8_t *)packet_type, 2, &tail);
 3025|    569|    if (err) {
  ------------------
  |  Branch (3025:9): [True: 2, False: 567]
  ------------------
 3026|      2|        err_str = "ns";
 3027|      2|        goto syntax_error;
 3028|      2|    }
 3029|    567|    if (*tail != ',') {
  ------------------
  |  Branch (3029:9): [True: 5, False: 562]
  ------------------
 3030|      5|        err_str = "missing ','";
 3031|      5|        goto syntax_error;
 3032|      5|    }
 3033|    562|    s = tail + 1;
 3034|    562|    err = parse_int_string(s, ((uint8_t *)packet_type) + 2, 2, &tail);
 3035|    562|    if (err) {
  ------------------
  |  Branch (3035:9): [True: 2, False: 560]
  ------------------
 3036|      2|        err_str = "ns_type";
 3037|      2|        goto syntax_error;
 3038|      2|    }
 3039|    560|    if (*tail != ')') {
  ------------------
  |  Branch (3039:9): [True: 2, False: 558]
  ------------------
 3040|      2|        err_str = "missing ')'";
 3041|      2|        goto syntax_error;
 3042|      2|    }
 3043|       |
 3044|    558|    return NULL;
 3045|       |
 3046|     14|syntax_error:
 3047|     14|    return xasprintf("%s: bad syntax for packet type %s", s, err_str);
 3048|    560|}
meta-flow.c:mf_format_integer_string:
 3327|     33|{
 3328|     33|    if (mf->string == MFS_HEXADECIMAL) {
  ------------------
  |  Branch (3328:9): [True: 29, False: 4]
  ------------------
 3329|     29|        ds_put_hex(s, valuep, mf->n_bytes);
 3330|     29|    } 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|     33|    if (maskp) {
  ------------------
  |  Branch (3341:9): [True: 0, False: 33]
  ------------------
 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|     33|}
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|     18|{
 3370|     18|    format_flags_masked(s, NULL, flow_tun_flag_to_string, ntohs(value),
 3371|     18|                        ntohs(mask) & FLOW_TNL_PUB_F_MASK, FLOW_TNL_PUB_F_MASK);
  ------------------
  |  |   58|     18|#define FLOW_TNL_PUB_F_MASK ((1 << 1) - 1)
  ------------------
                                      ntohs(mask) & FLOW_TNL_PUB_F_MASK, FLOW_TNL_PUB_F_MASK);
  ------------------
  |  |   58|     18|#define FLOW_TNL_PUB_F_MASK ((1 << 1) - 1)
  ------------------
 3372|     18|}
meta-flow.c:mf_format_tcp_flags_string:
 3376|      9|{
 3377|      9|    format_flags_masked(s, NULL, packet_tcp_flag_to_string, ntohs(value),
 3378|      9|                        TCP_FLAGS(mask), TCP_FLAGS(OVS_BE16_MAX));
  ------------------
  |  |  904|      9|#define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
  ------------------
                                      TCP_FLAGS(mask), TCP_FLAGS(OVS_BE16_MAX));
  ------------------
  |  |  904|      9|#define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
  ------------------
 3379|      9|}
meta-flow.c:mf_format_packet_type_string:
 3390|     48|{
 3391|     48|    format_packet_type_masked(s, value, mask);
 3392|     48|}

multipath_check:
   38|    841|{
   39|    841|    return mf_check_dst(&mp->dst, match);
   40|    841|}
multipath_parse:
  223|  2.95k|{
  224|  2.95k|    char *s = xstrdup(s_);
  225|  2.95k|    char *error = multipath_parse__(mp, s_, s);
  226|  2.95k|    free(s);
  227|  2.95k|    return error;
  228|  2.95k|}
multipath.c:multipath_parse__:
  145|  2.95k|{
  146|  2.95k|    char *save_ptr = NULL;
  147|  2.95k|    char *fields, *basis, *algorithm, *n_links_str, *arg, *dst;
  148|  2.95k|    char *error;
  149|  2.95k|    int n_links;
  150|       |
  151|  2.95k|    fields = strtok_r(s, ", ", &save_ptr);
  152|  2.95k|    basis = strtok_r(NULL, ", ", &save_ptr);
  153|  2.95k|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  154|  2.95k|    n_links_str = strtok_r(NULL, ", ", &save_ptr);
  155|  2.95k|    arg = strtok_r(NULL, ", ", &save_ptr);
  156|  2.95k|    dst = strtok_r(NULL, ", ", &save_ptr);
  157|  2.95k|    if (!dst) {
  ------------------
  |  Branch (157:9): [True: 4, False: 2.94k]
  ------------------
  158|      4|        return xasprintf("%s: not enough arguments to multipath action", s_);
  159|      4|    }
  160|       |
  161|  2.94k|    ofpact_init_MULTIPATH(mp);
  162|  2.94k|    if (!strcasecmp(fields, "eth_src")) {
  ------------------
  |  Branch (162:9): [True: 411, False: 2.53k]
  ------------------
  163|    411|        mp->fields = NX_HASH_FIELDS_ETH_SRC;
  164|  2.53k|    } else if (!strcasecmp(fields, "symmetric_l4")) {
  ------------------
  |  Branch (164:16): [True: 303, False: 2.23k]
  ------------------
  165|    303|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
  166|  2.23k|    } else if (!strcasecmp(fields, "symmetric_l3l4")) {
  ------------------
  |  Branch (166:16): [True: 266, False: 1.96k]
  ------------------
  167|    266|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
  168|  1.96k|    } else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
  ------------------
  |  Branch (168:16): [True: 199, False: 1.77k]
  ------------------
  169|    199|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
  170|  1.77k|    } else if (!strcasecmp(fields, "nw_src")) {
  ------------------
  |  Branch (170:16): [True: 321, False: 1.44k]
  ------------------
  171|    321|        mp->fields = NX_HASH_FIELDS_NW_SRC;
  172|  1.44k|    } else if (!strcasecmp(fields, "nw_dst")) {
  ------------------
  |  Branch (172:16): [True: 615, False: 834]
  ------------------
  173|    615|        mp->fields = NX_HASH_FIELDS_NW_DST;
  174|    834|    } else if (!strcasecmp(fields, "symmetric_l3")) {
  ------------------
  |  Branch (174:16): [True: 605, False: 229]
  ------------------
  175|    605|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
  176|    605|    } else {
  177|    229|        return xasprintf("%s: unknown fields `%s'", s_, fields);
  178|    229|    }
  179|  2.72k|    mp->basis = atoi(basis);
  180|  2.72k|    if (!strcasecmp(algorithm, "modulo_n")) {
  ------------------
  |  Branch (180:9): [True: 349, False: 2.37k]
  ------------------
  181|    349|        mp->algorithm = NX_MP_ALG_MODULO_N;
  182|  2.37k|    } else if (!strcasecmp(algorithm, "hash_threshold")) {
  ------------------
  |  Branch (182:16): [True: 77, False: 2.29k]
  ------------------
  183|     77|        mp->algorithm = NX_MP_ALG_HASH_THRESHOLD;
  184|  2.29k|    } else if (!strcasecmp(algorithm, "hrw")) {
  ------------------
  |  Branch (184:16): [True: 1.10k, False: 1.18k]
  ------------------
  185|  1.10k|        mp->algorithm = NX_MP_ALG_HRW;
  186|  1.18k|    } else if (!strcasecmp(algorithm, "iter_hash")) {
  ------------------
  |  Branch (186:16): [True: 1.01k, False: 171]
  ------------------
  187|  1.01k|        mp->algorithm = NX_MP_ALG_ITER_HASH;
  188|  1.01k|    } else {
  189|    171|        return xasprintf("%s: unknown algorithm `%s'", s_, algorithm);
  190|    171|    }
  191|  2.54k|    n_links = atoi(n_links_str);
  192|  2.54k|    if (n_links < 1 || n_links > 65536) {
  ------------------
  |  Branch (192:9): [True: 20, False: 2.52k]
  |  Branch (192:24): [True: 16, False: 2.51k]
  ------------------
  193|     36|        return xasprintf("%s: n_links %d is not in valid range 1 to 65536",
  194|     36|                         s_, n_links);
  195|     36|    }
  196|  2.51k|    mp->max_link = n_links - 1;
  197|  2.51k|    mp->arg = atoi(arg);
  198|       |
  199|  2.51k|    error = mf_parse_subfield(&mp->dst, dst);
  200|  2.51k|    if (error) {
  ------------------
  |  Branch (200:9): [True: 29, False: 2.48k]
  ------------------
  201|     29|        return error;
  202|     29|    }
  203|  2.48k|    if (!mf_nxm_header(mp->dst.field->id)) {
  ------------------
  |  Branch (203:9): [True: 1, False: 2.48k]
  ------------------
  204|      1|        return xasprintf("%s: experimenter OXM field '%s' not supported",
  205|      1|                         s_, dst);
  206|      1|    }
  207|  2.48k|    if (mp->dst.n_bits < 16 && n_links > (1u << mp->dst.n_bits)) {
  ------------------
  |  Branch (207:9): [True: 399, False: 2.08k]
  |  Branch (207:32): [True: 8, False: 391]
  ------------------
  208|      8|        return xasprintf("%s: %d-bit destination field has %u possible "
  209|      8|                         "values, less than specified n_links %d",
  210|      8|                         s_, mp->dst.n_bits, 1u << mp->dst.n_bits, n_links);
  211|      8|    }
  212|       |
  213|  2.47k|    return NULL;
  214|  2.48k|}

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

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

ofpact_put_set_field:
 3385|  51.8k|{
 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|  51.8k|    size_t total_size = 2 * ROUND_UP(field->n_bytes, OFPACT_ALIGNTO);
  ------------------
  |  |  303|  51.8k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  51.8k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 3392|  51.8k|    struct ofpact_set_field *sf = ofpact_put_SET_FIELD(ofpacts);
 3393|  51.8k|    sf->field = field;
 3394|       |
 3395|       |    /* Fill with all zeroes to make sure the padding is initialized. */
 3396|  51.8k|    ofpbuf_put_zeros(ofpacts, total_size);
 3397|  51.8k|    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|  51.8k|    if (value) {
  ------------------
  |  Branch (3401:9): [True: 51.1k, False: 758]
  ------------------
 3402|  51.1k|        memcpy(sf->value, value, field->n_bytes);
 3403|  51.1k|        if (mask) {
  ------------------
  |  Branch (3403:13): [True: 51.1k, False: 0]
  ------------------
 3404|  51.1k|            memcpy(ofpact_set_field_mask(sf), mask, field->n_bytes);
  ------------------
  |  |  563|  51.1k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  51.1k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  51.1k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  51.1k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3405|  51.1k|        } 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|  51.1k|    }
 3409|       |
 3410|       |    /* Update length. */
 3411|  51.8k|    ofpact_finish_SET_FIELD(ofpacts, &sf);
 3412|       |
 3413|  51.8k|    return sf;
 3414|  51.8k|}
ofpact_put_reg_load:
 3424|    758|{
 3425|    758|    struct ofpact_set_field *sf = ofpact_put_set_field(ofpacts, field, value,
 3426|    758|                                                       mask);
 3427|    758|    sf->ofpact.raw = NXAST_RAW_REG_LOAD;
 3428|       |
 3429|    758|    return sf;
 3430|    758|}
ovs_instruction_name_from_type:
 8363|     59|{
 8364|     59|    return type < ARRAY_SIZE(inst_info) ? inst_info[type].name : NULL;
  ------------------
  |  |  297|     59|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|     59|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|     59|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|     59|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     59|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|     59|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (8364:12): [True: 59, False: 0]
  ------------------
 8365|     59|}
ovs_instruction_type_from_ofpact_type:
 8382|   303k|{
 8383|   303k|    switch (type) {
 8384|    328|    case OFPACT_METER:
  ------------------
  |  Branch (8384:5): [True: 328, False: 302k]
  ------------------
 8385|    328|        return (version >= OFP15_VERSION
  ------------------
  |  Branch (8385:17): [True: 0, False: 328]
  ------------------
 8386|    328|                ? OVSINST_OFPIT11_APPLY_ACTIONS
 8387|    328|                : OVSINST_OFPIT13_METER);
 8388|     28|    case OFPACT_CLEAR_ACTIONS:
  ------------------
  |  Branch (8388:5): [True: 28, False: 303k]
  ------------------
 8389|     28|        return OVSINST_OFPIT11_CLEAR_ACTIONS;
 8390|    171|    case OFPACT_WRITE_ACTIONS:
  ------------------
  |  Branch (8390:5): [True: 171, False: 303k]
  ------------------
 8391|    171|        return OVSINST_OFPIT11_WRITE_ACTIONS;
 8392|     16|    case OFPACT_WRITE_METADATA:
  ------------------
  |  Branch (8392:5): [True: 16, False: 303k]
  ------------------
 8393|     16|        return OVSINST_OFPIT11_WRITE_METADATA;
 8394|     23|    case OFPACT_GOTO_TABLE:
  ------------------
  |  Branch (8394:5): [True: 23, False: 303k]
  ------------------
 8395|     23|        return OVSINST_OFPIT11_GOTO_TABLE;
 8396|   124k|    case OFPACT_OUTPUT:
  ------------------
  |  Branch (8396:5): [True: 124k, False: 178k]
  ------------------
 8397|   125k|    case OFPACT_GROUP:
  ------------------
  |  Branch (8397:5): [True: 517, False: 302k]
  ------------------
 8398|   133k|    case OFPACT_CLONE:
  ------------------
  |  Branch (8398:5): [True: 8.34k, False: 294k]
  ------------------
 8399|   143k|    case OFPACT_CONTROLLER:
  ------------------
  |  Branch (8399:5): [True: 9.81k, False: 293k]
  ------------------
 8400|   145k|    case OFPACT_ENQUEUE:
  ------------------
  |  Branch (8400:5): [True: 1.97k, False: 301k]
  ------------------
 8401|   146k|    case OFPACT_OUTPUT_REG:
  ------------------
  |  Branch (8401:5): [True: 893, False: 302k]
  ------------------
 8402|   147k|    case OFPACT_OUTPUT_TRUNC:
  ------------------
  |  Branch (8402:5): [True: 1.27k, False: 301k]
  ------------------
 8403|   148k|    case OFPACT_BUNDLE:
  ------------------
  |  Branch (8403:5): [True: 1.37k, False: 301k]
  ------------------
 8404|   151k|    case OFPACT_SET_VLAN_VID:
  ------------------
  |  Branch (8404:5): [True: 2.90k, False: 300k]
  ------------------
 8405|   154k|    case OFPACT_SET_VLAN_PCP:
  ------------------
  |  Branch (8405:5): [True: 2.82k, False: 300k]
  ------------------
 8406|   158k|    case OFPACT_STRIP_VLAN:
  ------------------
  |  Branch (8406:5): [True: 3.86k, False: 299k]
  ------------------
 8407|   160k|    case OFPACT_PUSH_VLAN:
  ------------------
  |  Branch (8407:5): [True: 2.37k, False: 300k]
  ------------------
 8408|   161k|    case OFPACT_SET_ETH_SRC:
  ------------------
  |  Branch (8408:5): [True: 1.21k, False: 301k]
  ------------------
 8409|   162k|    case OFPACT_SET_ETH_DST:
  ------------------
  |  Branch (8409:5): [True: 744, False: 302k]
  ------------------
 8410|   163k|    case OFPACT_SET_IPV4_SRC:
  ------------------
  |  Branch (8410:5): [True: 985, False: 302k]
  ------------------
 8411|   164k|    case OFPACT_SET_IPV4_DST:
  ------------------
  |  Branch (8411:5): [True: 1.04k, False: 302k]
  ------------------
 8412|   165k|    case OFPACT_SET_IP_DSCP:
  ------------------
  |  Branch (8412:5): [True: 1.20k, False: 301k]
  ------------------
 8413|   167k|    case OFPACT_SET_IP_ECN:
  ------------------
  |  Branch (8413:5): [True: 1.52k, False: 301k]
  ------------------
 8414|   169k|    case OFPACT_SET_IP_TTL:
  ------------------
  |  Branch (8414:5): [True: 1.54k, False: 301k]
  ------------------
 8415|   171k|    case OFPACT_SET_L4_SRC_PORT:
  ------------------
  |  Branch (8415:5): [True: 2.45k, False: 300k]
  ------------------
 8416|   173k|    case OFPACT_SET_L4_DST_PORT:
  ------------------
  |  Branch (8416:5): [True: 2.15k, False: 301k]
  ------------------
 8417|   174k|    case OFPACT_REG_MOVE:
  ------------------
  |  Branch (8417:5): [True: 871, False: 302k]
  ------------------
 8418|   212k|    case OFPACT_SET_FIELD:
  ------------------
  |  Branch (8418:5): [True: 38.1k, False: 265k]
  ------------------
 8419|   213k|    case OFPACT_STACK_PUSH:
  ------------------
  |  Branch (8419:5): [True: 899, False: 302k]
  ------------------
 8420|   215k|    case OFPACT_STACK_POP:
  ------------------
  |  Branch (8420:5): [True: 2.16k, False: 301k]
  ------------------
 8421|   218k|    case OFPACT_DEC_TTL:
  ------------------
  |  Branch (8421:5): [True: 3.19k, False: 299k]
  ------------------
 8422|   220k|    case OFPACT_SET_MPLS_LABEL:
  ------------------
  |  Branch (8422:5): [True: 1.69k, False: 301k]
  ------------------
 8423|   221k|    case OFPACT_SET_MPLS_TC:
  ------------------
  |  Branch (8423:5): [True: 1.31k, False: 301k]
  ------------------
 8424|   222k|    case OFPACT_SET_MPLS_TTL:
  ------------------
  |  Branch (8424:5): [True: 960, False: 302k]
  ------------------
 8425|   224k|    case OFPACT_DEC_MPLS_TTL:
  ------------------
  |  Branch (8425:5): [True: 1.90k, False: 301k]
  ------------------
 8426|   225k|    case OFPACT_PUSH_MPLS:
  ------------------
  |  Branch (8426:5): [True: 558, False: 302k]
  ------------------
 8427|   227k|    case OFPACT_POP_MPLS:
  ------------------
  |  Branch (8427:5): [True: 2.49k, False: 300k]
  ------------------
 8428|   229k|    case OFPACT_SET_TUNNEL:
  ------------------
  |  Branch (8428:5): [True: 1.64k, False: 301k]
  ------------------
 8429|   229k|    case OFPACT_SET_QUEUE:
  ------------------
  |  Branch (8429:5): [True: 359, False: 302k]
  ------------------
 8430|   230k|    case OFPACT_POP_QUEUE:
  ------------------
  |  Branch (8430:5): [True: 1.06k, False: 302k]
  ------------------
 8431|   231k|    case OFPACT_FIN_TIMEOUT:
  ------------------
  |  Branch (8431:5): [True: 749, False: 302k]
  ------------------
 8432|   232k|    case OFPACT_RESUBMIT:
  ------------------
  |  Branch (8432:5): [True: 1.06k, False: 302k]
  ------------------
 8433|   265k|    case OFPACT_LEARN:
  ------------------
  |  Branch (8433:5): [True: 32.9k, False: 270k]
  ------------------
 8434|   265k|    case OFPACT_CONJUNCTION:
  ------------------
  |  Branch (8434:5): [True: 0, False: 303k]
  ------------------
 8435|   266k|    case OFPACT_MULTIPATH:
  ------------------
  |  Branch (8435:5): [True: 847, False: 302k]
  ------------------
 8436|   270k|    case OFPACT_NOTE:
  ------------------
  |  Branch (8436:5): [True: 3.62k, False: 299k]
  ------------------
 8437|   271k|    case OFPACT_EXIT:
  ------------------
  |  Branch (8437:5): [True: 1.39k, False: 301k]
  ------------------
 8438|   271k|    case OFPACT_UNROLL_XLATE:
  ------------------
  |  Branch (8438:5): [True: 0, False: 303k]
  ------------------
 8439|   273k|    case OFPACT_SAMPLE:
  ------------------
  |  Branch (8439:5): [True: 1.47k, False: 301k]
  ------------------
 8440|   274k|    case OFPACT_DEBUG_RECIRC:
  ------------------
  |  Branch (8440:5): [True: 1.05k, False: 302k]
  ------------------
 8441|   276k|    case OFPACT_DEBUG_SLOW:
  ------------------
  |  Branch (8441:5): [True: 2.37k, False: 300k]
  ------------------
 8442|   285k|    case OFPACT_CT:
  ------------------
  |  Branch (8442:5): [True: 9.07k, False: 294k]
  ------------------
 8443|   286k|    case OFPACT_CT_CLEAR:
  ------------------
  |  Branch (8443:5): [True: 1.19k, False: 301k]
  ------------------
 8444|   295k|    case OFPACT_NAT:
  ------------------
  |  Branch (8444:5): [True: 9.19k, False: 293k]
  ------------------
 8445|   299k|    case OFPACT_ENCAP:
  ------------------
  |  Branch (8445:5): [True: 3.16k, False: 300k]
  ------------------
 8446|   301k|    case OFPACT_DECAP:
  ------------------
  |  Branch (8446:5): [True: 2.04k, False: 301k]
  ------------------
 8447|   301k|    case OFPACT_DEC_NSH_TTL:
  ------------------
  |  Branch (8447:5): [True: 842, False: 302k]
  ------------------
 8448|   302k|    case OFPACT_CHECK_PKT_LARGER:
  ------------------
  |  Branch (8448:5): [True: 407, False: 302k]
  ------------------
 8449|   302k|    case OFPACT_DELETE_FIELD:
  ------------------
  |  Branch (8449:5): [True: 236, False: 302k]
  ------------------
 8450|   302k|    default:
  ------------------
  |  Branch (8450:5): [True: 0, False: 303k]
  ------------------
 8451|   302k|        return OVSINST_OFPIT11_APPLY_ACTIONS;
 8452|   303k|    }
 8453|   303k|}
ofpact_check_output_port:
 8782|   139k|{
 8783|   139k|    switch (port) {
 8784|    780|    case OFPP_IN_PORT:
  ------------------
  |  |   39|    780|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    780|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8784:5): [True: 780, False: 138k]
  ------------------
 8785|  2.65k|    case OFPP_TABLE:
  ------------------
  |  |   40|  2.65k|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  ------------------
  |  |  |  |  157|  2.65k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8785:5): [True: 1.87k, False: 137k]
  ------------------
 8786|  3.06k|    case OFPP_NORMAL:
  ------------------
  |  |   41|  3.06k|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  ------------------
  |  |  |  |  157|  3.06k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8786:5): [True: 414, False: 139k]
  ------------------
 8787|  3.49k|    case OFPP_FLOOD:
  ------------------
  |  |   42|  3.49k|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  ------------------
  |  |  |  |  157|  3.49k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8787:5): [True: 430, False: 139k]
  ------------------
 8788|  4.28k|    case OFPP_ALL:
  ------------------
  |  |   44|  4.28k|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  ------------------
  |  |  |  |  157|  4.28k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8788:5): [True: 790, False: 138k]
  ------------------
 8789|  4.74k|    case OFPP_CONTROLLER:
  ------------------
  |  |   45|  4.74k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  4.74k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8789:5): [True: 459, False: 139k]
  ------------------
 8790|  4.96k|    case OFPP_LOCAL:
  ------------------
  |  |   46|  4.96k|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|  4.96k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8790:5): [True: 219, False: 139k]
  ------------------
 8791|  4.96k|        return 0;
 8792|       |
 8793|      9|    case OFPP_NONE:
  ------------------
  |  |   47|      9|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|      9|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8793:5): [True: 9, False: 139k]
  ------------------
 8794|      9|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 8795|       |
 8796|   134k|    default:
  ------------------
  |  Branch (8796:5): [True: 134k, False: 4.97k]
  ------------------
 8797|   134k|        if (ofp_to_u16(port) < ofp_to_u16(max_ports)) {
  ------------------
  |  Branch (8797:13): [True: 134k, False: 45]
  ------------------
 8798|   134k|            return 0;
 8799|   134k|        }
 8800|     45|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 8801|   139k|    }
 8802|   139k|}
ofpacts_check:
 8851|  22.7k|{
 8852|       |    /* Save fields that might temporarily be modified. */
 8853|  22.7k|    struct flow *flow = &cp->match->flow;
 8854|  22.7k|    ovs_be32 packet_type = flow->packet_type;
 8855|  22.7k|    ovs_be16 dl_type = flow->dl_type;
 8856|  22.7k|    uint8_t nw_proto = flow->nw_proto;
 8857|  22.7k|    union flow_vlan_hdr vlans[FLOW_MAX_VLAN_HEADERS];
 8858|  22.7k|    memcpy(vlans, flow->vlans, sizeof vlans);
 8859|       |
 8860|       |    /* Check all the actions. */
 8861|  22.7k|    cp->usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  22.7k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 8862|  22.7k|    enum ofperr error = 0;
 8863|  22.7k|    struct ofpact *a;
 8864|   250k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   272k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 250k, False: 21.8k]
  |  |  ------------------
  |  |  262|   249k|         (POS) = ofpact_next(POS))
  ------------------
 8865|   250k|        error = ofpact_check__(a, cp);
 8866|   250k|        if (error) {
  ------------------
  |  Branch (8866:13): [True: 843, False: 249k]
  ------------------
 8867|    843|            break;
 8868|    843|        }
 8869|   250k|    }
 8870|       |
 8871|       |    /* Restore fields that may have been modified. */
 8872|  22.7k|    flow->packet_type = packet_type;
 8873|  22.7k|    flow->dl_type = dl_type;
 8874|  22.7k|    memcpy(flow->vlans, vlans, sizeof vlans);
 8875|  22.7k|    flow->nw_proto = nw_proto;
 8876|       |
 8877|  22.7k|    return error;
 8878|  22.7k|}
ofpact_get_mf_dst:
 8898|   257k|{
 8899|   257k|    if (ofpact->type == OFPACT_SET_FIELD) {
  ------------------
  |  Branch (8899:9): [True: 31.4k, False: 225k]
  ------------------
 8900|  31.4k|        const struct ofpact_set_field *orl;
 8901|       |
 8902|  31.4k|        orl = CONTAINER_OF(ofpact, struct ofpact_set_field, ofpact);
  ------------------
  |  |  124|  31.4k|        ((STRUCT *) (void *) ((char *) (POINTER) - offsetof (STRUCT, MEMBER)))
  ------------------
 8903|  31.4k|        return orl->field;
 8904|   225k|    } else if (ofpact->type == OFPACT_REG_MOVE) {
  ------------------
  |  Branch (8904:16): [True: 610, False: 224k]
  ------------------
 8905|    610|        const struct ofpact_reg_move *orm;
 8906|       |
 8907|    610|        orm = CONTAINER_OF(ofpact, struct ofpact_reg_move, ofpact);
  ------------------
  |  |  124|    610|        ((STRUCT *) (void *) ((char *) (POINTER) - offsetof (STRUCT, MEMBER)))
  ------------------
 8908|    610|        return orm->dst.field;
 8909|    610|    }
 8910|       |
 8911|   224k|    return NULL;
 8912|   257k|}
ofpacts_put_openflow_actions:
 9095|  25.5k|{
 9096|  25.5k|    const struct ofpact *a;
 9097|  25.5k|    size_t start_size = openflow->size;
 9098|       |
 9099|   199k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   225k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 199k, False: 25.5k]
  |  |  ------------------
  |  |  262|   199k|         (POS) = ofpact_next(POS))
  ------------------
 9100|   199k|        encode_ofpact(a, ofp_version, openflow);
 9101|   199k|    }
 9102|  25.5k|    return openflow->size - start_size;
 9103|  25.5k|}
ofpacts_put_openflow_instructions:
 9117|    729|{
 9118|    729|    const struct ofpact *end = ofpact_end(ofpacts, ofpacts_len);
 9119|    729|    const struct ofpact *a;
 9120|       |
 9121|    729|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (9121:9): [True: 0, False: 729]
  ------------------
 9122|      0|        ofpacts_put_openflow_actions(ofpacts, ofpacts_len, openflow,
 9123|      0|                                     ofp_version);
 9124|      0|        return;
 9125|      0|    }
 9126|       |
 9127|    729|    a = ofpacts;
 9128|  1.51k|    while (a < end) {
  ------------------
  |  Branch (9128:12): [True: 783, False: 729]
  ------------------
 9129|    783|        if (ofpact_is_apply_actions(a, ofp_version)) {
  ------------------
  |  Branch (9129:13): [True: 564, False: 219]
  ------------------
 9130|    564|            size_t ofs = openflow->size;
 9131|       |
 9132|    564|            instruction_put_OFPIT11_APPLY_ACTIONS(openflow);
 9133|  46.0k|            do {
 9134|  46.0k|                encode_ofpact(a, ofp_version, openflow);
 9135|  46.0k|                a = ofpact_next(a);
 9136|  46.0k|            } while (a < end && ofpact_is_apply_actions(a, ofp_version));
  ------------------
  |  Branch (9136:22): [True: 45.5k, False: 535]
  |  Branch (9136:33): [True: 45.4k, False: 29]
  ------------------
 9137|    564|            ofpacts_update_instruction_actions(openflow, ofs);
 9138|    564|        } else {
 9139|    219|            encode_ofpact(a, ofp_version, openflow);
 9140|    219|            a = ofpact_next(a);
 9141|    219|        }
 9142|    783|    }
 9143|    729|}
ofpact_put:
 9505|   417k|{
 9506|   417k|    struct ofpact *ofpact;
 9507|       |
 9508|   417k|    ofpacts->header = ofpbuf_put_uninit(ofpacts, len);
 9509|   417k|    ofpact = ofpacts->header;
 9510|   417k|    ofpact_init(ofpact, type, len);
 9511|   417k|    return ofpact;
 9512|   417k|}
ofpact_init:
 9517|   420k|{
 9518|   420k|    memset(ofpact, 0, len);
 9519|   420k|    ofpact->type = type;
 9520|   420k|    ofpact->raw = -1;
 9521|   420k|    ofpact->len = len;
 9522|   420k|}
ofpact_finish:
 9535|   127k|{
 9536|   127k|    ptrdiff_t len;
 9537|       |
 9538|   127k|    ovs_assert(ofpact == ofpacts->header);
  ------------------
  |  |   62|   127k|#define ovs_assert ovs_ignore
  ------------------
 9539|   127k|    len = (char *) ofpbuf_tail(ofpacts) - (char *) ofpact;
 9540|   127k|    ovs_assert(len > 0 && len <= UINT16_MAX);
  ------------------
  |  |   62|   127k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (9540:16): [True: 127k, False: 0]
  |  Branch (9540:27): [True: 127k, False: 0]
  ------------------
 9541|   127k|    ofpact->len = len;
 9542|   127k|    ofpbuf_padto(ofpacts, OFPACT_ALIGN(ofpacts->size));
  ------------------
  |  |  205|   127k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|   127k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|   127k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9543|       |
 9544|   127k|    return ofpacts->header;
 9545|   127k|}
ofpacts_parse_instructions:
 9707|  14.6k|{
 9708|       |    return ofpacts_parse_copy(s, pp, true, 0);
 9709|  14.6k|}
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|      1|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   74|      1|    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|      0|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   84|      1|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   85|      1|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      0|    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|      0|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   88|      0|    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|      2|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9715|      2|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 2, False: 38]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      2|    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|      0|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  106|      0|    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|      0|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  108|      0|                                                                        \
  |  |  109|      0|    /* Flow table interaction. */                                       \
  |  |  110|      0|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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|     19|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9715|     19|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 19, False: 21]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  123|     19|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  124|      1|    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|      5|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9715|      5|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 5, False: 35]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  127|      5|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  128|      0|           "check_pkt_larger")                                          \
  |  |  129|      0|                                                                        \
  |  |  130|      0|    /* Debugging actions.                                               \
  |  |  131|      0|     *                                                                  \
  |  |  132|      0|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|      0|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|      0|    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|      4|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9715|      4|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 4, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|      4|    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|      2|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9715|      2|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 2, False: 38]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  141|      2|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  142|      0|    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|  1.08k|{
 5666|  1.08k|    struct ofpact_conjunction *oc;
 5667|       |
 5668|  1.08k|    oc = ofpact_put_CONJUNCTION(out);
 5669|  1.08k|    oc->id = id;
 5670|  1.08k|    oc->clause = clause;
 5671|  1.08k|    oc->n_clauses = n_clauses;
 5672|  1.08k|}
ofp-actions.c:ofpacts_pull:
  536|  90.9k|{
  537|  90.9k|    size_t ofs;
  538|       |
  539|  90.9k|    ofs = ofpacts->size;
  540|  90.9k|    ofpbuf_pull(ofpacts, ofs);
  541|       |
  542|  90.9k|    return ofs;
  543|  90.9k|}
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|  98.9k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 8826|  98.9k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 98.9k, False: 151k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  98.9k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   65|  98.9k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 8826|    471|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 471, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    471|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   66|  7.74k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 8826|  7.74k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7.74k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  7.74k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   67|  7.74k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 8826|  1.41k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.41k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.41k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   68|  1.41k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 8826|    692|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 692, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    692|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   69|    933|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 8826|    933|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 933, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    933|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   70|    933|                                                                        \
  |  |   71|    933|    /* Header changes. */                                               \
  |  |   72|  30.0k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 8826|  30.0k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 30.0k, False: 220k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  30.0k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   73|  30.0k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 8826|  2.19k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.19k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.19k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   74|  2.19k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 8826|  1.70k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.70k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.70k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   75|  3.07k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 8826|  3.07k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 3.07k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  3.07k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   76|  3.07k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 8826|  1.55k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.55k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.55k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   77|  1.55k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 8826|    706|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 706, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    706|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   78|    706|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 8826|    403|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 403, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    403|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   79|    786|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 8826|    786|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 786, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    786|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   80|    848|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 8826|    848|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 848, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    848|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   81|    997|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 8826|    997|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 997, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    997|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   82|  1.14k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 8826|  1.14k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.14k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.14k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   83|  1.45k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 8826|  1.45k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.45k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.45k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   84|  2.08k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 8826|  2.08k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.08k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.08k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   85|  2.08k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 8826|  1.86k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.86k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.86k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   86|  1.86k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 8826|    610|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 610, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    610|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   87|    646|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 8826|    646|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 646, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    646|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   88|  2.10k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 8826|  2.10k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.10k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.10k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   89|  3.12k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 8826|  3.12k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 3.12k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  3.12k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   90|  3.12k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 8826|  1.26k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.26k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.26k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   91|  1.26k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 8826|  1.04k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.04k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.04k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   92|  1.04k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 8826|    873|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 873, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    873|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   93|  1.86k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 8826|  1.86k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.86k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.86k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   94|  1.86k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 8826|    558|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 558, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    558|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   95|  2.47k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 8826|  2.47k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.47k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.47k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   96|  2.47k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 8826|    684|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 684, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    684|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   97|    684|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 8826|    216|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 216, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    216|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   98|    216|                                                                        \
  |  |   99|    216|    /* Generic encap & decap */                                         \
  |  |  100|  1.72k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 8826|  1.72k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.72k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.72k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  101|  1.97k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 8826|  1.97k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.97k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.97k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  102|  1.97k|                                                                        \
  |  |  103|  1.97k|    /* Metadata. */                                                     \
  |  |  104|  1.97k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 8826|  1.29k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.29k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.29k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  105|  1.29k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 8826|    286|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 286, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    286|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  106|  1.04k|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 8826|  1.04k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.04k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.04k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  107|  1.04k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 8826|    749|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 749, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    749|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  108|    749|                                                                        \
  |  |  109|    749|    /* Flow table interaction. */                                       \
  |  |  110|  1.06k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 8826|  1.06k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.06k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.06k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  111|  31.3k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 8826|  31.3k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 31.3k, False: 218k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  31.3k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  112|  31.3k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 8826|    214|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 214, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    214|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  113|    214|                                                                        \
  |  |  114|    214|    /* Arithmetic. */                                                   \
  |  |  115|    841|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 8826|    841|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 841, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    841|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  116|    841|                                                                        \
  |  |  117|    841|    /* Other. */                                                        \
  |  |  118|  2.86k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 8826|  2.86k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.86k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.86k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  119|  2.86k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 8826|  1.13k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.13k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.13k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  120|  1.47k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 8826|  1.47k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.47k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.47k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  121|  1.47k|    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|  8.50k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 8826|  8.50k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 8.50k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  8.50k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  123|  8.50k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 8826|    889|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 889, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    889|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  124|  7.71k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 8826|  7.71k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7.71k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  7.71k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  125|  7.71k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 8826|    926|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 926, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    926|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  126|  7.56k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 8826|  7.56k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7.56k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  7.56k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  127|  7.56k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 8826|    405|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 405, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    405|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  128|    405|           "check_pkt_larger")                                          \
  |  |  129|    405|                                                                        \
  |  |  130|    405|    /* Debugging actions.                                               \
  |  |  131|    405|     *                                                                  \
  |  |  132|    405|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    405|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|  1.03k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 8826|  1.03k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.03k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.03k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  135|  2.35k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 8826|  2.35k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.35k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.35k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  136|  2.35k|                                                                        \
  |  |  137|  2.35k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  2.35k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 8826|    172|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 172, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    172|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  139|    172|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 8826|      7|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|      7|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  140|     65|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 8826|     65|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 65, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     65|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  141|     65|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 8826|      7|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|      7|            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|  98.9k|{
  718|  98.9k|    return ofpact_check_output_port(a->port, cp->max_ports);
  719|  98.9k|}
ofp-actions.c:check_GROUP:
  756|    471|{
  757|    471|    return 0;
  758|    471|}
ofp-actions.c:check_CONTROLLER:
 1074|  7.74k|{
 1075|  7.74k|    return 0;
 1076|  7.74k|}
ofp-actions.c:check_ENQUEUE:
 1161|  1.41k|{
 1162|  1.41k|    if (ofp_to_u16(a->port) >= ofp_to_u16(cp->max_ports)
  ------------------
  |  Branch (1162:9): [True: 1.00k, False: 411]
  ------------------
 1163|  1.41k|        && a->port != OFPP_IN_PORT
  ------------------
  |  |   39|  1.00k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|  2.42k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (1163:12): [True: 425, False: 582]
  ------------------
 1164|    425|        && a->port != OFPP_LOCAL) {
  ------------------
  |  |   46|    425|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|    425|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (1164:12): [True: 5, False: 420]
  ------------------
 1165|      5|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 1166|      5|    }
 1167|  1.41k|    return 0;
 1168|  1.41k|}
ofp-actions.c:check_OUTPUT_REG:
 1326|    692|{
 1327|    692|    return mf_check_src(&a->src, cp->match);
 1328|    692|}
ofp-actions.c:check_BUNDLE:
 1552|    933|{
 1553|    933|    return bundle_check(a, cp->max_ports, cp->match);
 1554|    933|}
ofp-actions.c:check_SET_FIELD:
 3352|  30.0k|{
 3353|  30.0k|    const struct mf_field *mf = a->field;
 3354|  30.0k|    struct flow *flow = &cp->match->flow;
 3355|  30.0k|    ovs_be16 *tci = &flow->vlans[0].tci;
 3356|       |
 3357|       |    /* Require OXM_OF_VLAN_VID to have an existing VLAN header. */
 3358|  30.0k|    if (!mf_are_prereqs_ok(mf, flow, NULL)
  ------------------
  |  Branch (3358:9): [True: 186, False: 29.8k]
  ------------------
 3359|  29.8k|        || (mf->id == MFF_VLAN_VID && !(*tci & htons(VLAN_CFI)))) {
  ------------------
  |  Branch (3359:13): [True: 392, False: 29.4k]
  |  Branch (3359:39): [True: 4, False: 388]
  ------------------
 3360|    190|        VLOG_WARN_RL(&rl, "set_field %s lacks correct prerequisites",
  ------------------
  |  |  224|    190|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    190|    do {                                                                \
  |  |  |  |  288|    190|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    190|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 190]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    190|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 190]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3361|    190|                     mf->name);
 3362|    190|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 3363|    190|    }
 3364|       |
 3365|       |    /* Remember if we saw a VLAN tag in the flow, to aid translating to
 3366|       |     * OpenFlow 1.1 if need be. */
 3367|  29.8k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 3368|  29.8k|    if (mf->id == MFF_VLAN_TCI) {
  ------------------
  |  Branch (3368:9): [True: 1.55k, False: 28.3k]
  ------------------
 3369|       |        /* The set field may add or remove the VLAN tag,
 3370|       |         * Mark the status temporarily. */
 3371|  1.55k|        *tci = a->value->be16;
 3372|  1.55k|    }
 3373|       |
 3374|  29.8k|    return 0;
 3375|  30.0k|}
ofp-actions.c:check_SET_VLAN_VID:
 1649|  2.19k|{
 1650|       |    /* Remember if we saw a vlan tag in the flow to aid translating to OpenFlow
 1651|       |     * 1.1+ if need be. */
 1652|  2.19k|    ovs_be16 *tci = &cp->match->flow.vlans[0].tci;
 1653|  2.19k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 1654|  2.19k|    if (!a->flow_has_vlan && !a->push_vlan_if_needed) {
  ------------------
  |  Branch (1654:9): [True: 870, False: 1.32k]
  |  Branch (1654:30): [True: 396, False: 474]
  ------------------
 1655|    396|        inconsistent_match(&cp->usable_protocols);
 1656|    396|    }
 1657|       |
 1658|       |    /* Temporarily mark that we have a vlan tag. */
 1659|  2.19k|    *tci |= htons(VLAN_CFI);
 1660|       |
 1661|  2.19k|    return 0;
 1662|  2.19k|}
ofp-actions.c:inconsistent_match:
 8812|  14.1k|{
 8813|  14.1k|    *usable_protocols &= OFPUTIL_P_OF10_ANY;
  ------------------
  |  |   60|  14.1k|#define OFPUTIL_P_OF10_ANY (OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY)
  |  |  ------------------
  |  |  |  |   58|  14.1k|#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.1k|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  ------------------
 8814|  14.1k|}
ofp-actions.c:check_SET_VLAN_PCP:
 1757|  1.70k|{
 1758|       |    /* Remember if we saw a vlan tag in the flow to aid translating to OpenFlow
 1759|       |     * 1.1+ if need be. */
 1760|  1.70k|    ovs_be16 *tci = &cp->match->flow.vlans[0].tci;
 1761|  1.70k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 1762|  1.70k|    if (!a->flow_has_vlan && !a->push_vlan_if_needed) {
  ------------------
  |  Branch (1762:9): [True: 487, False: 1.22k]
  |  Branch (1762:30): [True: 210, False: 277]
  ------------------
 1763|    210|        inconsistent_match(&cp->usable_protocols);
 1764|    210|    }
 1765|       |
 1766|       |    /* Temporarily mark that we have a vlan tag. */
 1767|  1.70k|    *tci |= htons(VLAN_CFI);
 1768|       |
 1769|  1.70k|    return 0;
 1770|  1.70k|}
ofp-actions.c:check_STRIP_VLAN:
 1826|  3.07k|{
 1827|  3.07k|    if (!(cp->match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (1827:9): [True: 1.23k, False: 1.83k]
  ------------------
 1828|  1.23k|        inconsistent_match(&cp->usable_protocols);
 1829|  1.23k|    }
 1830|       |    flow_pop_vlan(&cp->match->flow, NULL);
 1831|  3.07k|    return 0;
 1832|  3.07k|}
ofp-actions.c:check_PUSH_VLAN:
 1894|  1.55k|{
 1895|  1.55k|    struct flow *flow = &cp->match->flow;
 1896|  1.55k|    if (flow->vlans[FLOW_MAX_VLAN_HEADERS - 1].tci & htons(VLAN_CFI)) {
  ------------------
  |  |   75|  1.55k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
  |  Branch (1896:9): [True: 1, False: 1.55k]
  ------------------
 1897|       |        /* Support maximum (FLOW_MAX_VLAN_HEADERS) VLAN headers. */
 1898|      1|        return OFPERR_OFPBAC_BAD_TAG;
 1899|      1|    }
 1900|       |    /* Temporary mark that we have a vlan tag. */
 1901|  1.55k|    flow_push_vlan_uninit(flow, NULL);
 1902|       |    flow->vlans[0].tci |= htons(VLAN_CFI);
 1903|  1.55k|    return 0;
 1904|  1.55k|}
ofp-actions.c:check_SET_ETH_SRC:
 1998|    706|{
 1999|    706|    return 0;
 2000|    706|}
ofp-actions.c:check_SET_ETH_DST:
 2005|    403|{
 2006|    403|    return 0;
 2007|    403|}
ofp-actions.c:check_SET_IPV4_SRC:
 2100|    786|{
 2101|    786|    return check_set_ipv4(cp);
 2102|    786|}
ofp-actions.c:check_set_ipv4:
 2089|  1.63k|{
 2090|  1.63k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 2091|  1.63k|    if (dl_type != htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (2091:9): [True: 848, False: 786]
  ------------------
 2092|    848|        inconsistent_match(&cp->usable_protocols);
 2093|    848|    }
 2094|  1.63k|    return 0;
 2095|  1.63k|}
ofp-actions.c:check_SET_IPV4_DST:
 2107|    848|{
 2108|    848|    return check_set_ipv4(cp);
 2109|    848|}
ofp-actions.c:check_SET_IP_DSCP:
 2176|    997|{
 2177|    997|    return check_set_ip(cp);
 2178|    997|}
ofp-actions.c:check_set_ip:
 2166|  6.72k|{
 2167|  6.72k|    if (!is_ip_any(&cp->match->flow)) {
  ------------------
  |  Branch (2167:9): [True: 4.00k, False: 2.71k]
  ------------------
 2168|  4.00k|        inconsistent_match(&cp->usable_protocols);
 2169|  4.00k|    }
 2170|  6.72k|    return 0;
 2171|  6.72k|}
ofp-actions.c:check_SET_IP_ECN:
 2240|  1.14k|{
 2241|  1.14k|    return check_set_ip(cp);
 2242|  1.14k|}
ofp-actions.c:check_SET_IP_TTL:
 2295|  1.45k|{
 2296|  1.45k|    return check_set_ip(cp);
 2297|  1.45k|}
ofp-actions.c:check_SET_L4_SRC_PORT:
 2411|  2.08k|{
 2412|  2.08k|    return check_set_l4_port(a, cp);
 2413|  2.08k|}
ofp-actions.c:check_set_l4_port:
 2392|  3.94k|{
 2393|  3.94k|    const struct flow *flow = &cp->match->flow;
 2394|  3.94k|    if (!is_ip_any(flow)
  ------------------
  |  Branch (2394:9): [True: 1.06k, False: 2.88k]
  ------------------
 2395|  2.88k|        || flow->nw_frag & FLOW_NW_FRAG_LATER
  ------------------
  |  |   55|  6.83k|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (2395:12): [True: 389, False: 2.49k]
  ------------------
 2396|  2.49k|        || (flow->nw_proto != IPPROTO_TCP &&
  ------------------
  |  Branch (2396:13): [True: 1.84k, False: 655]
  ------------------
 2397|  1.84k|            flow->nw_proto != IPPROTO_UDP &&
  ------------------
  |  Branch (2397:13): [True: 1.27k, False: 568]
  ------------------
 2398|  2.28k|            flow->nw_proto != IPPROTO_SCTP)) {
  ------------------
  |  Branch (2398:13): [True: 836, False: 437]
  ------------------
 2399|  2.28k|        inconsistent_match(&cp->usable_protocols);
 2400|  2.28k|    }
 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|  3.94k|    a->flow_ip_proto = flow->nw_proto;
 2405|       |
 2406|  3.94k|    return 0;
 2407|  3.94k|}
ofp-actions.c:check_SET_L4_DST_PORT:
 2417|  1.86k|{
 2418|  1.86k|    return check_set_l4_port(a, cp);
 2419|  1.86k|}
ofp-actions.c:check_REG_MOVE:
 2722|    610|{
 2723|    610|    return nxm_reg_move_check(a, cp->match);
 2724|    610|}
ofp-actions.c:check_STACK_PUSH:
 3572|    646|{
 3573|    646|    return nxm_stack_push_check(a, cp->match);
 3574|    646|}
ofp-actions.c:check_STACK_POP:
 3579|  2.10k|{
 3580|  2.10k|    return nxm_stack_pop_check(a, cp->match);
 3581|  2.10k|}
ofp-actions.c:check_DEC_TTL:
 3755|  3.12k|{
 3756|  3.12k|    return check_set_ip(cp);
 3757|  3.12k|}
ofp-actions.c:check_SET_MPLS_LABEL:
 3828|  1.26k|{
 3829|  1.26k|    return check_set_mpls(cp);
 3830|  1.26k|}
ofp-actions.c:check_set_mpls:
 3817|  5.05k|{
 3818|  5.05k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 3819|  5.05k|    if (!eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (3819:9): [True: 2.78k, False: 2.26k]
  ------------------
 3820|  2.78k|        inconsistent_match(&cp->usable_protocols);
 3821|  2.78k|    }
 3822|  5.05k|    return 0;
 3823|  5.05k|}
ofp-actions.c:check_SET_MPLS_TC:
 3889|  1.04k|{
 3890|  1.04k|    return check_set_mpls(cp);
 3891|  1.04k|}
ofp-actions.c:check_SET_MPLS_TTL:
 3947|    873|{
 3948|    873|    return check_set_mpls(cp);
 3949|    873|}
ofp-actions.c:check_DEC_MPLS_TTL:
 3984|  1.86k|{
 3985|  1.86k|    return check_set_mpls(cp);
 3986|  1.86k|}
ofp-actions.c:check_PUSH_MPLS:
 4037|    558|{
 4038|    558|    struct flow *flow = &cp->match->flow;
 4039|       |
 4040|    558|    if (flow->packet_type != htonl(PT_ETH)) {
  ------------------
  |  Branch (4040:9): [True: 256, False: 302]
  ------------------
 4041|    256|        inconsistent_match(&cp->usable_protocols);
 4042|    256|    }
 4043|    558|    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|    558|    flow->nw_proto = 0;
 4049|       |
 4050|    558|    return 0;
 4051|    558|}
ofp-actions.c:check_POP_MPLS:
 4094|  2.47k|{
 4095|  2.47k|    struct flow *flow = &cp->match->flow;
 4096|  2.47k|    ovs_be16 dl_type = get_dl_type(flow);
 4097|       |
 4098|  2.47k|    if (flow->packet_type != htonl(PT_ETH) || !eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (4098:9): [True: 776, False: 1.70k]
  |  Branch (4098:47): [True: 879, False: 821]
  ------------------
 4099|  1.65k|        inconsistent_match(&cp->usable_protocols);
 4100|  1.65k|    }
 4101|  2.47k|    flow->dl_type = a->ethertype;
 4102|  2.47k|    return 0;
 4103|  2.47k|}
ofp-actions.c:check_DEC_NSH_TTL:
 4829|    684|{
 4830|    684|    struct flow *flow = &cp->match->flow;
 4831|    684|    if (flow->packet_type != htonl(PT_NSH) &&
  ------------------
  |  Branch (4831:9): [True: 461, False: 223]
  ------------------
 4832|    461|        flow->dl_type != htons(ETH_TYPE_NSH)) {
  ------------------
  |  Branch (4832:9): [True: 266, False: 195]
  ------------------
 4833|    266|        inconsistent_match(&cp->usable_protocols);
 4834|    266|    }
 4835|    684|    return 0;
 4836|    684|}
ofp-actions.c:check_DELETE_FIELD:
 4256|    216|{
 4257|    216|    if (odf->field->id < MFF_TUN_METADATA0 ||
  ------------------
  |  Branch (4257:9): [True: 1, False: 215]
  ------------------
 4258|    215|        odf->field->id > MFF_TUN_METADATA63) {
  ------------------
  |  Branch (4258:9): [True: 10, False: 205]
  ------------------
 4259|     11|        return OFPERR_OFPBAC_BAD_ARGUMENT;
 4260|     11|    }
 4261|    205|    return 0;
 4262|    216|}
ofp-actions.c:check_ENCAP:
 4664|  1.72k|{
 4665|  1.72k|    struct flow *flow = &cp->match->flow;
 4666|  1.72k|    flow->packet_type = a->new_pkt_type;
 4667|  1.72k|    if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (4667:9): [True: 1.01k, False: 719]
  ------------------
 4668|  1.01k|        flow->dl_type = htons(pt_ns_type(flow->packet_type));
 4669|  1.01k|    }
 4670|  1.72k|    if (!is_ip_any(flow)) {
  ------------------
  |  Branch (4670:9): [True: 1.20k, False: 527]
  ------------------
 4671|  1.20k|        flow->nw_proto = 0;
 4672|  1.20k|    }
 4673|  1.72k|    return 0;
 4674|  1.72k|}
ofp-actions.c:check_DECAP:
 4781|  1.97k|{
 4782|  1.97k|    struct flow *flow = &cp->match->flow;
 4783|  1.97k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (4783:9): [True: 999, False: 974]
  ------------------
 4784|       |        /* Adjust the packet_type to allow subsequent actions. */
 4785|    999|        flow->packet_type = PACKET_TYPE_BE(OFPHTN_ETHERTYPE,
  ------------------
  |  | 1565|    999|#define PACKET_TYPE_BE(NS, NS_TYPE) (htonl((NS) << 16 | (NS_TYPE)))
  ------------------
 4786|    999|                                           ntohs(flow->dl_type));
 4787|    999|    } else {
 4788|       |        /* The actual packet_type is only known after decapsulation.
 4789|       |         * Do not allow subsequent actions that depend on packet headers. */
 4790|    974|        flow->packet_type = htonl(PT_UNKNOWN);
 4791|    974|        flow->dl_type = OVS_BE16_MAX;
  ------------------
  |  |   42|    974|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 4792|    974|    }
 4793|  1.97k|    return 0;
 4794|  1.97k|}
ofp-actions.c:check_SET_TUNNEL:
 4177|  1.29k|{
 4178|  1.29k|    return 0;
 4179|  1.29k|}
ofp-actions.c:check_SET_QUEUE:
 4299|    286|{
 4300|    286|    return 0;
 4301|    286|}
ofp-actions.c:check_POP_QUEUE:
 4337|  1.04k|{
 4338|  1.04k|    return 0;
 4339|  1.04k|}
ofp-actions.c:check_FIN_TIMEOUT:
 4444|    749|{
 4445|    749|    if (cp->match->flow.nw_proto != IPPROTO_TCP) {
  ------------------
  |  Branch (4445:9): [True: 213, False: 536]
  ------------------
 4446|    213|        inconsistent_match(&cp->usable_protocols);
 4447|    213|    }
 4448|    749|    return 0;
 4449|    749|}
ofp-actions.c:check_RESUBMIT:
 5051|  1.06k|{
 5052|  1.06k|    if (a->with_ct_orig && !is_ct_valid(&cp->match->flow, &cp->match->wc,
  ------------------
  |  Branch (5052:9): [True: 396, False: 669]
  |  Branch (5052:28): [True: 3, False: 393]
  ------------------
 5053|    396|                                        NULL)) {
 5054|      3|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 5055|      3|    }
 5056|  1.06k|    return 0;
 5057|  1.06k|}
ofp-actions.c:check_LEARN:
 5646|  31.3k|{
 5647|  31.3k|    return learn_check(a, cp->match);
 5648|  31.3k|}
ofp-actions.c:check_CONJUNCTION:
 5739|    214|{
 5740|    214|    return 0;
 5741|    214|}
ofp-actions.c:check_MULTIPATH:
 5873|    841|{
 5874|    841|    return multipath_check(a, cp->match);
 5875|    841|}
ofp-actions.c:check_NOTE:
 5959|  2.86k|{
 5960|  2.86k|    return 0;
 5961|  2.86k|}
ofp-actions.c:check_EXIT:
 5996|  1.13k|{
 5997|  1.13k|    return 0;
 5998|  1.13k|}
ofp-actions.c:check_SAMPLE:
 6561|  1.47k|{
 6562|  1.47k|    return 0;
 6563|  1.47k|}
ofp-actions.c:check_CT:
 7068|  8.50k|{
 7069|  8.50k|    struct flow *flow = &cp->match->flow;
 7070|       |
 7071|  8.50k|    if (!dl_type_is_ip_any(get_dl_type(flow))
  ------------------
  |  Branch (7071:9): [True: 156, False: 8.34k]
  ------------------
 7072|  8.34k|        || (flow->ct_state & CS_INVALID && a->flags & NX_CT_F_COMMIT)
  ------------------
  |  Branch (7072:13): [True: 199, False: 8.14k]
  |  Branch (7072:44): [True: 1, False: 198]
  ------------------
 7073|  8.34k|        || (a->alg == IPPORT_FTP && flow->nw_proto != IPPROTO_TCP)
  ------------------
  |  |  695|  16.6k|#define IPPORT_FTP  21
  ------------------
  |  Branch (7073:13): [True: 68, False: 8.27k]
  |  Branch (7073:37): [True: 2, False: 66]
  ------------------
 7074|  8.34k|        || (a->alg == IPPORT_TFTP && flow->nw_proto != IPPROTO_UDP)) {
  ------------------
  |  |  699|  16.6k|#define IPPORT_TFTP  69
  ------------------
  |  Branch (7074:13): [True: 195, False: 8.15k]
  |  Branch (7074:38): [True: 1, False: 194]
  ------------------
 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|    160|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 7079|    160|    }
 7080|       |
 7081|  8.34k|    if (a->zone_src.field) {
  ------------------
  |  Branch (7081:9): [True: 328, False: 8.01k]
  ------------------
 7082|    328|        return mf_check_src(&a->zone_src, cp->match);
 7083|    328|    }
 7084|       |
 7085|  8.01k|    return check_subactions(a->actions, ofpact_ct_get_action_len(a), cp);
 7086|  8.34k|}
ofp-actions.c:check_subactions:
 6123|  15.5k|{
 6124|  15.5k|    struct ofpact_check_params sub = *cp;
 6125|  15.5k|    enum ofperr error = ofpacts_check(ofpacts, ofpacts_len, &sub);
 6126|  15.5k|    cp->usable_protocols &= sub.usable_protocols;
 6127|  15.5k|    return error;
 6128|  15.5k|}
ofp-actions.c:check_CT_CLEAR:
 7122|    889|{
 7123|    889|    return 0;
 7124|    889|}
ofp-actions.c:check_NAT:
 7480|  7.71k|{
 7481|  7.71k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 7482|  7.71k|    if (!dl_type_is_ip_any(dl_type) ||
  ------------------
  |  Branch (7482:9): [True: 0, False: 7.71k]
  ------------------
 7483|  7.71k|        (a->range_af == AF_INET && dl_type != htons(ETH_TYPE_IP)) ||
  ------------------
  |  Branch (7483:10): [True: 736, False: 6.97k]
  |  Branch (7483:36): [True: 1, False: 735]
  ------------------
 7484|  7.71k|        (a->range_af == AF_INET6 && dl_type != htons(ETH_TYPE_IPV6))) {
  ------------------
  |  Branch (7484:10): [True: 2.75k, False: 4.96k]
  |  Branch (7484:37): [True: 2, False: 2.74k]
  ------------------
 7485|      3|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 7486|      3|    }
 7487|  7.71k|    return 0;
 7488|  7.71k|}
ofp-actions.c:check_OUTPUT_TRUNC:
 7550|    926|{
 7551|    926|    return ofpact_check_output_port(a->port, cp->max_ports);
 7552|    926|}
ofp-actions.c:check_CLONE:
 6132|  7.56k|{
 6133|  7.56k|    return check_subactions(a->actions, ofpact_nest_get_action_len(a), cp);
 6134|  7.56k|}
ofp-actions.c:check_CHECK_PKT_LARGER:
 7911|    405|{
 7912|    405|    return 0;
 7913|    405|}
ofp-actions.c:check_DEBUG_RECIRC:
 6611|  1.03k|{
 6612|  1.03k|    return 0;
 6613|  1.03k|}
ofp-actions.c:check_DEBUG_SLOW:
 6651|  2.35k|{
 6652|  2.35k|    return 0;
 6653|  2.35k|}
ofp-actions.c:check_METER:
 7601|    172|{
 7602|    172|    uint32_t mid = a->meter_id;
 7603|    172|    return mid == 0 || mid > OFPM13_MAX ? OFPERR_OFPMMFC_INVALID_METER : 0;
  ------------------
  |  Branch (7603:12): [True: 1, False: 171]
  |  Branch (7603:24): [True: 16, False: 155]
  ------------------
 7604|    172|}
ofp-actions.c:check_CLEAR_ACTIONS:
 7635|      7|{
 7636|      7|    return 0;
 7637|      7|}
ofp-actions.c:check_WRITE_ACTIONS:
 7698|     65|{
 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|     65|    struct ofpact_check_params tmp = *cp;
 7702|     65|    return ofpacts_check(a->actions, ofpact_nest_get_action_len(a), &tmp);
 7703|     65|}
ofp-actions.c:check_WRITE_METADATA:
 7794|      7|{
 7795|      7|    return 0;
 7796|      7|}
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: 7, False: 4]
  |  Branch (7959:33): [True: 1, False: 6]
  ------------------
 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|  18.1k|{
 9007|  18.1k|    const struct ofpact *a;
 9008|  18.1k|    enum ovs_instruction_type inst;
 9009|       |
 9010|  18.1k|    inst = OVSINST_OFPIT13_METER;
 9011|   257k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   275k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 257k, False: 17.1k]
  |  |  ------------------
  |  |  262|   256k|         (POS) = ofpact_next(POS))
  ------------------
 9012|   257k|        enum ovs_instruction_type next;
 9013|   257k|        enum ofperr error;
 9014|       |
 9015|   257k|        if (a->type == OFPACT_CONJUNCTION) {
  ------------------
  |  Branch (9015:13): [True: 812, False: 257k]
  ------------------
 9016|  1.76k|            OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|  2.56k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 1.76k, False: 802]
  |  |  ------------------
  |  |  262|  1.75k|         (POS) = ofpact_next(POS))
  ------------------
 9017|  1.76k|                if (a->type != OFPACT_CONJUNCTION && a->type != OFPACT_NOTE) {
  ------------------
  |  Branch (9017:21): [True: 724, False: 1.03k]
  |  Branch (9017:54): [True: 10, False: 714]
  ------------------
 9018|     10|                    verify_error(errorp, "\"conjunction\" actions may be used "
 9019|     10|                                 "along with \"note\" but not any other kind "
 9020|     10|                                 "of action (such as the \"%s\" action used "
 9021|     10|                                 "here)", ofpact_name(a->type));
 9022|     10|                    return OFPERR_NXBAC_BAD_CONJUNCTION;
 9023|     10|                }
 9024|  1.76k|            }
 9025|    802|            return 0;
 9026|    812|        }
 9027|       |
 9028|   257k|        error = ofpacts_verify_nested(a, outer_action, errorp);
 9029|   257k|        if (error) {
  ------------------
  |  Branch (9029:13): [True: 157, False: 256k]
  ------------------
 9030|    157|            return error;
 9031|    157|        }
 9032|       |
 9033|   256k|        next = ovs_instruction_type_from_ofpact_type(a->type, version);
 9034|   256k|        if (a > ofpacts
  ------------------
  |  Branch (9034:13): [True: 242k, False: 14.3k]
  ------------------
 9035|   242k|            && (inst == OVSINST_OFPIT11_APPLY_ACTIONS
  ------------------
  |  Branch (9035:16): [True: 25, False: 242k]
  |  Branch (9035:17): [True: 242k, False: 146]
  ------------------
 9036|   242k|                ? next < inst
 9037|   242k|                : next <= inst)) {
 9038|     25|            const char *name = ovs_instruction_name_from_type(inst);
 9039|     25|            const char *next_name = ovs_instruction_name_from_type(next);
 9040|       |
 9041|     25|            if (next == inst) {
  ------------------
  |  Branch (9041:17): [True: 20, False: 5]
  ------------------
 9042|     20|                verify_error(errorp, "duplicate %s instruction not allowed, "
 9043|     20|                             "for OpenFlow 1.1+ compatibility", name);
 9044|     20|            } else {
 9045|      5|                verify_error(errorp, "invalid instruction ordering: "
 9046|      5|                             "%s must appear before %s, "
 9047|      5|                             "for OpenFlow 1.1+ compatibility",
 9048|      5|                             next_name, name);
 9049|      5|            }
 9050|     25|            return OFPERR_OFPBAC_UNSUPPORTED_ORDER;
 9051|     25|        }
 9052|   256k|        if (!((1u << next) & allowed_ovsinsts)) {
  ------------------
  |  Branch (9052:13): [True: 9, False: 256k]
  ------------------
 9053|      9|            const char *name = ovs_instruction_name_from_type(next);
 9054|       |
 9055|      9|            if (next == OVSINST_OFPIT13_METER && version >= OFP15_VERSION) {
  ------------------
  |  Branch (9055:17): [True: 0, False: 9]
  |  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|      9|            } else {
 9059|      9|                verify_error(errorp, "%s instruction not allowed here", name);
 9060|      9|                return OFPERR_OFPBIC_UNSUP_INST;
 9061|      9|            }
 9062|      9|        }
 9063|       |
 9064|   256k|        inst = next;
 9065|   256k|    }
 9066|       |
 9067|  17.1k|    return 0;
 9068|  18.1k|}
ofp-actions.c:verify_error:
 8916|    201|{
 8917|    201|    va_list args;
 8918|    201|    va_start(args, format);
 8919|    201|    char *error = xvasprintf(format, args);
 8920|    201|    va_end(args);
 8921|       |
 8922|    201|    if (errorp) {
  ------------------
  |  Branch (8922:9): [True: 201, False: 0]
  ------------------
 8923|    201|        *errorp = error;
 8924|    201|    } 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|    201|}
ofp-actions.c:ofpacts_verify_nested:
 8949|   257k|{
 8950|   257k|    const struct mf_field *field = ofpact_get_mf_dst(a);
 8951|       |
 8952|   257k|    if (field && field_requires_ct(field->id) && outer_action != OFPACT_CT) {
  ------------------
  |  Branch (8952:9): [True: 32.0k, False: 224k]
  |  Branch (8952:18): [True: 581, False: 31.5k]
  |  Branch (8952:50): [True: 12, False: 569]
  ------------------
 8953|     12|        verify_error(errorp, "cannot set CT fields outside of ct action");
 8954|     12|        return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 8955|     12|    }
 8956|   257k|    if (a->type == OFPACT_NAT) {
  ------------------
  |  Branch (8956:9): [True: 9.31k, False: 247k]
  ------------------
 8957|  9.31k|        if (outer_action != OFPACT_CT) {
  ------------------
  |  Branch (8957:13): [True: 128, False: 9.19k]
  ------------------
 8958|    128|            verify_error(errorp,
 8959|    128|                         "Cannot have NAT action outside of \"ct\" action");
 8960|    128|            return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 8961|    128|        }
 8962|  9.19k|        return 0;
 8963|  9.31k|    }
 8964|       |
 8965|   247k|    if (outer_action) {
  ------------------
  |  Branch (8965:9): [True: 40.3k, False: 207k]
  ------------------
 8966|  40.3k|        ovs_assert(outer_action == OFPACT_WRITE_ACTIONS
  ------------------
  |  |   62|  40.3k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (8966:20): [True: 11.2k, False: 29.1k]
  ------------------
 8967|  29.1k|                   || outer_action == OFPACT_CT
  ------------------
  |  Branch (8967:23): [True: 582, False: 28.5k]
  ------------------
 8968|  28.5k|                   || outer_action == OFPACT_CLONE);
  ------------------
  |  Branch (8968:23): [True: 28.5k, False: 0]
  ------------------
 8969|       |
 8970|  40.3k|        if (outer_action == OFPACT_CT) {
  ------------------
  |  Branch (8970:13): [True: 582, False: 39.8k]
  ------------------
 8971|    582|            if (!field) {
  ------------------
  |  Branch (8971:17): [True: 9, False: 573]
  ------------------
 8972|      9|                return unsupported_nesting(a->type, outer_action, errorp);
 8973|    573|            } else if (!field_requires_ct(field->id)) {
  ------------------
  |  Branch (8973:24): [True: 4, False: 569]
  ------------------
 8974|      4|                verify_error(errorp,
 8975|      4|                             "%s action doesn't support nested modification "
 8976|      4|                             "of %s", ofpact_name(outer_action), field->name);
 8977|      4|                return OFPERR_OFPBAC_BAD_ARGUMENT;
 8978|      4|            }
 8979|    582|        }
 8980|       |
 8981|  40.3k|        if (a->type == OFPACT_METER) {
  ------------------
  |  Branch (8981:13): [True: 4, False: 40.3k]
  ------------------
 8982|      4|            return unsupported_nesting(a->type, outer_action, errorp);
 8983|      4|        }
 8984|  40.3k|    }
 8985|       |
 8986|   247k|    return 0;
 8987|   247k|}
ofp-actions.c:field_requires_ct:
 8941|  32.6k|{
 8942|  32.6k|    return field == MFF_CT_MARK || field == MFF_CT_LABEL;
  ------------------
  |  Branch (8942:12): [True: 749, False: 31.9k]
  |  Branch (8942:36): [True: 401, False: 31.5k]
  ------------------
 8943|  32.6k|}
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|   245k|{
 9076|   245k|    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|  97.7k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9078|  97.7k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 97.7k, False: 148k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  97.7k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  97.7k|            return;
  |  |  ------------------
  |  |   65|  97.7k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9078|    471|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 471, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    471|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    471|            return;
  |  |  ------------------
  |  |   66|  7.69k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9078|  7.69k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7.69k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  7.69k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  7.69k|            return;
  |  |  ------------------
  |  |   67|  7.69k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9078|  1.41k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.41k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.41k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.41k|            return;
  |  |  ------------------
  |  |   68|  1.41k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9078|    677|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 677, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    677|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    677|            return;
  |  |  ------------------
  |  |   69|    925|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9078|    925|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 925, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    925|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    925|            return;
  |  |  ------------------
  |  |   70|    925|                                                                        \
  |  |   71|    925|    /* Header changes. */                                               \
  |  |   72|  29.7k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9078|  29.7k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 29.7k, False: 216k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  29.7k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  29.7k|            return;
  |  |  ------------------
  |  |   73|  29.7k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9078|  2.19k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.19k, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.19k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.19k|            return;
  |  |  ------------------
  |  |   74|  2.19k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9078|  1.70k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.70k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.70k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.70k|            return;
  |  |  ------------------
  |  |   75|  2.80k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9078|  2.80k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.80k, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.80k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.80k|            return;
  |  |  ------------------
  |  |   76|  2.80k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9078|  1.30k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.30k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.30k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.30k|            return;
  |  |  ------------------
  |  |   77|  1.30k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9078|    706|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 706, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    706|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    706|            return;
  |  |  ------------------
  |  |   78|    706|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9078|    403|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 403, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    403|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    403|            return;
  |  |  ------------------
  |  |   79|    759|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9078|    759|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 759, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    759|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    759|            return;
  |  |  ------------------
  |  |   80|    808|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9078|    808|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 808, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    808|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    808|            return;
  |  |  ------------------
  |  |   81|    987|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9078|    987|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 987, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    987|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    987|            return;
  |  |  ------------------
  |  |   82|    996|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9078|    996|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 996, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    996|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    996|            return;
  |  |  ------------------
  |  |   83|  1.17k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9078|  1.17k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.17k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.17k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.17k|            return;
  |  |  ------------------
  |  |   84|  1.82k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9078|  1.82k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.82k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.82k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.82k|            return;
  |  |  ------------------
  |  |   85|  1.82k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9078|  1.73k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.73k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.73k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.73k|            return;
  |  |  ------------------
  |  |   86|  1.73k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9078|    610|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 610, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    610|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    610|            return;
  |  |  ------------------
  |  |   87|    623|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9078|    623|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 623, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    623|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    623|            return;
  |  |  ------------------
  |  |   88|  1.90k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9078|  1.90k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.90k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.90k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.90k|            return;
  |  |  ------------------
  |  |   89|  3.12k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9078|  3.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 3.12k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  3.12k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  3.12k|            return;
  |  |  ------------------
  |  |   90|  3.12k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9078|  1.26k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.26k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.26k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.26k|            return;
  |  |  ------------------
  |  |   91|  1.26k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9078|    882|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 882, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    882|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    882|            return;
  |  |  ------------------
  |  |   92|    882|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9078|    869|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 869, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    869|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    869|            return;
  |  |  ------------------
  |  |   93|  1.86k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9078|  1.86k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.86k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.86k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.86k|            return;
  |  |  ------------------
  |  |   94|  1.86k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9078|    492|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 492, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    492|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    492|            return;
  |  |  ------------------
  |  |   95|  2.45k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9078|  2.45k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.45k, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.45k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.45k|            return;
  |  |  ------------------
  |  |   96|  2.45k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9078|    552|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 552, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    552|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    552|            return;
  |  |  ------------------
  |  |   97|    552|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9078|    205|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 205, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    205|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    205|            return;
  |  |  ------------------
  |  |   98|    205|                                                                        \
  |  |   99|    205|    /* Generic encap & decap */                                         \
  |  |  100|  1.70k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9078|  1.70k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.70k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.70k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.70k|            return;
  |  |  ------------------
  |  |  101|  1.94k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9078|  1.94k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.94k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.94k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.94k|            return;
  |  |  ------------------
  |  |  102|  1.94k|                                                                        \
  |  |  103|  1.94k|    /* Metadata. */                                                     \
  |  |  104|  1.94k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9078|  1.29k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.29k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.29k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.29k|            return;
  |  |  ------------------
  |  |  105|  1.29k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9078|    286|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 286, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    286|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    286|            return;
  |  |  ------------------
  |  |  106|  1.04k|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9078|  1.04k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.04k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.04k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.04k|            return;
  |  |  ------------------
  |  |  107|  1.04k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9078|    749|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 749, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    749|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    749|            return;
  |  |  ------------------
  |  |  108|    749|                                                                        \
  |  |  109|    749|    /* Flow table interaction. */                                       \
  |  |  110|  1.06k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9078|  1.06k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.06k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.06k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.06k|            return;
  |  |  ------------------
  |  |  111|  31.2k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9078|  31.2k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 31.2k, False: 214k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  31.2k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  31.2k|            return;
  |  |  ------------------
  |  |  112|  31.2k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9078|    214|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 214, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    214|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    214|            return;
  |  |  ------------------
  |  |  113|    214|                                                                        \
  |  |  114|    214|    /* Arithmetic. */                                                   \
  |  |  115|    833|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9078|    833|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 833, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    833|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    833|            return;
  |  |  ------------------
  |  |  116|    833|                                                                        \
  |  |  117|    833|    /* Other. */                                                        \
  |  |  118|  2.86k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9078|  2.86k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.86k, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.86k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.86k|            return;
  |  |  ------------------
  |  |  119|  2.86k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9078|  1.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.12k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.12k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.12k|            return;
  |  |  ------------------
  |  |  120|  1.47k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9078|  1.47k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.47k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.47k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.47k|            return;
  |  |  ------------------
  |  |  121|  1.47k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9078|      0|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 0, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      0|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      0|            return;
  |  |  ------------------
  |  |  122|  8.22k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9078|  8.22k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 8.22k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  8.22k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  8.22k|            return;
  |  |  ------------------
  |  |  123|  8.22k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9078|    856|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 856, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    856|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    856|            return;
  |  |  ------------------
  |  |  124|  7.71k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9078|  7.71k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7.71k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  7.71k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  7.71k|            return;
  |  |  ------------------
  |  |  125|  7.71k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9078|    925|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 925, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    925|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    925|            return;
  |  |  ------------------
  |  |  126|  7.49k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9078|  7.49k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7.49k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  7.49k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  7.49k|            return;
  |  |  ------------------
  |  |  127|  7.49k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9078|    405|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 405, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    405|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    405|            return;
  |  |  ------------------
  |  |  128|    405|           "check_pkt_larger")                                          \
  |  |  129|    405|                                                                        \
  |  |  130|    405|    /* Debugging actions.                                               \
  |  |  131|    405|     *                                                                  \
  |  |  132|    405|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    405|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|  1.03k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9078|  1.03k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.03k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.03k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.03k|            return;
  |  |  ------------------
  |  |  135|  2.35k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9078|  2.35k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.35k, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.35k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.35k|            return;
  |  |  ------------------
  |  |  136|  2.35k|                                                                        \
  |  |  137|  2.35k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  2.35k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9078|    154|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 154, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    154|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    154|            return;
  |  |  ------------------
  |  |  139|    154|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9078|      7|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      7|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      7|            return;
  |  |  ------------------
  |  |  140|     65|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9078|     65|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 65, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|     65|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|     65|            return;
  |  |  ------------------
  |  |  141|     65|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9078|      7|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      7|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      7|            return;
  |  |  ------------------
  |  |  142|     10|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9078|     10|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 10, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 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: 245k]
  ------------------
 9084|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9085|   245k|    }
 9086|   245k|}
ofp-actions.c:encode_OUTPUT:
  610|  97.7k|{
  611|  97.7k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (611:9): [True: 66.1k, False: 31.5k]
  ------------------
  612|  66.1k|        struct ofp10_action_output *oao;
  613|       |
  614|  66.1k|        oao = put_OFPAT10_OUTPUT(out);
  615|  66.1k|        oao->port = htons(ofp_to_u16(output->port));
  616|  66.1k|        oao->max_len = htons(output->max_len);
  617|  66.1k|    } else {
  618|  31.5k|        struct ofp11_action_output *oao;
  619|       |
  620|  31.5k|        oao = put_OFPAT11_OUTPUT(out);
  621|  31.5k|        oao->port = ofputil_port_to_ofp11(output->port);
  622|       |        oao->max_len = htons(output->max_len);
  623|  31.5k|    }
  624|  97.7k|}
ofp-actions.c:ofpact_put_raw:
 9974|   362k|{
 9975|   362k|    const struct ofpact_raw_instance *inst;
 9976|   362k|    struct ofp_action_header *oah;
 9977|   362k|    const struct ofpact_hdrs *hdrs;
 9978|       |
 9979|   362k|    inst = ofpact_raw_lookup(ofp_version, raw);
 9980|   362k|    hdrs = &inst->hdrs;
 9981|       |
 9982|   362k|    oah = ofpbuf_put_zeros(buf, inst->min_length);
 9983|   362k|    oah->type = htons(hdrs->vendor ? OFPAT_VENDOR : hdrs->type);
  ------------------
  |  Branch (9983:17): [True: 237k, False: 124k]
  ------------------
 9984|   362k|    oah->len = htons(inst->min_length);
 9985|   362k|    oah->vendor = htonl(hdrs->vendor);
 9986|       |
 9987|   362k|    switch (hdrs->vendor) {
 9988|   124k|    case 0:
  ------------------
  |  Branch (9988:5): [True: 124k, False: 237k]
  ------------------
 9989|   124k|        break;
 9990|       |
 9991|   237k|    case NX_VENDOR_ID:
  ------------------
  |  |  110|   237k|#define NX_VENDOR_ID    0x00002320 /* Nicira. */
  ------------------
  |  Branch (9991:5): [True: 237k, False: 124k]
  ------------------
 9992|   237k|    case ONF_VENDOR_ID: {
  ------------------
  |  |  111|   237k|#define ONF_VENDOR_ID   0x4f4e4600 /* Open Networking Foundation. */
  ------------------
  |  Branch (9992:5): [True: 0, False: 362k]
  ------------------
 9993|   237k|        struct ext_action_header *nah = (struct ext_action_header *) oah;
 9994|   237k|        nah->subtype = htons(hdrs->type);
 9995|   237k|        break;
 9996|   237k|    }
 9997|       |
 9998|      0|    default:
  ------------------
  |  Branch (9998:5): [True: 0, False: 362k]
  ------------------
 9999|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
10000|   362k|    }
10001|       |
10002|   362k|    if (inst->arg_len) {
  ------------------
  |  Branch (10002:9): [True: 21.1k, False: 341k]
  ------------------
10003|  21.1k|        uint8_t *p = (uint8_t *) oah + inst->arg_ofs + inst->arg_len;
10004|  21.1k|        int i;
10005|       |
10006|  69.7k|        for (i = 0; i < inst->arg_len; i++) {
  ------------------
  |  Branch (10006:21): [True: 48.5k, False: 21.1k]
  ------------------
10007|  48.5k|            *--p = arg;
10008|  48.5k|            arg >>= 8;
10009|  48.5k|        }
10010|   341k|    } else {
10011|   341k|        ovs_assert(!arg);
  ------------------
  |  |   62|   341k|#define ovs_assert ovs_ignore
  ------------------
10012|   341k|    }
10013|       |
10014|   362k|    return oah;
10015|   362k|}
ofp-actions.c:ofpact_raw_lookup:
 9959|   362k|{
 9960|   362k|    const struct ofpact_raw_instance *inst;
 9961|       |
 9962|   362k|    HMAP_FOR_EACH_WITH_HASH (inst, encode_node, hash_2words(raw, ofp_version),
  ------------------
  |  |  138|   362k|    for (INIT_MULTIVAR(NODE, MEMBER, hmap_first_with_hash(HMAP, HASH),        \
  |  |  ------------------
  |  |  |  |  171|   362k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   362k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|   362k|                       struct hmap_node);                                     \
  |  |  140|   362k|         CONDITION_MULTIVAR(NODE, MEMBER, ITER_VAR(NODE) != NULL);            \
  |  |  ------------------
  |  |  |  |  185|   362k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 362k, False: 0]
  |  |  |  |  |  Branch (185:6): [True: 362k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  186|   362k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|   362k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|   362k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|   362k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   362k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |  141|   362k|         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|   362k|                             ofpact_encode_hmap()) {
 9964|   362k|        if (inst->raw == raw && inst->hdrs.ofp_version == ofp_version) {
  ------------------
  |  Branch (9964:13): [True: 362k, False: 0]
  |  Branch (9964:33): [True: 362k, False: 0]
  ------------------
 9965|   362k|            return inst;
 9966|   362k|        }
 9967|   362k|    }
 9968|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9969|   362k|}
ofp-actions.c:ofpact_encode_hmap:
 9827|   362k|{
 9828|   362k|    static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
  ------------------
  |  |  134|   362k|    {                                           \
  |  |  135|   362k|        false,                                  \
  |  |  136|   362k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  ------------------
  |  |  |  |   45|   362k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|   362k|                                "<unlocked>" }
  |  |  ------------------
  |  |  137|   362k|    }
  ------------------
 9829|   362k|    static struct hmap hmap;
 9830|       |
 9831|   362k|    if (ovsthread_once_start(&once)) {
  ------------------
  |  Branch (9831:9): [True: 1, False: 362k]
  ------------------
 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|   362k|    return &hmap;
 9844|   362k|}
ofp-actions.c:encode_GROUP:
  735|    471|{
  736|    471|    put_OFPAT_GROUP(out, ofp_version, group->group_id);
  737|    471|}
ofp-actions.c:encode_CONTROLLER:
  898|  7.69k|{
  899|  7.69k|    if (controller->userdata_len
  ------------------
  |  Branch (899:9): [True: 516, False: 7.17k]
  ------------------
  900|  7.17k|        || controller->pause
  ------------------
  |  Branch (900:12): [True: 6.29k, False: 881]
  ------------------
  901|    881|        || controller->meter_id != NX_CTLR_NO_METER
  ------------------
  |  |  307|  8.57k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (901:12): [True: 344, False: 537]
  ------------------
  902|  7.15k|        || controller->ofpact.raw == NXAST_RAW_CONTROLLER2) {
  ------------------
  |  Branch (902:12): [True: 0, False: 537]
  ------------------
  903|  7.15k|        size_t start_ofs = out->size;
  904|  7.15k|        put_NXAST_CONTROLLER2(out);
  905|  7.15k|        if (controller->max_len != UINT16_MAX) {
  ------------------
  |  Branch (905:13): [True: 95, False: 7.06k]
  ------------------
  906|     95|            ofpprop_put_u16(out, NXAC2PT_MAX_LEN, controller->max_len);
  907|     95|        }
  908|  7.15k|        if (controller->controller_id != 0) {
  ------------------
  |  Branch (908:13): [True: 149, False: 7.00k]
  ------------------
  909|    149|            ofpprop_put_u16(out, NXAC2PT_CONTROLLER_ID,
  910|    149|                            controller->controller_id);
  911|    149|        }
  912|  7.15k|        if (controller->reason != OFPR_ACTION) {
  ------------------
  |  Branch (912:13): [True: 197, False: 6.96k]
  ------------------
  913|    197|            ofpprop_put_u8(out, NXAC2PT_REASON, controller->reason);
  914|    197|        }
  915|  7.15k|        if (controller->userdata_len != 0) {
  ------------------
  |  Branch (915:13): [True: 516, False: 6.64k]
  ------------------
  916|    516|            ofpprop_put(out, NXAC2PT_USERDATA, controller->userdata,
  917|    516|                        controller->userdata_len);
  918|    516|        }
  919|  7.15k|        if (controller->pause) {
  ------------------
  |  Branch (919:13): [True: 6.29k, False: 860]
  ------------------
  920|  6.29k|            ofpprop_put_flag(out, NXAC2PT_PAUSE);
  921|  6.29k|        }
  922|  7.15k|        if (controller->meter_id != NX_CTLR_NO_METER) {
  ------------------
  |  |  307|  7.15k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (922:13): [True: 344, False: 6.81k]
  ------------------
  923|    344|            ofpprop_put_u32(out, NXAC2PT_METER_ID, controller->meter_id);
  924|    344|        }
  925|  7.15k|        pad_ofpat(out, start_ofs);
  926|  7.15k|    } else {
  927|    537|        struct nx_action_controller *nac;
  928|       |
  929|    537|        nac = put_NXAST_CONTROLLER(out);
  930|    537|        nac->max_len = htons(controller->max_len);
  931|       |        nac->controller_id = htons(controller->controller_id);
  932|    537|        nac->reason = controller->reason;
  933|    537|    }
  934|  7.69k|}
ofp-actions.c:pad_ofpat:
10019|  67.6k|{
10020|  67.6k|    struct ofp_action_header *oah;
10021|       |
10022|  67.6k|    ofpbuf_put_zeros(openflow, PAD_SIZE(openflow->size - start_ofs,
  ------------------
  |  |  306|  67.6k|#define PAD_SIZE(X, Y) (ROUND_UP(X, Y) - (X))
  |  |  ------------------
  |  |  |  |  303|  67.6k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  67.6k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10023|  67.6k|                                        OFP_ACTION_ALIGN));
10024|       |
10025|  67.6k|    oah = ofpbuf_at_assert(openflow, start_ofs, sizeof *oah);
10026|       |    oah->len = htons(openflow->size - start_ofs);
10027|  67.6k|}
ofp-actions.c:encode_ENQUEUE:
 1111|  1.41k|{
 1112|  1.41k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1112:9): [True: 880, False: 533]
  ------------------
 1113|    880|        struct ofp10_action_enqueue *oae;
 1114|       |
 1115|    880|        oae = put_OFPAT10_ENQUEUE(out);
 1116|    880|        oae->port = htons(ofp_to_u16(enqueue->port));
 1117|    880|        oae->queue_id = htonl(enqueue->queue);
 1118|    880|    } else {
 1119|    533|        put_OFPAT_SET_QUEUE(out, ofp_version, enqueue->queue);
 1120|       |
 1121|    533|        struct ofp11_action_output *oao = put_OFPAT11_OUTPUT(out);
 1122|    533|        oao->port = ofputil_port_to_ofp11(enqueue->port);
 1123|    533|        oao->max_len = OVS_BE16_MAX;
  ------------------
  |  |   42|    533|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 1124|       |
 1125|    533|        put_NXAST_POP_QUEUE(out);
 1126|    533|    }
 1127|  1.41k|}
ofp-actions.c:encode_OUTPUT_REG:
 1283|    677|{
 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|    677|    if (output_reg->ofpact.raw == NXAST_RAW_OUTPUT_REG2
  ------------------
  |  Branch (1287:9): [True: 0, False: 677]
  ------------------
 1288|    677|        || !mf_nxm_header(output_reg->src.field->id)) {
  ------------------
  |  Branch (1288:12): [True: 365, False: 312]
  ------------------
 1289|    365|        struct nx_action_output_reg2 *naor = put_NXAST_OUTPUT_REG2(out);
 1290|    365|        size_t size = out->size;
 1291|       |
 1292|    365|        naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
 1293|    365|                                               output_reg->src.n_bits);
 1294|    365|        naor->max_len = htons(output_reg->max_len);
 1295|       |
 1296|    365|        out->size = size - sizeof naor->pad;
 1297|    365|        nx_put_mff_header(out, output_reg->src.field, 0, false);
 1298|    365|        out->size = size;
 1299|    365|    } else {
 1300|    312|        struct nx_action_output_reg *naor = put_NXAST_OUTPUT_REG(out);
 1301|       |
 1302|    312|        naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
 1303|    312|                                               output_reg->src.n_bits);
 1304|    312|        naor->src = htonl(nxm_header_from_mff(output_reg->src.field));
 1305|       |        naor->max_len = htons(output_reg->max_len);
 1306|    312|    }
 1307|    677|}
ofp-actions.c:encode_BUNDLE:
 1503|    925|{
 1504|    925|    int members_len = ROUND_UP(2 * bundle->n_members, OFP_ACTION_ALIGN);
  ------------------
  |  |  303|    925|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|    925|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 1505|    925|    struct nx_action_bundle *nab;
 1506|    925|    ovs_be16 *members;
 1507|    925|    size_t i;
 1508|       |
 1509|    925|    nab = (bundle->dst.field
  ------------------
  |  Branch (1509:12): [True: 205, False: 720]
  ------------------
 1510|    925|           ? put_NXAST_BUNDLE_LOAD(out)
 1511|    925|           : put_NXAST_BUNDLE(out));
 1512|    925|    nab->len = htons(ntohs(nab->len) + members_len);
 1513|    925|    nab->algorithm = htons(bundle->algorithm);
 1514|    925|    nab->fields = htons(bundle->fields);
 1515|    925|    nab->basis = htons(bundle->basis);
 1516|    925|    nab->member_type = htonl(mf_nxm_header(MFF_IN_PORT));
 1517|    925|    nab->n_members = htons(bundle->n_members);
 1518|    925|    if (bundle->dst.field) {
  ------------------
  |  Branch (1518:9): [True: 205, False: 720]
  ------------------
 1519|    205|        nab->ofs_nbits = nxm_encode_ofs_nbits(bundle->dst.ofs,
 1520|    205|                                              bundle->dst.n_bits);
 1521|    205|        nab->dst = htonl(nxm_header_from_mff(bundle->dst.field));
 1522|    205|    }
 1523|       |
 1524|    925|    members = ofpbuf_put_zeros(out, members_len);
 1525|  40.7k|    for (i = 0; i < bundle->n_members; i++) {
  ------------------
  |  Branch (1525:17): [True: 39.8k, False: 925]
  ------------------
 1526|       |        members[i] = htons(ofp_to_u16(bundle->members[i]));
 1527|  39.8k|    }
 1528|    925|}
ofp-actions.c:encode_SET_FIELD:
 3158|  29.7k|{
 3159|  29.7k|    if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (3159:9): [True: 0, False: 29.7k]
  ------------------
 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|  29.7k|    } else if (sf->ofpact.raw == NXAST_RAW_REG_LOAD ||
  ------------------
  |  Branch (3163:16): [True: 532, False: 29.1k]
  ------------------
 3164|  29.1k|               sf->ofpact.raw == NXAST_RAW_REG_LOAD2) {
  ------------------
  |  Branch (3164:16): [True: 0, False: 29.1k]
  ------------------
 3165|       |        /* It came in as reg_load, send it out the same way. */
 3166|    532|        set_field_to_nxast(sf, out);
 3167|  29.1k|    } else if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3167:16): [True: 24.1k, False: 5.07k]
  ------------------
 3168|       |        /* OpenFlow 1.0 and 1.1 don't have Set-Field. */
 3169|  24.1k|        set_field_to_legacy_openflow(sf, ofp_version, out);
 3170|  24.1k|    } else if (is_all_ones(ofpact_set_field_mask(sf), sf->field->n_bytes)) {
  ------------------
  |  |  563|  5.07k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  5.07k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  5.07k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  5.07k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
  |  Branch (3170:16): [True: 1.26k, False: 3.81k]
  ------------------
 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|  1.26k|        set_field_to_set_field(sf, ofp_version, out);
 3174|  3.81k|    } 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|  3.81k|        set_field_to_nxast(sf, out);
 3179|  3.81k|    }
 3180|  29.7k|}
ofp-actions.c:set_field_to_set_field:
 3144|  1.26k|{
 3145|  1.26k|    struct ofp12_action_set_field *oasf OVS_UNUSED;
 3146|  1.26k|    size_t start_ofs = out->size;
 3147|       |
 3148|  1.26k|    oasf = put_OFPAT12_SET_FIELD(out);
 3149|  1.26k|    out->size = out->size - sizeof oasf->pad;
 3150|  1.26k|    nx_put_entry(out, sf->field, ofp_version, sf->value,
 3151|  1.26k|                 ofpact_set_field_mask(sf));
  ------------------
  |  |  563|  1.26k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  1.26k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  1.26k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  1.26k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3152|  1.26k|    pad_ofpat(out, start_ofs);
 3153|  1.26k|}
ofp-actions.c:set_field_to_nxast:
 2990|  23.2k|{
 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|  23.2k|    if (sf->ofpact.raw == NXAST_RAW_REG_LOAD2
  ------------------
  |  Branch (2995:9): [True: 0, False: 23.2k]
  ------------------
 2996|  23.2k|        || !mf_nxm_header(sf->field->id) || sf->field->variable_len) {
  ------------------
  |  Branch (2996:12): [True: 3.36k, False: 19.9k]
  |  Branch (2996:45): [True: 6.27k, False: 13.6k]
  ------------------
 2997|  9.63k|        struct ext_action_header *eah OVS_UNUSED;
 2998|  9.63k|        size_t start_ofs = openflow->size;
 2999|       |
 3000|  9.63k|        eah = put_NXAST_REG_LOAD2(openflow);
 3001|  9.63k|        openflow->size = openflow->size - sizeof eah->pad;
 3002|  9.63k|        nx_put_entry(openflow, sf->field, 0, sf->value,
 3003|  9.63k|                     ofpact_set_field_mask(sf));
  ------------------
  |  |  563|  9.63k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  9.63k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  9.63k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  9.63k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3004|  9.63k|        pad_ofpat(openflow, start_ofs);
 3005|  13.6k|    } else {
 3006|  13.6k|        struct mf_subfield dst;
 3007|  13.6k|        uint64_t value;
 3008|       |
 3009|  13.6k|        dst.ofs = dst.n_bits = 0;
 3010|   141k|        while (next_load_segment(sf, &dst, &value)) {
  ------------------
  |  Branch (3010:16): [True: 127k, False: 13.6k]
  ------------------
 3011|   127k|            put_reg_load(openflow, &dst, value);
 3012|   127k|        }
 3013|  13.6k|    }
 3014|  23.2k|}
ofp-actions.c:next_load_segment:
 2967|   141k|{
 2968|   141k|    int n_bits = sf->field->n_bits;
 2969|   141k|    int n_bytes = sf->field->n_bytes;
 2970|   141k|    int start = dst->ofs + dst->n_bits;
 2971|       |
 2972|   141k|    if (start < n_bits) {
  ------------------
  |  Branch (2972:9): [True: 137k, False: 4.03k]
  ------------------
 2973|   137k|        dst->field = sf->field;
 2974|   137k|        dst->ofs = bitwise_scan(ofpact_set_field_mask(sf), n_bytes, 1, start,
  ------------------
  |  |  563|   137k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|   137k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|   137k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|   137k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 2975|   137k|                                n_bits);
 2976|   137k|        if (dst->ofs < n_bits) {
  ------------------
  |  Branch (2976:13): [True: 127k, False: 9.60k]
  ------------------
 2977|   127k|            dst->n_bits = bitwise_scan(ofpact_set_field_mask(sf), n_bytes, 0,
  ------------------
  |  |  563|   127k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|   127k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|   127k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|   127k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 2978|   127k|                                       dst->ofs + 1,
 2979|   127k|                                       MIN(dst->ofs + 64, n_bits)) - dst->ofs;
  ------------------
  |  |   91|   127k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 92.6k, False: 35.1k]
  |  |  ------------------
  ------------------
 2980|   127k|            *value = bitwise_get(sf->value, n_bytes, dst->ofs, dst->n_bits);
 2981|   127k|            return true;
 2982|   127k|        }
 2983|   137k|    }
 2984|  13.6k|    return false;
 2985|   141k|}
ofp-actions.c:put_reg_load:
 2955|   129k|{
 2956|   129k|    ovs_assert(dst->n_bits <= 64);
  ------------------
  |  |   62|   129k|#define ovs_assert ovs_ignore
  ------------------
 2957|       |
 2958|   129k|    struct nx_action_reg_load *narl = put_NXAST_REG_LOAD(openflow);
 2959|   129k|    narl->ofs_nbits = nxm_encode_ofs_nbits(dst->ofs, dst->n_bits);
 2960|       |    narl->dst = htonl(nxm_header_from_mff(dst->field));
 2961|   129k|    narl->value = htonll(value);
 2962|   129k|}
ofp-actions.c:set_field_to_legacy_openflow:
 3027|  24.1k|{
 3028|  24.1k|    switch ((int) sf->field->id) {
 3029|  1.50k|    case MFF_VLAN_TCI: {
  ------------------
  |  Branch (3029:5): [True: 1.50k, False: 22.6k]
  ------------------
 3030|  1.50k|        ovs_be16 tci = sf->value->be16;
 3031|  1.50k|        bool cfi = (tci & htons(VLAN_CFI)) != 0;
 3032|  1.50k|        uint16_t vid = vlan_tci_to_vid(tci);
 3033|  1.50k|        uint8_t pcp = vlan_tci_to_pcp(tci);
 3034|       |
 3035|  1.50k|        if (ofp_version < OFP11_VERSION) {
  ------------------
  |  Branch (3035:13): [True: 436, False: 1.07k]
  ------------------
 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|    436|            if (cfi) {
  ------------------
  |  Branch (3041:17): [True: 239, False: 197]
  ------------------
 3042|    239|                put_OFPAT10_SET_VLAN_VID(out, vid);
 3043|    239|                put_OFPAT10_SET_VLAN_PCP(out, pcp);
 3044|    239|            } else {
 3045|    197|                put_OFPAT10_STRIP_VLAN(out);
 3046|    197|            }
 3047|  1.07k|        } 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|  1.07k|            if (cfi) {
  ------------------
  |  Branch (3059:17): [True: 619, False: 452]
  ------------------
 3060|       |                /* Push a VLAN tag, if one was not seen at action validation
 3061|       |                 * time. */
 3062|    619|                if (!sf->flow_has_vlan) {
  ------------------
  |  Branch (3062:21): [True: 291, False: 328]
  ------------------
 3063|    291|                    put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 3064|    291|                }
 3065|    619|                put_OFPAT11_SET_VLAN_VID(out, vid);
 3066|    619|                put_OFPAT11_SET_VLAN_PCP(out, pcp);
 3067|    619|            } 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|    452|                put_OFPAT11_POP_VLAN(out);
 3072|    452|            }
 3073|  1.07k|        }
 3074|  1.50k|        break;
 3075|      0|    }
 3076|       |
 3077|    388|    case MFF_VLAN_VID: {
  ------------------
  |  Branch (3077:5): [True: 388, False: 23.7k]
  ------------------
 3078|    388|        uint16_t vid = ntohs(sf->value->be16) & VLAN_VID_MASK;
  ------------------
  |  |  494|    388|#define VLAN_VID_MASK 0x0fff
  ------------------
 3079|    388|        if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (3079:13): [True: 194, False: 194]
  ------------------
 3080|    194|            put_OFPAT10_SET_VLAN_VID(out, vid);
 3081|    194|        } else {
 3082|    194|            put_OFPAT11_SET_VLAN_VID(out, vid);
 3083|    194|        }
 3084|    388|        break;
 3085|      0|    }
 3086|       |
 3087|    388|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (3087:5): [True: 388, False: 23.7k]
  ------------------
 3088|    388|        if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (3088:13): [True: 194, False: 194]
  ------------------
 3089|    194|            put_OFPAT10_SET_VLAN_PCP(out, sf->value->u8);
 3090|    194|        } else {
 3091|    194|            put_OFPAT11_SET_VLAN_PCP(out, sf->value->u8);
 3092|    194|        }
 3093|    388|        break;
 3094|       |
 3095|    198|    case MFF_ETH_SRC:
  ------------------
  |  Branch (3095:5): [True: 198, False: 23.9k]
  ------------------
 3096|    198|        put_OFPAT_SET_DL_SRC(out, ofp_version)->dl_addr = sf->value->mac;
 3097|    198|        break;
 3098|       |
 3099|    194|    case MFF_ETH_DST:
  ------------------
  |  Branch (3099:5): [True: 194, False: 23.9k]
  ------------------
 3100|    194|        put_OFPAT_SET_DL_DST(out, ofp_version)->dl_addr = sf->value->mac;
 3101|    194|        break;
 3102|       |
 3103|    239|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (3103:5): [True: 239, False: 23.8k]
  ------------------
 3104|    239|        put_OFPAT_SET_NW_SRC(out, ofp_version, sf->value->be32);
 3105|    239|        break;
 3106|       |
 3107|    288|    case MFF_IPV4_DST:
  ------------------
  |  Branch (3107:5): [True: 288, False: 23.8k]
  ------------------
 3108|    288|        put_OFPAT_SET_NW_DST(out, ofp_version, sf->value->be32);
 3109|    288|        break;
 3110|       |
 3111|    210|    case MFF_IP_DSCP:
  ------------------
  |  Branch (3111:5): [True: 210, False: 23.9k]
  ------------------
 3112|    210|        put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value->u8);
 3113|    210|        break;
 3114|       |
 3115|    204|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (3115:5): [True: 204, False: 23.9k]
  ------------------
 3116|    204|        put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value->u8 << 2);
 3117|    204|        break;
 3118|       |
 3119|    503|    case MFF_IP_ECN: {
  ------------------
  |  Branch (3119:5): [True: 503, False: 23.6k]
  ------------------
 3120|    503|        struct ofpact_ecn ip_ecn = { .ecn = sf->value->u8 };
 3121|    503|        encode_SET_IP_ECN(&ip_ecn, ofp_version, out);
 3122|    503|        break;
 3123|      0|    }
 3124|       |
 3125|    194|    case MFF_TCP_SRC:
  ------------------
  |  Branch (3125:5): [True: 194, False: 23.9k]
  ------------------
 3126|    560|    case MFF_UDP_SRC:
  ------------------
  |  Branch (3126:5): [True: 366, False: 23.7k]
  ------------------
 3127|    560|        put_OFPAT_SET_TP_SRC(out, sf->value->be16);
 3128|    560|        break;
 3129|       |
 3130|    319|    case MFF_TCP_DST:
  ------------------
  |  Branch (3130:5): [True: 319, False: 23.8k]
  ------------------
 3131|    513|    case MFF_UDP_DST:
  ------------------
  |  Branch (3131:5): [True: 194, False: 23.9k]
  ------------------
 3132|    513|        put_OFPAT_SET_TP_DST(out, sf->value->be16);
 3133|    513|        break;
 3134|       |
 3135|  18.9k|    default:
  ------------------
  |  Branch (3135:5): [True: 18.9k, False: 5.19k]
  ------------------
 3136|  18.9k|        set_field_to_nxast(sf, out);
 3137|  18.9k|        break;
 3138|  24.1k|    }
 3139|  24.1k|}
ofp-actions.c:encode_SET_VLAN_VID:
 1590|  2.19k|{
 1591|  2.19k|    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|  2.19k|    if (ofp_version > OFP10_VERSION
  ------------------
  |  Branch (1595:9): [True: 1.37k, False: 820]
  ------------------
 1596|  1.37k|        && vlan_vid->push_vlan_if_needed
  ------------------
  |  Branch (1596:12): [True: 1.12k, False: 245]
  ------------------
 1597|  1.12k|        && !vlan_vid->flow_has_vlan) {
  ------------------
  |  Branch (1597:12): [True: 381, False: 748]
  ------------------
 1598|    381|        put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 1599|    381|    }
 1600|       |
 1601|  2.19k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1601:9): [True: 820, False: 1.37k]
  ------------------
 1602|    820|        put_OFPAT10_SET_VLAN_VID(out, vid);
 1603|  1.37k|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (1603:16): [True: 211, False: 1.16k]
  ------------------
 1604|    211|        put_OFPAT11_SET_VLAN_VID(out, vid);
 1605|  1.16k|    } else {
 1606|  1.16k|        put_set_field(out, ofp_version, MFF_VLAN_VID, vid | OFPVID12_PRESENT);
 1607|  1.16k|    }
 1608|  2.19k|}
ofp-actions.c:put_set_field:
 2938|  5.38k|{
 2939|  5.38k|    struct ofp12_action_set_field *oasf OVS_UNUSED;
 2940|  5.38k|    int n_bytes = mf_from_id(field)->n_bytes;
 2941|  5.38k|    size_t start_ofs = openflow->size;
 2942|  5.38k|    union mf_value value;
 2943|       |
 2944|  5.38k|    value.be64 = htonll(value_ << (8 * (8 - n_bytes)));
 2945|       |
 2946|  5.38k|    oasf = put_OFPAT12_SET_FIELD(openflow);
 2947|  5.38k|    openflow->size = openflow->size - sizeof oasf->pad;
 2948|       |    nx_put_entry(openflow, mf_from_id(field), ofp_version, &value, NULL);
 2949|  5.38k|    pad_ofpat(openflow, start_ofs);
 2950|  5.38k|}
ofp-actions.c:encode_SET_VLAN_PCP:
 1698|  1.70k|{
 1699|  1.70k|    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.70k|    if (ofp_version > OFP10_VERSION
  ------------------
  |  Branch (1703:9): [True: 1.27k, False: 431]
  ------------------
 1704|  1.27k|        && vlan_pcp->push_vlan_if_needed
  ------------------
  |  Branch (1704:12): [True: 1.00k, False: 271]
  ------------------
 1705|  1.00k|        && !vlan_pcp->flow_has_vlan) {
  ------------------
  |  Branch (1705:12): [True: 259, False: 746]
  ------------------
 1706|    259|        put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 1707|    259|    }
 1708|       |
 1709|  1.70k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1709:9): [True: 431, False: 1.27k]
  ------------------
 1710|    431|        put_OFPAT10_SET_VLAN_PCP(out, pcp);
 1711|  1.27k|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (1711:16): [True: 197, False: 1.07k]
  ------------------
 1712|    197|        put_OFPAT11_SET_VLAN_PCP(out, pcp);
 1713|  1.07k|    } else {
 1714|  1.07k|        put_set_field(out, ofp_version, MFF_VLAN_PCP, pcp);
 1715|  1.07k|    }
 1716|  1.70k|}
ofp-actions.c:encode_STRIP_VLAN:
 1791|  2.80k|{
 1792|  2.80k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1792:9): [True: 1.48k, False: 1.31k]
  ------------------
 1793|  1.48k|        put_OFPAT10_STRIP_VLAN(out);
 1794|  1.48k|    } else {
 1795|  1.31k|        put_OFPAT11_POP_VLAN(out);
 1796|  1.31k|    }
 1797|  2.80k|}
ofp-actions.c:encode_PUSH_VLAN:
 1853|  1.30k|{
 1854|  1.30k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1854:9): [True: 478, False: 825]
  ------------------
 1855|       |        /* PUSH is a side effect of a SET_VLAN_VID/PCP, which should
 1856|       |         * follow this action. */
 1857|    825|    } else {
 1858|    825|        put_OFPAT11_PUSH_VLAN(out, push_vlan->ethertype);
 1859|    825|    }
 1860|  1.30k|}
ofp-actions.c:encode_SET_ETH_SRC:
 1951|    706|{
 1952|    706|    encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_SRC, MFF_ETH_SRC,
 1953|    706|                        out);
 1954|       |
 1955|    706|}
ofp-actions.c:encode_SET_ETH_addr:
 1937|  1.10k|{
 1938|  1.10k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (1938:9): [True: 400, False: 709]
  ------------------
 1939|    400|        struct ofp_action_dl_addr *oada;
 1940|       |
 1941|    400|        oada = ofpact_put_raw(out, ofp_version, raw, 0);
 1942|    400|        oada->dl_addr = mac->mac;
 1943|    709|    } else {
 1944|    709|        put_set_field(out, ofp_version, field, eth_addr_to_uint64(mac->mac));
 1945|    709|    }
 1946|  1.10k|}
ofp-actions.c:encode_SET_ETH_DST:
 1961|    403|{
 1962|    403|    encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_DST, MFF_ETH_DST,
 1963|    403|                        out);
 1964|       |
 1965|    403|}
ofp-actions.c:encode_SET_IPV4_SRC:
 2046|    759|{
 2047|    759|    encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_SRC, MFF_IPV4_SRC,
 2048|    759|                         out);
 2049|    759|}
ofp-actions.c:encode_SET_IPV4_addr:
 2034|  1.56k|{
 2035|  1.56k|    ovs_be32 addr = ipv4->ipv4;
 2036|  1.56k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (2036:9): [True: 1.15k, False: 412]
  ------------------
 2037|  1.15k|        ofpact_put_raw(out, ofp_version, raw, ntohl(addr));
 2038|  1.15k|    } else {
 2039|       |        put_set_field(out, ofp_version, field, ntohl(addr));
 2040|    412|    }
 2041|  1.56k|}
ofp-actions.c:encode_SET_IPV4_DST:
 2054|    808|{
 2055|    808|    encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_DST, MFF_IPV4_DST,
 2056|    808|                         out);
 2057|    808|}
ofp-actions.c:encode_SET_IP_DSCP:
 2129|    987|{
 2130|    987|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (2130:9): [True: 777, False: 210]
  ------------------
 2131|    777|        put_OFPAT_SET_NW_TOS(out, ofp_version, dscp->dscp);
 2132|    777|    } else {
 2133|    210|        put_set_field(out, ofp_version, MFF_IP_DSCP_SHIFTED, dscp->dscp >> 2);
 2134|    210|    }
 2135|    987|}
ofp-actions.c:encode_SET_IP_ECN:
 2198|  1.49k|{
 2199|  1.49k|    uint8_t ecn = ip_ecn->ecn;
 2200|  1.49k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (2200:9): [True: 803, False: 696]
  ------------------
 2201|    803|        struct mf_subfield dst = { .field = mf_from_id(MFF_IP_ECN),
 2202|    803|                                   .ofs = 0, .n_bits = 2 };
 2203|    803|        put_reg_load(out, &dst, ecn);
 2204|    803|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (2204:16): [True: 501, False: 195]
  ------------------
 2205|    501|        put_OFPAT11_SET_NW_ECN(out, ecn);
 2206|    501|    } else {
 2207|    195|        put_set_field(out, ofp_version, MFF_IP_ECN, ecn);
 2208|    195|    }
 2209|  1.49k|}
ofp-actions.c:encode_SET_IP_TTL:
 2258|  1.17k|{
 2259|  1.17k|    if (ofp_version >= OFP11_VERSION) {
  ------------------
  |  Branch (2259:9): [True: 270, False: 901]
  ------------------
 2260|    270|        put_OFPAT11_SET_NW_TTL(out, ttl->ttl);
 2261|    901|    } else {
 2262|    901|        struct mf_subfield dst = { .field = mf_from_id(MFF_IP_TTL),
 2263|    901|                                   .ofs = 0, .n_bits = 8 };
 2264|    901|        put_reg_load(out, &dst, ttl->ttl);
 2265|    901|    }
 2266|  1.17k|}
ofp-actions.c:encode_SET_L4_SRC_PORT:
 2336|  1.82k|{
 2337|  1.82k|    uint8_t proto = l4_port->flow_ip_proto;
 2338|  1.82k|    enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_SRC
  ------------------
  |  Branch (2338:31): [True: 320, False: 1.50k]
  ------------------
 2339|  1.82k|                              : proto == IPPROTO_UDP ? MFF_UDP_SRC
  ------------------
  |  Branch (2339:33): [True: 359, False: 1.14k]
  ------------------
 2340|  1.50k|                              : proto == IPPROTO_SCTP ? MFF_SCTP_SRC
  ------------------
  |  Branch (2340:33): [True: 205, False: 941]
  ------------------
 2341|  1.14k|                              : MFF_N_IDS);
 2342|       |
 2343|  1.82k|    encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_SRC, field, out);
 2344|  1.82k|}
ofp-actions.c:encode_SET_L4_port:
 2323|  3.55k|{
 2324|  3.55k|    uint16_t port = l4_port->port;
 2325|       |
 2326|  3.55k|    if (ofp_version >= OFP12_VERSION && field != MFF_N_IDS) {
  ------------------
  |  Branch (2326:9): [True: 975, False: 2.58k]
  |  Branch (2326:41): [True: 530, False: 445]
  ------------------
 2327|    530|        put_set_field(out, ofp_version, field, port);
 2328|  3.02k|    } else {
 2329|  3.02k|        ofpact_put_raw(out, ofp_version, raw, port);
 2330|  3.02k|    }
 2331|  3.55k|}
ofp-actions.c:encode_SET_L4_DST_PORT:
 2350|  1.73k|{
 2351|  1.73k|    uint8_t proto = l4_port->flow_ip_proto;
 2352|  1.73k|    enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_DST
  ------------------
  |  Branch (2352:31): [True: 339, False: 1.39k]
  ------------------
 2353|  1.73k|                              : proto == IPPROTO_UDP ? MFF_UDP_DST
  ------------------
  |  Branch (2353:33): [True: 209, False: 1.18k]
  ------------------
 2354|  1.39k|                              : proto == IPPROTO_SCTP ? MFF_SCTP_DST
  ------------------
  |  Branch (2354:33): [True: 280, False: 904]
  ------------------
 2355|  1.18k|                              : MFF_N_IDS);
 2356|       |
 2357|  1.73k|    encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_DST, field, out);
 2358|  1.73k|}
ofp-actions.c:encode_REG_MOVE:
 2669|    610|{
 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|    610|    size_t start_ofs = out->size;
 2677|    610|    if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (2677:9): [True: 0, False: 610]
  ------------------
 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|    610|    } else if (ofp_version == OFP13_VERSION
  ------------------
  |  Branch (2685:16): [True: 228, False: 382]
  ------------------
 2686|    228|               && move->ofpact.raw == ONFACT_RAW13_COPY_FIELD) {
  ------------------
  |  Branch (2686:19): [True: 0, False: 228]
  ------------------
 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|    610|    } else {
 2695|    610|        struct nx_action_reg_move *narm = put_NXAST_REG_MOVE(out);
 2696|    610|        narm->n_bits = htons(move->dst.n_bits);
 2697|    610|        narm->src_ofs = htons(move->src.ofs);
 2698|    610|        narm->dst_ofs = htons(move->dst.ofs);
 2699|    610|        nx_put_mff_header(out, move->src.field, 0, false);
 2700|       |        nx_put_mff_header(out, move->dst.field, 0, false);
 2701|    610|    }
 2702|    610|    pad_ofpat(out, start_ofs);
 2703|    610|}
ofp-actions.c:encode_STACK_PUSH:
 3532|    623|{
 3533|    623|    encode_STACK_op(stack, put_NXAST_STACK_PUSH(out));
 3534|    623|}
ofp-actions.c:encode_STACK_op:
 3516|  2.52k|{
 3517|  2.52k|    struct ofpbuf b;
 3518|  2.52k|    ovs_be16 n_bits;
 3519|       |
 3520|  2.52k|    nasp->offset = htons(stack_action->subfield.ofs);
 3521|       |
 3522|  2.52k|    ofpbuf_use_stack(&b, nasp, ntohs(nasp->len));
 3523|  2.52k|    ofpbuf_put_uninit(&b, OBJECT_OFFSETOF(nasp, pad));
  ------------------
  |  |  108|  2.52k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  ------------------
 3524|  2.52k|    nx_put_mff_header(&b, stack_action->subfield.field, 0, false);
 3525|       |    n_bits = htons(stack_action->subfield.n_bits);
 3526|  2.52k|    ofpbuf_put(&b, &n_bits, sizeof n_bits);
 3527|  2.52k|}
ofp-actions.c:encode_STACK_POP:
 3539|  1.90k|{
 3540|  1.90k|    encode_STACK_op(stack, put_NXAST_STACK_POP(out));
 3541|  1.90k|}
ofp-actions.c:encode_DEC_TTL:
 3666|  3.12k|{
 3667|  3.12k|    if (dec_ttl->ofpact.raw == NXAST_RAW_DEC_TTL_CNT_IDS
  ------------------
  |  Branch (3667:9): [True: 2.28k, False: 839]
  ------------------
 3668|    839|        || dec_ttl->n_controllers != 1
  ------------------
  |  Branch (3668:12): [True: 0, False: 839]
  ------------------
 3669|  2.28k|        || dec_ttl->cnt_ids[0] != 0) {
  ------------------
  |  Branch (3669:12): [True: 0, False: 839]
  ------------------
 3670|  2.28k|        struct nx_action_cnt_ids *nac_ids = put_NXAST_DEC_TTL_CNT_IDS(out);
 3671|  2.28k|        int ids_len = ROUND_UP(2 * dec_ttl->n_controllers, OFP_ACTION_ALIGN);
  ------------------
  |  |  303|  2.28k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  2.28k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 3672|  2.28k|        ovs_be16 *ids;
 3673|  2.28k|        size_t i;
 3674|       |
 3675|  2.28k|        nac_ids->len = htons(ntohs(nac_ids->len) + ids_len);
 3676|  2.28k|        nac_ids->n_controllers = htons(dec_ttl->n_controllers);
 3677|       |
 3678|  2.28k|        ids = ofpbuf_put_zeros(out, ids_len);
 3679|   302k|        for (i = 0; i < dec_ttl->n_controllers; i++) {
  ------------------
  |  Branch (3679:21): [True: 300k, False: 2.28k]
  ------------------
 3680|   300k|            ids[i] = htons(dec_ttl->cnt_ids[i]);
 3681|   300k|        }
 3682|  2.28k|    } else {
 3683|    839|        put_OFPAT_DEC_NW_TTL(out, ofp_version);
 3684|    839|    }
 3685|  3.12k|}
ofp-actions.c:encode_SET_MPLS_LABEL:
 3774|  1.26k|{
 3775|  1.26k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3775:9): [True: 803, False: 465]
  ------------------
 3776|    803|        put_OFPAT_SET_MPLS_LABEL(out, ofp_version, label->label);
 3777|    803|    } else {
 3778|       |        put_set_field(out, ofp_version, MFF_MPLS_LABEL, ntohl(label->label));
 3779|    465|    }
 3780|  1.26k|}
ofp-actions.c:encode_SET_MPLS_TC:
 3846|    882|{
 3847|    882|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3847:9): [True: 600, False: 282]
  ------------------
 3848|    600|        put_OFPAT_SET_MPLS_TC(out, ofp_version, tc->tc);
 3849|    600|    } else {
 3850|    282|        put_set_field(out, ofp_version, MFF_MPLS_TC, tc->tc);
 3851|    282|    }
 3852|    882|}
ofp-actions.c:encode_SET_MPLS_TTL:
 3907|    869|{
 3908|    869|    put_OFPAT_SET_MPLS_TTL(out, ofp_version, ttl->ttl);
 3909|    869|}
ofp-actions.c:encode_DEC_MPLS_TTL:
 3963|  1.86k|{
 3964|  1.86k|    put_OFPAT_DEC_MPLS_TTL(out, ofp_version);
 3965|  1.86k|}
ofp-actions.c:encode_PUSH_MPLS:
 4009|    492|{
 4010|    492|    put_OFPAT_PUSH_MPLS(out, ofp_version, push_mpls->ethertype);
 4011|    492|}
ofp-actions.c:encode_POP_MPLS:
 4067|  2.45k|{
 4068|  2.45k|    put_OFPAT_POP_MPLS(out, ofp_version, pop_mpls->ethertype);
 4069|  2.45k|}
ofp-actions.c:encode_DEC_NSH_TTL:
 4808|    552|{
 4809|    552|    put_NXAST_DEC_NSH_TTL(out);
 4810|    552|}
ofp-actions.c:encode_DELETE_FIELD:
 4224|    205|{
 4225|    205|    size_t size;
 4226|       |
 4227|    205|    put_NXAST_DELETE_FIELD(out);
 4228|    205|    size = out->size;
 4229|       |
 4230|    205|    out->size = size - MEMBER_SIZEOF(struct nx_action_delete_field, pad);
  ------------------
  |  |  115|    205|#define MEMBER_SIZEOF(STRUCT, MEMBER) (sizeof(((STRUCT *) NULL)->MEMBER))
  ------------------
 4231|       |    nx_put_mff_header(out, delete_field->field, 0, false);
 4232|    205|    out->size = size;
 4233|    205|}
ofp-actions.c:encode_ENCAP:
 4512|  1.70k|{
 4513|  1.70k|    size_t start_ofs = out->size;
 4514|  1.70k|    struct nx_action_encap *nae = put_NXAST_ENCAP(out);
 4515|  1.70k|    int i;
 4516|       |
 4517|  1.70k|    nae->new_pkt_type = encap->new_pkt_type;
 4518|  1.70k|    nae->hdr_size = htons(encap->hdr_size);
 4519|  1.70k|    const struct ofpact_ed_prop *prop = encap->props;
 4520|  2.57k|    for (i = 0; i < encap->n_props; i++) {
  ------------------
  |  Branch (4520:17): [True: 875, False: 1.70k]
  ------------------
 4521|    875|        encode_ed_prop(&prop, out);
 4522|    875|    }
 4523|  1.70k|    pad_ofpat(out, start_ofs);
 4524|  1.70k|}
ofp-actions.c:encode_DECAP:
 4715|  1.94k|{
 4716|  1.94k|    struct nx_action_decap *nad = put_NXAST_DECAP(out);
 4717|       |
 4718|       |    nad->len = htons(sizeof(struct nx_action_decap));
 4719|  1.94k|    nad->new_pkt_type = decap->new_pkt_type;
 4720|  1.94k|}
ofp-actions.c:encode_SET_TUNNEL:
 4132|  1.29k|{
 4133|  1.29k|    uint64_t tun_id = tunnel->tun_id;
 4134|       |
 4135|  1.29k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (4135:9): [True: 951, False: 339]
  ------------------
 4136|    951|        if (tun_id <= UINT32_MAX
  ------------------
  |  Branch (4136:13): [True: 618, False: 333]
  ------------------
 4137|    618|            && tunnel->ofpact.raw != NXAST_RAW_SET_TUNNEL64) {
  ------------------
  |  Branch (4137:16): [True: 395, False: 223]
  ------------------
 4138|    395|            put_NXAST_SET_TUNNEL(out, tun_id);
 4139|    556|        } else {
 4140|    556|            put_NXAST_SET_TUNNEL64(out, tun_id);
 4141|    556|        }
 4142|    951|    } else {
 4143|    339|        put_set_field(out, ofp_version, MFF_TUN_ID, tun_id);
 4144|    339|    }
 4145|  1.29k|}
ofp-actions.c:encode_SET_QUEUE:
 4278|    286|{
 4279|    286|    put_OFPAT_SET_QUEUE(out, ofp_version, queue->queue_id);
 4280|    286|}
ofp-actions.c:encode_POP_QUEUE:
 4315|  1.04k|{
 4316|  1.04k|    put_NXAST_POP_QUEUE(out);
 4317|  1.04k|}
ofp-actions.c:encode_FIN_TIMEOUT:
 4392|    749|{
 4393|    749|    struct nx_action_fin_timeout *naft = put_NXAST_FIN_TIMEOUT(out);
 4394|    749|    naft->fin_idle_timeout = htons(fin_timeout->fin_idle_timeout);
 4395|       |    naft->fin_hard_timeout = htons(fin_timeout->fin_hard_timeout);
 4396|    749|}
ofp-actions.c:encode_RESUBMIT:
 4965|  1.06k|{
 4966|  1.06k|    uint16_t in_port = ofp_to_u16(resubmit->in_port);
 4967|       |
 4968|  1.06k|    if (resubmit->table_id == 0xff
  ------------------
  |  Branch (4968:9): [True: 621, False: 440]
  ------------------
 4969|    621|        && resubmit->ofpact.raw == NXAST_RAW_RESUBMIT) {
  ------------------
  |  Branch (4969:12): [True: 0, False: 621]
  ------------------
 4970|      0|        put_NXAST_RESUBMIT(out, in_port);
 4971|  1.06k|    } else {
 4972|  1.06k|        struct nx_action_resubmit *nar;
 4973|  1.06k|        nar = resubmit->with_ct_orig
  ------------------
  |  Branch (4973:15): [True: 393, False: 668]
  ------------------
 4974|  1.06k|            ? put_NXAST_RESUBMIT_TABLE_CT(out) : put_NXAST_RESUBMIT_TABLE(out);
 4975|  1.06k|        nar->table = resubmit->table_id;
 4976|       |        nar->in_port = htons(in_port);
 4977|  1.06k|    }
 4978|  1.06k|}
ofp-actions.c:encode_LEARN:
 5573|  31.2k|{
 5574|  31.2k|    const struct ofpact_learn_spec *spec;
 5575|  31.2k|    struct nx_action_learn *nal;
 5576|  31.2k|    size_t start_ofs;
 5577|       |
 5578|  31.2k|    start_ofs = out->size;
 5579|       |
 5580|  31.2k|    if (learn->ofpact.raw == NXAST_RAW_LEARN2
  ------------------
  |  Branch (5580:9): [True: 0, False: 31.2k]
  ------------------
 5581|  31.2k|        || learn->limit != 0
  ------------------
  |  Branch (5581:12): [True: 602, False: 30.6k]
  ------------------
 5582|  30.6k|        || learn->flags & NX_LEARN_F_WRITE_RESULT) {
  ------------------
  |  Branch (5582:12): [True: 273, False: 30.4k]
  ------------------
 5583|    875|        struct nx_action_learn2 *nal2;
 5584|       |
 5585|    875|        nal2 = put_NXAST_LEARN2(out);
 5586|    875|        nal2->limit = htonl(learn->limit);
 5587|    875|        nal2->result_dst_ofs = htons(learn->result_dst.ofs);
 5588|    875|        nal = &nal2->up;
 5589|  30.4k|    } else {
 5590|  30.4k|        nal = put_NXAST_LEARN(out);
 5591|  30.4k|    }
 5592|  31.2k|    nal->idle_timeout = htons(learn->idle_timeout);
 5593|  31.2k|    nal->hard_timeout = htons(learn->hard_timeout);
 5594|  31.2k|    nal->fin_idle_timeout = htons(learn->fin_idle_timeout);
 5595|  31.2k|    nal->fin_hard_timeout = htons(learn->fin_hard_timeout);
 5596|  31.2k|    nal->priority = htons(learn->priority);
 5597|  31.2k|    nal->cookie = learn->cookie;
 5598|  31.2k|    nal->flags = htons(learn->flags);
 5599|  31.2k|    nal->table_id = learn->table_id;
 5600|       |
 5601|  31.2k|    if (learn->flags & NX_LEARN_F_WRITE_RESULT) {
  ------------------
  |  Branch (5601:9): [True: 273, False: 31.0k]
  ------------------
 5602|    273|        nx_put_header(out, learn->result_dst.field->id, 0, false);
 5603|    273|    }
 5604|       |
 5605|  46.0k|    OFPACT_LEARN_SPEC_FOR_EACH (spec, learn) {
  ------------------
  |  |  900|  31.2k|    for ((SPEC) = (LEARN)->specs;               \
  |  |  901|  77.2k|         (SPEC) < ofpact_learn_spec_end(LEARN); \
  |  |  ------------------
  |  |  |  Branch (901:10): [True: 46.0k, False: 31.2k]
  |  |  ------------------
  |  |  902|  46.0k|         (SPEC) = ofpact_learn_spec_next(SPEC))
  ------------------
 5606|  46.0k|        put_u16(out, spec->n_bits | spec->dst_type | spec->src_type);
 5607|       |
 5608|  46.0k|        if (spec->src_type == NX_LEARN_SRC_FIELD) {
  ------------------
  |  |  821|  46.0k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  |  Branch (5608:13): [True: 2.62k, False: 43.3k]
  ------------------
 5609|  2.62k|            put_u32(out, nxm_header_from_mff(spec->src.field));
 5610|  2.62k|            put_u16(out, spec->src.ofs);
 5611|  43.3k|        } else {
 5612|  43.3k|            size_t n_dst_bytes = 2 * DIV_ROUND_UP(spec->n_bits, 16);
  ------------------
  |  |  300|  43.3k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 5613|  43.3k|            uint8_t *bits = ofpbuf_put_zeros(out, n_dst_bytes);
 5614|  43.3k|            unsigned int n_bytes = DIV_ROUND_UP(spec->n_bits, 8);
  ------------------
  |  |  300|  43.3k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 5615|       |
 5616|  43.3k|            memcpy(bits + n_dst_bytes - n_bytes, ofpact_learn_spec_imm(spec),
 5617|  43.3k|                   n_bytes);
 5618|  43.3k|        }
 5619|       |
 5620|  46.0k|        if (spec->dst_type == NX_LEARN_DST_MATCH ||
  ------------------
  |  |  825|  92.0k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  |  Branch (5620:13): [True: 45.3k, False: 663]
  ------------------
 5621|  45.8k|            spec->dst_type == NX_LEARN_DST_LOAD) {
  ------------------
  |  |  826|    663|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  |  Branch (5621:13): [True: 468, False: 195]
  ------------------
 5622|  45.8k|            put_u32(out, nxm_header_from_mff(spec->dst.field));
 5623|  45.8k|            put_u16(out, spec->dst.ofs);
 5624|  45.8k|        }
 5625|  46.0k|    }
 5626|       |
 5627|  31.2k|    pad_ofpat(out, start_ofs);
 5628|  31.2k|}
ofp-actions.c:put_u16:
 5560|  94.4k|{
 5561|       |    put_be16(b, htons(x));
 5562|  94.4k|}
ofp-actions.c:put_be16:
 5548|  94.4k|{
 5549|  94.4k|    ofpbuf_put(b, &x, sizeof x);
 5550|  94.4k|}
ofp-actions.c:put_u32:
 5566|  48.4k|{
 5567|       |    put_be32(b, htonl(x));
 5568|  48.4k|}
ofp-actions.c:put_be32:
 5554|  48.4k|{
 5555|  48.4k|    ofpbuf_put(b, &x, sizeof x);
 5556|  48.4k|}
ofp-actions.c:encode_CONJUNCTION:
 5691|    214|{
 5692|    214|    struct nx_action_conjunction *nac = put_NXAST_CONJUNCTION(out);
 5693|    214|    nac->clause = oc->clause;
 5694|    214|    nac->n_clauses = oc->n_clauses;
 5695|       |    nac->id = htonl(oc->id);
 5696|    214|}
ofp-actions.c:encode_MULTIPATH:
 5845|    833|{
 5846|    833|    struct nx_action_multipath *nam = put_NXAST_MULTIPATH(out);
 5847|       |
 5848|    833|    nam->fields = htons(mp->fields);
 5849|    833|    nam->basis = htons(mp->basis);
 5850|    833|    nam->algorithm = htons(mp->algorithm);
 5851|    833|    nam->max_link = htons(mp->max_link);
 5852|    833|    nam->arg = htonl(mp->arg);
 5853|    833|    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|    833|}
ofp-actions.c:encode_NOTE:
 5916|  2.86k|{
 5917|  2.86k|    size_t start_ofs = out->size;
 5918|  2.86k|    struct nx_action_note *nan;
 5919|       |
 5920|  2.86k|    put_NXAST_NOTE(out);
 5921|  2.86k|    out->size = out->size - sizeof nan->note;
 5922|       |
 5923|  2.86k|    ofpbuf_put(out, note->data, note->length);
 5924|  2.86k|    pad_ofpat(out, start_ofs);
 5925|  2.86k|}
ofp-actions.c:encode_EXIT:
 5975|  1.12k|{
 5976|  1.12k|    put_NXAST_EXIT(out);
 5977|  1.12k|}
ofp-actions.c:encode_SAMPLE:
 6427|  1.47k|{
 6428|  1.47k|    if (sample->ofpact.raw == NXAST_RAW_SAMPLE4 ||
  ------------------
  |  Branch (6428:9): [True: 0, False: 1.47k]
  ------------------
 6429|  1.47k|        sample->obs_domain_src.field ||
  ------------------
  |  Branch (6429:9): [True: 244, False: 1.22k]
  ------------------
 6430|  1.22k|        sample->obs_point_src.field) {
  ------------------
  |  Branch (6430:9): [True: 225, False: 1.00k]
  ------------------
 6431|    469|        encode_SAMPLE4(sample, put_NXAST_SAMPLE4(out));
 6432|  1.00k|    } else if (sample->ofpact.raw == NXAST_RAW_SAMPLE3
  ------------------
  |  Branch (6432:16): [True: 0, False: 1.00k]
  ------------------
 6433|  1.00k|        || sample->direction != NX_ACTION_SAMPLE_DEFAULT) {
  ------------------
  |  Branch (6433:12): [True: 277, False: 726]
  ------------------
 6434|    277|        encode_SAMPLE2(sample, put_NXAST_SAMPLE3(out));
 6435|    726|    } else if (sample->ofpact.raw == NXAST_RAW_SAMPLE2
  ------------------
  |  Branch (6435:16): [True: 0, False: 726]
  ------------------
 6436|    726|               || sample->sampling_port != OFPP_NONE) {
  ------------------
  |  |   47|    726|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|    726|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (6436:19): [True: 212, False: 514]
  ------------------
 6437|    212|        encode_SAMPLE2(sample, put_NXAST_SAMPLE2(out));
 6438|    514|    } else {
 6439|    514|        struct nx_action_sample *nas = put_NXAST_SAMPLE(out);
 6440|    514|        nas->probability = htons(sample->probability);
 6441|    514|        nas->collector_set_id = htonl(sample->collector_set_id);
 6442|    514|        nas->obs_domain_id = htonl(sample->obs_domain_imm);
 6443|       |        nas->obs_point_id = htonl(sample->obs_point_imm);
 6444|    514|    }
 6445|  1.47k|}
ofp-actions.c:encode_SAMPLE4:
 6396|    469|{
 6397|    469|    nas->probability = htons(sample->probability);
 6398|    469|    nas->collector_set_id = htonl(sample->collector_set_id);
 6399|    469|    nas->sampling_port = htons(ofp_to_u16(sample->sampling_port));
 6400|    469|    nas->direction = sample->direction;
 6401|       |
 6402|    469|    if (sample->obs_domain_src.field) {
  ------------------
  |  Branch (6402:9): [True: 244, False: 225]
  ------------------
 6403|    244|        nas->obs_domain_src =
 6404|    244|            htonl(nxm_header_from_mff(sample->obs_domain_src.field));
 6405|    244|        nas->obs_domain_ofs_nbits =
 6406|    244|            nxm_encode_ofs_nbits(sample->obs_domain_src.ofs,
 6407|    244|                                 sample->obs_domain_src.n_bits);
 6408|    244|    } else {
 6409|    225|        nas->obs_domain_src = htonl(0);
 6410|    225|        nas->obs_domain_imm = htonl(sample->obs_domain_imm);
 6411|    225|    }
 6412|    469|    if (sample->obs_point_src.field) {
  ------------------
  |  Branch (6412:9): [True: 225, False: 244]
  ------------------
 6413|    225|        nas->obs_point_src =
 6414|    225|            htonl(nxm_header_from_mff(sample->obs_point_src.field));
 6415|    225|        nas->obs_point_ofs_nbits =
 6416|    225|            nxm_encode_ofs_nbits(sample->obs_point_src.ofs,
 6417|    225|                                 sample->obs_point_src.n_bits);
 6418|    244|    } else {
 6419|    244|        nas->obs_point_src = htonl(0);
 6420|       |        nas->obs_point_imm = htonl(sample->obs_point_imm);
 6421|    244|    }
 6422|    469|}
ofp-actions.c:encode_SAMPLE2:
 6384|    489|{
 6385|    489|    nas->probability = htons(sample->probability);
 6386|    489|    nas->collector_set_id = htonl(sample->collector_set_id);
 6387|    489|    nas->obs_domain_id = htonl(sample->obs_domain_imm);
 6388|    489|    nas->obs_point_id = htonl(sample->obs_point_imm);
 6389|       |    nas->sampling_port = htons(ofp_to_u16(sample->sampling_port));
 6390|    489|    nas->direction = sample->direction;
 6391|    489|}
ofp-actions.c:encode_CT:
 6888|  8.22k|{
 6889|  8.22k|    struct nx_action_conntrack *nac;
 6890|  8.22k|    const size_t ofs = out->size;
 6891|  8.22k|    size_t len;
 6892|       |
 6893|  8.22k|    nac = put_NXAST_CT(out);
 6894|  8.22k|    nac->flags = htons(conntrack->flags);
 6895|  8.22k|    if (conntrack->zone_src.field) {
  ------------------
  |  Branch (6895:9): [True: 328, False: 7.89k]
  ------------------
 6896|    328|        nac->zone_src = htonl(nxm_header_from_mff(conntrack->zone_src.field));
 6897|    328|        nac->zone_ofs_nbits = nxm_encode_ofs_nbits(conntrack->zone_src.ofs,
 6898|    328|                                                   conntrack->zone_src.n_bits);
 6899|  7.89k|    } else {
 6900|  7.89k|        nac->zone_src = htonl(0);
 6901|  7.89k|        nac->zone_imm = htons(conntrack->zone_imm);
 6902|  7.89k|    }
 6903|  8.22k|    nac->recirc_table = conntrack->recirc_table;
 6904|  8.22k|    nac->alg = htons(conntrack->alg);
 6905|       |
 6906|  8.22k|    len = ofpacts_put_openflow_actions(conntrack->actions,
 6907|  8.22k|                                       ofpact_ct_get_action_len(conntrack),
 6908|  8.22k|                                       out, ofp_version);
 6909|  8.22k|    len += sizeof(*nac);
 6910|  8.22k|    nac = ofpbuf_at(out, ofs, sizeof(*nac));
 6911|       |    nac->len = htons(len);
 6912|  8.22k|}
ofp-actions.c:encode_CT_CLEAR:
 7101|    856|{
 7102|    856|    put_NXAST_CT_CLEAR(out);
 7103|    856|}
ofp-actions.c:encode_NAT:
 7156|  7.71k|{
 7157|  7.71k|    struct nx_action_nat *nan;
 7158|  7.71k|    const size_t ofs = out->size;
 7159|  7.71k|    uint16_t range_present = 0;
 7160|       |
 7161|  7.71k|    nan = put_NXAST_NAT(out);
 7162|  7.71k|    nan->flags = htons(nat->flags);
 7163|  7.71k|    if (nat->range_af == AF_INET) {
  ------------------
  |  Branch (7163:9): [True: 735, False: 6.97k]
  ------------------
 7164|    735|        if (nat->range.addr.ipv4.min) {
  ------------------
  |  Branch (7164:13): [True: 436, False: 299]
  ------------------
 7165|    436|            ovs_be32 *min = ofpbuf_put_uninit(out, sizeof *min);
 7166|    436|            *min = nat->range.addr.ipv4.min;
 7167|    436|            range_present |= NX_NAT_RANGE_IPV4_MIN;
 7168|    436|        }
 7169|    735|        if (nat->range.addr.ipv4.max) {
  ------------------
  |  Branch (7169:13): [True: 223, False: 512]
  ------------------
 7170|    223|            ovs_be32 *max = ofpbuf_put_uninit(out, sizeof *max);
 7171|    223|            *max = nat->range.addr.ipv4.max;
 7172|    223|            range_present |= NX_NAT_RANGE_IPV4_MAX;
 7173|    223|        }
 7174|  6.97k|    } else if (nat->range_af == AF_INET6) {
  ------------------
  |  Branch (7174:16): [True: 2.74k, False: 4.22k]
  ------------------
 7175|  2.74k|        if (!ipv6_mask_is_any(&nat->range.addr.ipv6.min)) {
  ------------------
  |  Branch (7175:13): [True: 1.73k, False: 1.01k]
  ------------------
 7176|  1.73k|            struct in6_addr *min = ofpbuf_put_uninit(out, sizeof *min);
 7177|  1.73k|            *min = nat->range.addr.ipv6.min;
 7178|  1.73k|            range_present |= NX_NAT_RANGE_IPV6_MIN;
 7179|  1.73k|        }
 7180|  2.74k|        if (!ipv6_mask_is_any(&nat->range.addr.ipv6.max)) {
  ------------------
  |  Branch (7180:13): [True: 747, False: 2.00k]
  ------------------
 7181|    747|            struct in6_addr *max = ofpbuf_put_uninit(out, sizeof *max);
 7182|    747|            *max = nat->range.addr.ipv6.max;
 7183|    747|            range_present |= NX_NAT_RANGE_IPV6_MAX;
 7184|    747|        }
 7185|  2.74k|    }
 7186|  7.71k|    if (nat->range_af != AF_UNSPEC) {
  ------------------
  |  Branch (7186:9): [True: 3.48k, False: 4.22k]
  ------------------
 7187|  3.48k|        if (nat->range.proto.min) {
  ------------------
  |  Branch (7187:13): [True: 655, False: 2.82k]
  ------------------
 7188|    655|            ovs_be16 *min = ofpbuf_put_uninit(out, sizeof *min);
 7189|    655|            *min = htons(nat->range.proto.min);
 7190|    655|            range_present |= NX_NAT_RANGE_PROTO_MIN;
 7191|    655|        }
 7192|  3.48k|        if (nat->range.proto.max) {
  ------------------
  |  Branch (7192:13): [True: 292, False: 3.19k]
  ------------------
 7193|    292|            ovs_be16 *max = ofpbuf_put_uninit(out, sizeof *max);
 7194|    292|            *max = htons(nat->range.proto.max);
 7195|    292|            range_present |= NX_NAT_RANGE_PROTO_MAX;
 7196|    292|        }
 7197|  3.48k|    }
 7198|  7.71k|    pad_ofpat(out, ofs);
 7199|  7.71k|    nan = ofpbuf_at(out, ofs, sizeof *nan);
 7200|       |    nan->range_present = htons(range_present);
 7201|  7.71k|}
ofp-actions.c:encode_OUTPUT_TRUNC:
 7522|    925|{
 7523|    925|    struct nx_action_output_trunc *natrc = put_NXAST_OUTPUT_TRUNC(out);
 7524|       |
 7525|    925|    natrc->max_len = htonl(output_trunc->max_len);
 7526|       |    natrc->port = htons(ofp_to_u16(output_trunc->port));
 7527|    925|}
ofp-actions.c:encode_CLONE:
 6074|  7.49k|{
 6075|  7.49k|    size_t len;
 6076|  7.49k|    const size_t ofs = out->size;
 6077|  7.49k|    struct ext_action_header *eah;
 6078|       |
 6079|  7.49k|    put_NXAST_CLONE(out);
 6080|  7.49k|    len = ofpacts_put_openflow_actions(clone->actions,
 6081|  7.49k|                                       ofpact_nest_get_action_len(clone),
 6082|  7.49k|                                       out, ofp_version);
 6083|  7.49k|    len += sizeof *eah;
 6084|  7.49k|    eah = ofpbuf_at(out, ofs, sizeof *eah);
 6085|       |    eah->len = htons(len);
 6086|  7.49k|}
ofp-actions.c:encode_CHECK_PKT_LARGER:
 7851|    405|{
 7852|    405|    struct nx_action_check_pkt_larger *ncpl = put_NXAST_CHECK_PKT_LARGER(out);
 7853|    405|    ncpl->pkt_len = htons(check_pkt_larger->pkt_len);
 7854|    405|    ncpl->offset = htons(check_pkt_larger->dst.ofs);
 7855|       |
 7856|    405|    if (check_pkt_larger->dst.field) {
  ------------------
  |  Branch (7856:9): [True: 405, False: 0]
  ------------------
 7857|    405|        size_t size = out->size;
 7858|    405|        out->size = size - sizeof ncpl->pad;
 7859|       |        nx_put_mff_header(out, check_pkt_larger->dst.field, 0, false);
 7860|    405|        out->size = size;
 7861|    405|    }
 7862|    405|}
ofp-actions.c:encode_DEBUG_RECIRC:
 6590|  1.03k|{
 6591|  1.03k|    put_NXAST_DEBUG_RECIRC(out);
 6592|  1.03k|}
ofp-actions.c:encode_DEBUG_SLOW:
 6630|  2.35k|{
 6631|  2.35k|    put_NXAST_DEBUG_SLOW(out);
 6632|  2.35k|}
ofp-actions.c:encode_METER:
 7575|    154|{
 7576|    154|    if (ofp_version == OFP13_VERSION || ofp_version == OFP14_VERSION) {
  ------------------
  |  Branch (7576:9): [True: 152, False: 2]
  |  Branch (7576:41): [True: 0, False: 2]
  ------------------
 7577|    152|        instruction_put_OFPIT13_METER(out)->meter_id = htonl(meter->meter_id);
 7578|    152|    } else if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (7578:16): [True: 0, False: 2]
  ------------------
 7579|      0|        put_OFPAT15_METER(out, meter->meter_id);
 7580|      0|    }
 7581|    154|}
ofp-actions.c:instruction_put_OFPIT13_METER:
  405|    152|    {                                                           \
  406|    152|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|    152|        instruction_init_##ENUM(s);                             \
  408|    152|        return s;                                               \
  409|    152|    }
ofp-actions.c:encode_CLEAR_ACTIONS:
 7612|      7|{
 7613|      7|    if (ofp_version > OFP10_VERSION) {
  ------------------
  |  Branch (7613:9): [True: 4, False: 3]
  ------------------
 7614|      4|        instruction_put_OFPIT11_CLEAR_ACTIONS(out);
 7615|      4|    }
 7616|      7|}
ofp-actions.c:instruction_put_OFPIT11_CLEAR_ACTIONS:
  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_WRITE_ACTIONS:
 7644|     65|{
 7645|     65|    if (ofp_version > OFP10_VERSION) {
  ------------------
  |  Branch (7645:9): [True: 56, False: 9]
  ------------------
 7646|     56|        const size_t ofs = out->size;
 7647|       |
 7648|     56|        instruction_put_OFPIT11_WRITE_ACTIONS(out);
 7649|     56|        ofpacts_put_openflow_actions(actions->actions,
 7650|     56|                                     ofpact_nest_get_action_len(actions),
 7651|     56|                                     out, ofp_version);
 7652|     56|        ofpacts_update_instruction_actions(out, ofs);
 7653|     56|    }
 7654|     65|}
ofp-actions.c:instruction_put_OFPIT11_WRITE_ACTIONS:
  405|     56|    {                                                           \
  406|     56|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|     56|        instruction_init_##ENUM(s);                             \
  408|     56|        return s;                                               \
  409|     56|    }
ofp-actions.c:encode_WRITE_METADATA:
 7740|      7|{
 7741|      7|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (7741:9): [True: 3, False: 4]
  ------------------
 7742|      3|        struct nx_action_write_metadata *nawm;
 7743|       |
 7744|      3|        nawm = put_NXAST_WRITE_METADATA(out);
 7745|      3|        nawm->metadata = metadata->metadata;
 7746|      3|        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|      7|}
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: 8, False: 2]
  ------------------
 7923|      8|        struct nx_action_resubmit *nar;
 7924|       |
 7925|      8|        nar = put_NXAST_RESUBMIT_TABLE(out);
 7926|      8|        nar->table = goto_table->table_id;
 7927|      8|        nar->in_port = htons(ofp_to_u16(OFPP_IN_PORT));
 7928|      8|    } else {
 7929|      2|        struct ofp11_instruction_goto_table *oigt;
 7930|       |
 7931|      2|        oigt = instruction_put_OFPIT11_GOTO_TABLE(out);
 7932|      2|        oigt->table_id = goto_table->table_id;
 7933|      2|        memset(oigt->pad, 0, sizeof oigt->pad);
 7934|      2|    }
 7935|     10|}
ofp-actions.c:instruction_put_OFPIT11_GOTO_TABLE:
  405|      2|    {                                                           \
  406|      2|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|      2|        instruction_init_##ENUM(s);                             \
  408|      2|        return s;                                               \
  409|      2|    }
ofp-actions.c:ofpact_is_apply_actions:
 9107|  46.2k|{
 9108|  46.2k|    return (ovs_instruction_type_from_ofpact_type(a->type, version)
 9109|  46.2k|            == OVSINST_OFPIT11_APPLY_ACTIONS);
 9110|  46.2k|}
ofp-actions.c:instruction_put_OFPIT11_APPLY_ACTIONS:
  405|    564|    {                                                           \
  406|    564|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|    564|        instruction_init_##ENUM(s);                             \
  408|    564|        return s;                                               \
  409|    564|    }
ofp-actions.c:ofpacts_update_instruction_actions:
 8766|    620|{
 8767|    620|    struct ofp11_instruction_actions *oia;
 8768|       |
 8769|    620|    oia = ofpbuf_at_assert(openflow, ofs, sizeof *oia);
 8770|    620|    if (openflow->size > ofs + sizeof *oia) {
  ------------------
  |  Branch (8770:9): [True: 614, False: 6]
  ------------------
 8771|    614|        oia->len = htons(openflow->size - ofs);
 8772|    614|    } else {
 8773|      6|        openflow->size = ofs;
 8774|      6|    }
 8775|    620|}
ofp-actions.c:ofpacts_parse_copy:
 9676|  26.9k|{
 9677|  26.9k|    char *error, *s;
 9678|       |
 9679|  26.9k|    *pp->usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  26.9k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 9680|       |
 9681|  26.9k|    s = xstrdup(s_);
 9682|  26.9k|    error = ofpacts_parse(s, pp, allow_instructions, outer_action);
 9683|  26.9k|    free(s);
 9684|       |
 9685|  26.9k|    return error;
 9686|  26.9k|}
ofp-actions.c:ofpacts_parse:
 9659|  27.7k|{
 9660|  27.7k|    if (pp->depth >= MAX_OFPACT_PARSE_DEPTH) {
  ------------------
  |  | 1221|  27.7k|#define MAX_OFPACT_PARSE_DEPTH 100
  ------------------
  |  Branch (9660:9): [True: 3, False: 27.7k]
  ------------------
 9661|      3|        return xstrdup("Action nested too deeply");
 9662|      3|    }
 9663|  27.7k|    CONST_CAST(struct ofpact_parse_params *, pp)->depth++;
  ------------------
  |  |   85|  27.7k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  27.7k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  27.7k|     (TYPE) (POINTER))
  ------------------
 9664|  27.7k|    uint32_t orig_size = pp->ofpacts->size;
 9665|  27.7k|    char *error = ofpacts_parse__(str, pp, allow_instructions, outer_action);
 9666|  27.7k|    if (error) {
  ------------------
  |  Branch (9666:9): [True: 9.75k, False: 17.9k]
  ------------------
 9667|  9.75k|        ofpbuf_truncate(pp->ofpacts, orig_size);
 9668|  9.75k|    }
 9669|  27.7k|    CONST_CAST(struct ofpact_parse_params *, pp)->depth--;
  ------------------
  |  |   85|  27.7k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  27.7k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  27.7k|     (TYPE) (POINTER))
  ------------------
 9670|  27.7k|    return error;
 9671|  27.7k|}
ofp-actions.c:ofpacts_parse__:
 9586|  27.7k|{
 9587|  27.7k|    uint32_t orig_size = pp->ofpacts->size;
 9588|  27.7k|    char *key, *value;
 9589|  27.7k|    bool drop = false;
 9590|  27.7k|    char *pos;
 9591|       |
 9592|  27.7k|    pos = str;
 9593|   373k|    while (ofputil_parse_key_value(&pos, &key, &value)) {
  ------------------
  |  Branch (9593:12): [True: 355k, False: 18.1k]
  ------------------
 9594|   355k|        enum ofpact_type type;
 9595|   355k|        char *error = NULL;
 9596|   355k|        ofp_port_t port;
 9597|   355k|        if (ofpact_type_from_name(key, &type)) {
  ------------------
  |  Branch (9597:13): [True: 195k, False: 159k]
  ------------------
 9598|   195k|            error = ofpact_parse(type, value, pp);
 9599|       |
 9600|   195k|            if (type == OFPACT_METER && !allow_instructions) {
  ------------------
  |  Branch (9600:17): [True: 659, False: 195k]
  |  Branch (9600:41): [True: 228, False: 431]
  ------------------
 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|    228|                *pp->usable_protocols &= OFPUTIL_P_OF15_UP;
  ------------------
  |  |   97|    228|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  ------------------
 9605|    228|            }
 9606|   195k|        } else if (!strcasecmp(key, "mod_vlan_vid")) {
  ------------------
  |  Branch (9606:20): [True: 1.79k, False: 157k]
  ------------------
 9607|  1.79k|            error = parse_set_vlan_vid(value, true, pp);
 9608|   157k|        } else if (!strcasecmp(key, "mod_vlan_pcp")) {
  ------------------
  |  Branch (9608:20): [True: 1.29k, False: 156k]
  ------------------
 9609|  1.29k|            error = parse_set_vlan_pcp(value, true, pp);
 9610|   156k|        } else if (!strcasecmp(key, "set_nw_ttl")) {
  ------------------
  |  Branch (9610:20): [True: 666, False: 155k]
  ------------------
 9611|    666|            error = parse_SET_IP_TTL(value, pp);
 9612|   155k|        } else if (!strcasecmp(key, "pop_vlan")) {
  ------------------
  |  Branch (9612:20): [True: 2.85k, False: 153k]
  ------------------
 9613|  2.85k|            error = parse_pop_vlan(pp);
 9614|   153k|        } else if (!strcasecmp(key, "set_tunnel64")) {
  ------------------
  |  Branch (9614:20): [True: 582, False: 152k]
  ------------------
 9615|    582|            error = parse_set_tunnel(value, NXAST_RAW_SET_TUNNEL64, pp);
 9616|   152k|        } else if (!strcasecmp(key, "load")) {
  ------------------
  |  Branch (9616:20): [True: 769, False: 151k]
  ------------------
 9617|    769|            error = parse_reg_load(value, pp);
 9618|   151k|        } else if (!strcasecmp(key, "bundle_load")) {
  ------------------
  |  Branch (9618:20): [True: 344, False: 151k]
  ------------------
 9619|    344|            error = parse_bundle_load(value, pp);
 9620|   151k|        } else if (!strcasecmp(key, "drop")) {
  ------------------
  |  Branch (9620:20): [True: 922, False: 150k]
  ------------------
 9621|    922|            drop = true;
 9622|   150k|        } else if (!strcasecmp(key, "apply_actions")) {
  ------------------
  |  Branch (9622:20): [True: 1, False: 150k]
  ------------------
 9623|      1|            return xstrdup("apply_actions is the default instruction");
 9624|   150k|        } else if (ofputil_port_from_string(key, pp->port_map, &port)) {
  ------------------
  |  Branch (9624:20): [True: 146k, False: 3.58k]
  ------------------
 9625|   146k|            ofpact_put_OUTPUT(pp->ofpacts)->port = port;
 9626|   146k|        } else {
 9627|  3.58k|            return xasprintf("unknown action %s", key);
 9628|  3.58k|        }
 9629|   352k|        if (error) {
  ------------------
  |  Branch (9629:13): [True: 5.95k, False: 346k]
  ------------------
 9630|  5.95k|            return error;
 9631|  5.95k|        }
 9632|   346k|        if (pp->ofpacts->size - orig_size > UINT16_MAX) {
  ------------------
  |  Branch (9632:13): [True: 8, False: 346k]
  ------------------
 9633|      8|            return xasprintf("input too big");
 9634|      8|        }
 9635|   346k|    }
 9636|       |
 9637|  18.1k|    if (drop && pp->ofpacts->size) {
  ------------------
  |  Branch (9637:9): [True: 446, False: 17.7k]
  |  Branch (9637:17): [True: 8, False: 438]
  ------------------
 9638|      8|        return xstrdup("\"drop\" must not be accompanied by any other action "
 9639|      8|                       "or instruction");
 9640|      8|    }
 9641|       |
 9642|  18.1k|    char *error = NULL;
 9643|  18.1k|    ofpacts_verify(pp->ofpacts->data, pp->ofpacts->size, OFP11_VERSION,
 9644|  18.1k|                   (allow_instructions
  ------------------
  |  Branch (9644:21): [True: 7.26k, False: 10.9k]
  ------------------
 9645|  18.1k|                    ? (1u << N_OVS_INSTRUCTIONS) - 1
 9646|  18.1k|                    : ((1u << OVSINST_OFPIT11_APPLY_ACTIONS)
 9647|  10.9k|                       | (1u << OVSINST_OFPIT13_METER))),
 9648|  18.1k|                   outer_action, &error);
 9649|  18.1k|    if (error) {
  ------------------
  |  Branch (9649:9): [True: 201, False: 17.9k]
  ------------------
 9650|    201|        return error;
 9651|    201|    }
 9652|       |
 9653|  17.9k|    return NULL;
 9654|  18.1k|}
ofp-actions.c:ofpact_type_from_name:
 9564|   355k|{
 9565|   355k|#define OFPACT(ENUM, STRUCT, MEMBER, NAME)                            \
 9566|   355k|    if (!strcasecmp(name, NAME)) {                                    \
 9567|   355k|        *type = OFPACT_##ENUM;                                          \
 9568|   355k|        return true;                                                    \
 9569|   355k|    }
 9570|   355k|    OFPACTS
  ------------------
  |  |   64|   355k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9566|   355k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.05k, False: 353k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.05k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.05k|        return true;                                                    \
  |  |  |  | 9569|  2.05k|    }
  |  |  ------------------
  |  |   65|   355k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9566|   353k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 565, False: 353k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    565|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    565|        return true;                                                    \
  |  |  |  | 9569|    565|    }
  |  |  ------------------
  |  |   66|   353k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9566|   353k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 9.66k, False: 343k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  9.66k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  9.66k|        return true;                                                    \
  |  |  |  | 9569|  9.66k|    }
  |  |  ------------------
  |  |   67|   353k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9566|   343k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.69k, False: 341k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.69k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.69k|        return true;                                                    \
  |  |  |  | 9569|  1.69k|    }
  |  |  ------------------
  |  |   68|   343k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9566|   341k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 535, False: 341k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    535|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    535|        return true;                                                    \
  |  |  |  | 9569|    535|    }
  |  |  ------------------
  |  |   69|   341k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9566|   341k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.19k, False: 338k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.19k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.19k|        return true;                                                    \
  |  |  |  | 9569|  2.19k|    }
  |  |  ------------------
  |  |   70|   341k|                                                                        \
  |  |   71|   341k|    /* Header changes. */                                               \
  |  |   72|   341k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9566|   338k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 51.1k, False: 287k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  51.1k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  51.1k|        return true;                                                    \
  |  |  |  | 9569|  51.1k|    }
  |  |  ------------------
  |  |   73|   338k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9566|   287k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 988, False: 286k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    988|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    988|        return true;                                                    \
  |  |  |  | 9569|    988|    }
  |  |  ------------------
  |  |   74|   287k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9566|   286k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 725, False: 286k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    725|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    725|        return true;                                                    \
  |  |  |  | 9569|    725|    }
  |  |  ------------------
  |  |   75|   286k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9566|   286k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 447, False: 285k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    447|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    447|        return true;                                                    \
  |  |  |  | 9569|    447|    }
  |  |  ------------------
  |  |   76|   286k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9566|   285k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.61k, False: 283k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.61k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.61k|        return true;                                                    \
  |  |  |  | 9569|  1.61k|    }
  |  |  ------------------
  |  |   77|   285k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9566|   283k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 952, False: 282k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    952|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    952|        return true;                                                    \
  |  |  |  | 9569|    952|    }
  |  |  ------------------
  |  |   78|   283k|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   282k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 557, False: 282k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    557|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    557|        return true;                                                    \
  |  |  |  | 9569|    557|    }
  |  |  ------------------
  |  |   79|   282k|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9566|   282k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 793, False: 281k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    793|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    793|        return true;                                                    \
  |  |  |  | 9569|    793|    }
  |  |  ------------------
  |  |   80|   282k|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   281k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 865, False: 280k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    865|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    865|        return true;                                                    \
  |  |  |  | 9569|    865|    }
  |  |  ------------------
  |  |   81|   281k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9566|   280k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.16k, False: 279k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.16k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.16k|        return true;                                                    \
  |  |  |  | 9569|  1.16k|    }
  |  |  ------------------
  |  |   82|   280k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9566|   279k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.17k, False: 278k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.17k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.17k|        return true;                                                    \
  |  |  |  | 9569|  1.17k|    }
  |  |  ------------------
  |  |   83|   279k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9566|   278k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.22k, False: 277k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.22k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.22k|        return true;                                                    \
  |  |  |  | 9569|  1.22k|    }
  |  |  ------------------
  |  |   84|   278k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9566|   277k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.13k, False: 275k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.13k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.13k|        return true;                                                    \
  |  |  |  | 9569|  2.13k|    }
  |  |  ------------------
  |  |   85|   277k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   275k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.94k, False: 273k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.94k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.94k|        return true;                                                    \
  |  |  |  | 9569|  1.94k|    }
  |  |  ------------------
  |  |   86|   275k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9566|   273k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 655, False: 272k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    655|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    655|        return true;                                                    \
  |  |  |  | 9569|    655|    }
  |  |  ------------------
  |  |   87|   273k|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9566|   272k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 658, False: 271k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    658|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    658|        return true;                                                    \
  |  |  |  | 9569|    658|    }
  |  |  ------------------
  |  |   88|   272k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9566|   271k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.22k, False: 269k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.22k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.22k|        return true;                                                    \
  |  |  |  | 9569|  2.22k|    }
  |  |  ------------------
  |  |   89|   271k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9566|   269k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 3.84k, False: 265k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  3.84k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  3.84k|        return true;                                                    \
  |  |  |  | 9569|  3.84k|    }
  |  |  ------------------
  |  |   90|   269k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9566|   265k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.29k, False: 264k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.29k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.29k|        return true;                                                    \
  |  |  |  | 9569|  1.29k|    }
  |  |  ------------------
  |  |   91|   265k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9566|   264k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.05k, False: 263k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.05k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.05k|        return true;                                                    \
  |  |  |  | 9569|  1.05k|    }
  |  |  ------------------
  |  |   92|   264k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9566|   263k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 910, False: 262k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    910|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    910|        return true;                                                    \
  |  |  |  | 9569|    910|    }
  |  |  ------------------
  |  |   93|   263k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9566|   262k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.86k, False: 260k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.86k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.86k|        return true;                                                    \
  |  |  |  | 9569|  1.86k|    }
  |  |  ------------------
  |  |   94|   262k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9566|   260k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 585, False: 260k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    585|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    585|        return true;                                                    \
  |  |  |  | 9569|    585|    }
  |  |  ------------------
  |  |   95|   260k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9566|   260k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.53k, False: 257k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.53k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.53k|        return true;                                                    \
  |  |  |  | 9569|  2.53k|    }
  |  |  ------------------
  |  |   96|   260k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9566|   257k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 891, False: 256k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    891|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    891|        return true;                                                    \
  |  |  |  | 9569|    891|    }
  |  |  ------------------
  |  |   97|   257k|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9566|   256k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 437, False: 256k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    437|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    437|        return true;                                                    \
  |  |  |  | 9569|    437|    }
  |  |  ------------------
  |  |   98|   256k|                                                                        \
  |  |   99|   256k|    /* Generic encap & decap */                                         \
  |  |  100|   256k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9566|   256k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.49k, False: 253k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.49k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.49k|        return true;                                                    \
  |  |  |  | 9569|  2.49k|    }
  |  |  ------------------
  |  |  101|   256k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9566|   253k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.29k, False: 251k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.29k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.29k|        return true;                                                    \
  |  |  |  | 9569|  2.29k|    }
  |  |  ------------------
  |  |  102|   253k|                                                                        \
  |  |  103|   253k|    /* Metadata. */                                                     \
  |  |  104|   253k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9566|   251k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 803, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    803|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    803|        return true;                                                    \
  |  |  |  | 9569|    803|    }
  |  |  ------------------
  |  |  105|   251k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9566|   250k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 292, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    292|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    292|        return true;                                                    \
  |  |  |  | 9569|    292|    }
  |  |  ------------------
  |  |  106|   250k|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9566|   250k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.45k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.45k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.45k|        return true;                                                    \
  |  |  |  | 9569|  1.45k|    }
  |  |  ------------------
  |  |  107|   250k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9566|   248k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.25k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.25k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.25k|        return true;                                                    \
  |  |  |  | 9569|  1.25k|    }
  |  |  ------------------
  |  |  108|   248k|                                                                        \
  |  |  109|   248k|    /* Flow table interaction. */                                       \
  |  |  110|   248k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9566|   247k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.95k, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.95k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.95k|        return true;                                                    \
  |  |  |  | 9569|  1.95k|    }
  |  |  ------------------
  |  |  111|   247k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9566|   245k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 33.7k, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  33.7k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  33.7k|        return true;                                                    \
  |  |  |  | 9569|  33.7k|    }
  |  |  ------------------
  |  |  112|   245k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9566|   211k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.11k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.11k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.11k|        return true;                                                    \
  |  |  |  | 9569|  1.11k|    }
  |  |  ------------------
  |  |  113|   211k|                                                                        \
  |  |  114|   211k|    /* Arithmetic. */                                                   \
  |  |  115|   211k|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9566|   210k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.95k, False: 207k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.95k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.95k|        return true;                                                    \
  |  |  |  | 9569|  2.95k|    }
  |  |  ------------------
  |  |  116|   210k|                                                                        \
  |  |  117|   210k|    /* Other. */                                                        \
  |  |  118|   210k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9566|   207k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 3.61k, False: 204k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  3.61k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  3.61k|        return true;                                                    \
  |  |  |  | 9569|  3.61k|    }
  |  |  ------------------
  |  |  119|   207k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9566|   204k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.51k, False: 202k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.51k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.51k|        return true;                                                    \
  |  |  |  | 9569|  1.51k|    }
  |  |  ------------------
  |  |  120|   204k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9566|   202k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.93k, False: 200k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.93k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.93k|        return true;                                                    \
  |  |  |  | 9569|  1.93k|    }
  |  |  ------------------
  |  |  121|   202k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9566|   200k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1, False: 200k]
  |  |  |  |  ------------------
  |  |  |  | 9567|      1|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|      1|        return true;                                                    \
  |  |  |  | 9569|      1|    }
  |  |  ------------------
  |  |  122|   200k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9566|   200k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 11.1k, False: 189k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  11.1k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  11.1k|        return true;                                                    \
  |  |  |  | 9569|  11.1k|    }
  |  |  ------------------
  |  |  123|   200k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9566|   189k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.13k, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.13k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.13k|        return true;                                                    \
  |  |  |  | 9569|  1.13k|    }
  |  |  ------------------
  |  |  124|   189k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9566|   188k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 11.4k, False: 177k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  11.4k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  11.4k|        return true;                                                    \
  |  |  |  | 9569|  11.4k|    }
  |  |  ------------------
  |  |  125|   188k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9566|   177k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1, False: 177k]
  |  |  |  |  ------------------
  |  |  |  | 9567|      1|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|      1|        return true;                                                    \
  |  |  |  | 9569|      1|    }
  |  |  ------------------
  |  |  126|   177k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9566|   177k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 10.4k, False: 166k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  10.4k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  10.4k|        return true;                                                    \
  |  |  |  | 9569|  10.4k|    }
  |  |  ------------------
  |  |  127|   177k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9566|   166k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 495, False: 166k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    495|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    495|        return true;                                                    \
  |  |  |  | 9569|    495|    }
  |  |  ------------------
  |  |  128|   166k|           "check_pkt_larger")                                          \
  |  |  129|   166k|                                                                        \
  |  |  130|   166k|    /* Debugging actions.                                               \
  |  |  131|   166k|     *                                                                  \
  |  |  132|   166k|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|   166k|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|   166k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9566|   166k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.18k, False: 164k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.18k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.18k|        return true;                                                    \
  |  |  |  | 9569|  1.18k|    }
  |  |  ------------------
  |  |  135|   166k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9566|   164k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.55k, False: 162k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.55k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.55k|        return true;                                                    \
  |  |  |  | 9569|  2.55k|    }
  |  |  ------------------
  |  |  136|   164k|                                                                        \
  |  |  137|   164k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|   164k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9566|   162k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 659, False: 161k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    659|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    659|        return true;                                                    \
  |  |  |  | 9569|    659|    }
  |  |  ------------------
  |  |  139|   162k|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9566|   161k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 201, False: 161k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    201|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    201|        return true;                                                    \
  |  |  |  | 9569|    201|    }
  |  |  ------------------
  |  |  140|   161k|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9566|   161k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 823, False: 160k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    823|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    823|        return true;                                                    \
  |  |  |  | 9569|    823|    }
  |  |  ------------------
  |  |  141|   161k|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9566|   160k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 622, False: 160k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    622|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    622|        return true;                                                    \
  |  |  |  | 9569|    622|    }
  |  |  ------------------
  |  |  142|   160k|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9566|   160k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 259, False: 159k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    259|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    259|        return true;                                                    \
  |  |  |  | 9569|    259|    }
  |  |  ------------------
  ------------------
 9571|   159k|#undef OFPACT
 9572|       |
 9573|   159k|    return false;
 9574|  14.3M|}
ofp-actions.c:ofpact_parse:
 9550|   195k|{
 9551|   195k|    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.05k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9553|  2.05k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.05k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.05k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   65|  2.05k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9553|    565|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 565, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    565|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   66|  9.66k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9553|  9.66k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 9.66k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  9.66k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   67|  9.66k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9553|  1.69k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.69k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.69k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   68|  1.69k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9553|    535|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 535, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    535|            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: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.19k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   70|  2.19k|                                                                        \
  |  |   71|  2.19k|    /* Header changes. */                                               \
  |  |   72|  51.1k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9553|  51.1k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 51.1k, False: 144k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  51.1k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   73|  51.1k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9553|    988|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 988, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    988|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   74|    988|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9553|    725|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 725, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    725|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   75|    725|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9553|    447|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 447, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    447|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   76|  1.61k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9553|  1.61k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.61k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.61k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   77|  1.61k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9553|    952|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 952, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    952|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   78|    952|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9553|    557|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 557, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    557|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   79|    793|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9553|    793|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 793, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    793|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   80|    865|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9553|    865|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 865, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    865|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   81|  1.16k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9553|  1.16k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.16k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.16k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   82|  1.17k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9553|  1.17k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.17k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.17k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   83|  1.22k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9553|  1.22k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.22k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.22k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   84|  2.13k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9553|  2.13k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.13k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.13k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   85|  2.13k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9553|  1.94k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.94k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.94k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   86|  1.94k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9553|    655|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 655, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    655|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   87|    658|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9553|    658|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 658, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    658|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   88|  2.22k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9553|  2.22k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.22k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.22k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   89|  3.84k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9553|  3.84k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 3.84k, False: 192k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  3.84k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   90|  3.84k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9553|  1.29k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.29k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.29k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   91|  1.29k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9553|  1.05k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.05k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.05k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   92|  1.05k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9553|    910|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 910, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    910|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   93|  1.86k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9553|  1.86k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.86k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.86k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   94|  1.86k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9553|    585|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 585, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    585|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   95|  2.53k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9553|  2.53k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.53k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.53k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   96|  2.53k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9553|    891|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 891, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    891|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   97|    891|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9553|    437|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 437, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    437|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   98|    437|                                                                        \
  |  |   99|    437|    /* Generic encap & decap */                                         \
  |  |  100|  2.49k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9553|  2.49k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.49k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.49k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  101|  2.49k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9553|  2.29k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.29k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.29k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  102|  2.29k|                                                                        \
  |  |  103|  2.29k|    /* Metadata. */                                                     \
  |  |  104|  2.29k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9553|    803|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 803, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    803|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  105|    803|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9553|    292|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 292, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    292|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  106|  1.45k|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9553|  1.45k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.45k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.45k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  107|  1.45k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9553|  1.25k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.25k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.25k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  108|  1.25k|                                                                        \
  |  |  109|  1.25k|    /* Flow table interaction. */                                       \
  |  |  110|  1.95k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9553|  1.95k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.95k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.95k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  111|  33.7k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9553|  33.7k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 33.7k, False: 162k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  33.7k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  112|  33.7k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9553|  1.11k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.11k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.11k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  113|  1.11k|                                                                        \
  |  |  114|  1.11k|    /* Arithmetic. */                                                   \
  |  |  115|  2.95k|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9553|  2.95k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.95k, False: 192k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.95k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  116|  2.95k|                                                                        \
  |  |  117|  2.95k|    /* Other. */                                                        \
  |  |  118|  3.61k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9553|  3.61k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 3.61k, False: 192k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  3.61k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  119|  3.61k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9553|  1.51k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.51k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.51k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  120|  1.93k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9553|  1.93k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.93k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.93k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  121|  1.93k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9553|      1|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|      1|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  122|  11.1k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9553|  11.1k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 11.1k, False: 184k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  11.1k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  123|  11.1k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9553|  1.13k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.13k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.13k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  124|  11.4k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9553|  11.4k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 11.4k, False: 184k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  11.4k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  125|  11.4k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9553|      1|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|      1|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  126|  10.4k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9553|  10.4k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 10.4k, False: 185k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  10.4k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  127|  10.4k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9553|    495|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 495, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    495|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  128|    495|           "check_pkt_larger")                                          \
  |  |  129|    495|                                                                        \
  |  |  130|    495|    /* Debugging actions.                                               \
  |  |  131|    495|     *                                                                  \
  |  |  132|    495|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    495|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|  1.18k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9553|  1.18k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.18k, False: 194k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.18k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  135|  2.55k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9553|  2.55k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.55k, False: 193k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.55k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  136|  2.55k|                                                                        \
  |  |  137|  2.55k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  2.55k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9553|    659|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 659, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    659|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  139|    659|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9553|    201|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 201, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    201|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  140|    823|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9553|    823|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 823, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    823|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  141|    823|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9553|    622|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 622, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    622|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  142|    622|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9553|    259|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 259, False: 195k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    259|            return parse_##ENUM(value, pp);
  |  |  ------------------
  ------------------
 9556|      0|#undef OFPACT
 9557|      0|    default:
  ------------------
  |  Branch (9557:5): [True: 0, False: 195k]
  ------------------
 9558|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9559|   195k|    }
 9560|   195k|}
ofp-actions.c:parse_OUTPUT:
  670|  2.58k|{
  671|  2.58k|    if (strstr(arg, "port") && strstr(arg, "max_len")) {
  ------------------
  |  Branch (671:9): [True: 1.31k, False: 1.26k]
  |  Branch (671:32): [True: 1.12k, False: 194]
  ------------------
  672|  1.12k|        struct ofpact_output_trunc *output_trunc;
  673|       |
  674|  1.12k|        output_trunc = ofpact_put_OUTPUT_TRUNC(pp->ofpacts);
  675|  1.12k|        return parse_truncate_subfield(arg, pp, output_trunc);
  676|  1.12k|    }
  677|       |
  678|  1.46k|    ofp_port_t port;
  679|  1.46k|    if (ofputil_port_from_string(arg, pp->port_map, &port)) {
  ------------------
  |  Branch (679:9): [True: 567, False: 896]
  ------------------
  680|    567|        struct ofpact_output *output = ofpact_put_OUTPUT(pp->ofpacts);
  681|    567|        output->port = port;
  682|    567|        output->max_len = output->port == OFPP_CONTROLLER ? UINT16_MAX : 0;
  ------------------
  |  |   45|    567|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|    567|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (682:27): [True: 0, False: 567]
  ------------------
  683|    567|        return NULL;
  684|    567|    }
  685|       |
  686|    896|    struct mf_subfield src;
  687|    896|    char *error = mf_parse_subfield(&src, arg);
  688|    896|    if (!error) {
  ------------------
  |  Branch (688:9): [True: 879, False: 17]
  ------------------
  689|    879|        struct ofpact_output_reg *output_reg;
  690|       |
  691|    879|        output_reg = ofpact_put_OUTPUT_REG(pp->ofpacts);
  692|    879|        output_reg->max_len = UINT16_MAX;
  693|    879|        output_reg->src = src;
  694|    879|        return NULL;
  695|    879|    }
  696|     17|    free(error);
  697|       |
  698|     17|    return xasprintf("%s: output to unknown port", arg);
  699|    896|}
ofp-actions.c:parse_truncate_subfield:
  630|  1.12k|{
  631|  1.12k|    char *key, *value;
  632|  1.12k|    char *arg = CONST_CAST(char *, arg_);
  ------------------
  |  |   85|  1.12k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  1.12k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  1.12k|     (TYPE) (POINTER))
  ------------------
  633|       |
  634|  4.35k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (634:12): [True: 3.29k, False: 1.05k]
  ------------------
  635|  3.29k|        if (!strcmp(key, "port")) {
  ------------------
  |  Branch (635:13): [True: 1.91k, False: 1.37k]
  ------------------
  636|  1.91k|            if (!ofputil_port_from_string(value, pp->port_map,
  ------------------
  |  Branch (636:17): [True: 9, False: 1.91k]
  ------------------
  637|  1.91k|                                          &output_trunc->port)) {
  638|      9|                return xasprintf("output to unknown truncate port: %s",
  639|      9|                                  value);
  640|      9|            }
  641|  1.91k|            if (ofp_to_u16(output_trunc->port) > ofp_to_u16(OFPP_MAX)) {
  ------------------
  |  |   33|  1.91k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  1.91k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (641:17): [True: 968, False: 942]
  ------------------
  642|    968|                if (output_trunc->port != OFPP_LOCAL &&
  ------------------
  |  |   46|    968|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|  1.93k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (642:21): [True: 774, False: 194]
  ------------------
  643|    774|                    output_trunc->port != OFPP_IN_PORT)
  ------------------
  |  |   39|    774|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    774|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (643:21): [True: 11, False: 763]
  ------------------
  644|     11|                return xasprintf("output to unsupported truncate port: %s",
  645|     11|                                 value);
  646|    968|            }
  647|  1.91k|        } else if (!strcmp(key, "max_len")) {
  ------------------
  |  Branch (647:20): [True: 1.35k, False: 23]
  ------------------
  648|  1.35k|            char *err;
  649|       |
  650|  1.35k|            err = str_to_u32(value, &output_trunc->max_len);
  651|  1.35k|            if (err) {
  ------------------
  |  Branch (651:17): [True: 23, False: 1.33k]
  ------------------
  652|     23|                return err;
  653|     23|            }
  654|       |
  655|  1.33k|            if (output_trunc->max_len < ETH_HEADER_LEN) {
  ------------------
  |  |  439|  1.33k|#define ETH_HEADER_LEN 14
  ------------------
  |  Branch (655:17): [True: 5, False: 1.32k]
  ------------------
  656|      5|                return xasprintf("max_len %"PRIu32" is less than the minimum "
  657|      5|                                 "value %d",
  658|      5|                                 output_trunc->max_len, ETH_HEADER_LEN);
  ------------------
  |  |  439|      5|#define ETH_HEADER_LEN 14
  ------------------
  659|      5|            }
  660|  1.33k|        } else {
  661|     23|            return xasprintf("invalid key '%s' in output_trunc argument",
  662|     23|                                key);
  663|     23|        }
  664|  3.29k|    }
  665|  1.05k|    return NULL;
  666|  1.12k|}
ofp-actions.c:parse_GROUP:
  741|    565|{
  742|    565|    return str_to_u32(arg, &ofpact_put_GROUP(pp->ofpacts)->group_id);
  743|    565|}
ofp-actions.c:parse_CONTROLLER:
  938|  9.66k|{
  939|  9.66k|    enum ofp_packet_in_reason reason = OFPR_ACTION;
  940|  9.66k|    uint16_t controller_id = 0;
  941|  9.66k|    uint16_t max_len = UINT16_MAX;
  942|  9.66k|    uint32_t meter_id = NX_CTLR_NO_METER;
  ------------------
  |  |  307|  9.66k|#define NX_CTLR_NO_METER 0
  ------------------
  943|  9.66k|    const char *userdata = NULL;
  944|  9.66k|    bool pause = false;
  945|       |
  946|  9.66k|    if (!arg[0]) {
  ------------------
  |  Branch (946:9): [True: 247, False: 9.41k]
  ------------------
  947|       |        /* Use defaults. */
  948|  9.41k|    } else if (strspn(arg, "0123456789") == strlen(arg)) {
  ------------------
  |  Branch (948:16): [True: 316, False: 9.09k]
  ------------------
  949|    316|        char *error = str_to_u16(arg, "max_len", &max_len);
  950|    316|        if (error) {
  ------------------
  |  Branch (950:13): [True: 1, False: 315]
  ------------------
  951|      1|            return error;
  952|      1|        }
  953|  9.09k|    } else {
  954|  9.09k|        char *name, *value;
  955|       |
  956|  19.5k|        while (ofputil_parse_key_value(&arg, &name, &value)) {
  ------------------
  |  Branch (956:16): [True: 10.5k, False: 8.99k]
  ------------------
  957|  10.5k|            if (!strcmp(name, "reason")) {
  ------------------
  |  Branch (957:17): [True: 912, False: 9.66k]
  ------------------
  958|    912|                if (!ofputil_packet_in_reason_from_string(value, &reason)) {
  ------------------
  |  Branch (958:21): [True: 67, False: 845]
  ------------------
  959|     67|                    return xasprintf("unknown reason \"%s\"", value);
  960|     67|                }
  961|  9.66k|            } else if (!strcmp(name, "max_len")) {
  ------------------
  |  Branch (961:24): [True: 341, False: 9.32k]
  ------------------
  962|    341|                char *error = str_to_u16(value, "max_len", &max_len);
  963|    341|                if (error) {
  ------------------
  |  Branch (963:21): [True: 1, False: 340]
  ------------------
  964|      1|                    return error;
  965|      1|                }
  966|  9.32k|            } else if (!strcmp(name, "id")) {
  ------------------
  |  Branch (966:24): [True: 884, False: 8.44k]
  ------------------
  967|    884|                char *error = str_to_u16(value, "id", &controller_id);
  968|    884|                if (error) {
  ------------------
  |  Branch (968:21): [True: 3, False: 881]
  ------------------
  969|      3|                    return error;
  970|      3|                }
  971|  8.44k|            } else if (!strcmp(name, "userdata")) {
  ------------------
  |  Branch (971:24): [True: 1.08k, False: 7.35k]
  ------------------
  972|  1.08k|                userdata = value;
  973|  7.35k|            } else if (!strcmp(name, "pause")) {
  ------------------
  |  Branch (973:24): [True: 6.96k, False: 388]
  ------------------
  974|  6.96k|                pause = true;
  975|  6.96k|            } else if (!strcmp(name, "meter_id")) {
  ------------------
  |  Branch (975:24): [True: 351, False: 37]
  ------------------
  976|    351|                char *error = str_to_u32(value, &meter_id);
  977|    351|                if (error) {
  ------------------
  |  Branch (977:21): [True: 1, False: 350]
  ------------------
  978|      1|                    return error;
  979|      1|                }
  980|    351|            } else {
  981|     37|                return xasprintf("unknown key \"%s\" parsing controller "
  982|     37|                                 "action", name);
  983|     37|            }
  984|  10.5k|        }
  985|  9.09k|    }
  986|       |
  987|  9.55k|    if (reason == OFPR_ACTION && controller_id == 0 && !userdata && !pause
  ------------------
  |  Branch (987:9): [True: 9.02k, False: 523]
  |  Branch (987:34): [True: 8.39k, False: 637]
  |  Branch (987:56): [True: 7.54k, False: 843]
  |  Branch (987:69): [True: 1.14k, False: 6.40k]
  ------------------
  988|  1.14k|        && meter_id == NX_CTLR_NO_METER) {
  ------------------
  |  |  307|  1.14k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (988:12): [True: 798, False: 342]
  ------------------
  989|    798|        struct ofpact_output *output;
  990|       |
  991|    798|        output = ofpact_put_OUTPUT(pp->ofpacts);
  992|    798|        output->port = OFPP_CONTROLLER;
  ------------------
  |  |   45|    798|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|    798|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  993|    798|        output->max_len = max_len;
  994|  8.75k|    } else {
  995|  8.75k|        struct ofpact_controller *controller;
  996|       |
  997|  8.75k|        controller = ofpact_put_CONTROLLER(pp->ofpacts);
  998|  8.75k|        controller->max_len = max_len;
  999|  8.75k|        controller->reason = reason;
 1000|  8.75k|        controller->controller_id = controller_id;
 1001|  8.75k|        controller->pause = pause;
 1002|  8.75k|        controller->meter_id = meter_id;
 1003|       |
 1004|  8.75k|        if (userdata) {
  ------------------
  |  Branch (1004:13): [True: 843, False: 7.91k]
  ------------------
 1005|    843|            size_t start_ofs = pp->ofpacts->size;
 1006|    843|            const char *end = ofpbuf_put_hex(pp->ofpacts, userdata, NULL);
 1007|    843|            if (*end) {
  ------------------
  |  Branch (1007:17): [True: 4, False: 839]
  ------------------
 1008|      4|                return xstrdup("bad hex digit in `controller' "
 1009|      4|                               "action `userdata'");
 1010|      4|            }
 1011|    839|            size_t userdata_len = pp->ofpacts->size - start_ofs;
 1012|    839|            controller = pp->ofpacts->header;
 1013|    839|            controller->userdata_len = userdata_len;
 1014|    839|        }
 1015|       |
 1016|  8.75k|        if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (1016:13): [True: 1, False: 8.74k]
  ------------------
 1017|      1|            return xasprintf("input too big");
 1018|      1|        }
 1019|       |
 1020|  8.74k|        ofpact_finish_CONTROLLER(pp->ofpacts, &controller);
 1021|  8.74k|    }
 1022|       |
 1023|  9.54k|    return NULL;
 1024|  9.55k|}
ofp-actions.c:parse_ENQUEUE:
 1131|  1.69k|{
 1132|  1.69k|    char *sp = NULL;
 1133|  1.69k|    char *port = strtok_r(arg, ":q,", &sp);
 1134|  1.69k|    char *queue = strtok_r(NULL, "", &sp);
 1135|  1.69k|    struct ofpact_enqueue *enqueue;
 1136|       |
 1137|  1.69k|    if (port == NULL || queue == NULL) {
  ------------------
  |  Branch (1137:9): [True: 4, False: 1.69k]
  |  Branch (1137:25): [True: 1, False: 1.69k]
  ------------------
 1138|      5|        return xstrdup("\"enqueue\" syntax is \"enqueue:PORT:QUEUE\" or "
 1139|      5|                       "\"enqueue(PORT,QUEUE)\"");
 1140|      5|    }
 1141|       |
 1142|  1.69k|    enqueue = ofpact_put_ENQUEUE(pp->ofpacts);
 1143|  1.69k|    if (!ofputil_port_from_string(port, pp->port_map, &enqueue->port)) {
  ------------------
  |  Branch (1143:9): [True: 1, False: 1.69k]
  ------------------
 1144|      1|        return xasprintf("%s: enqueue to unknown port", port);
 1145|      1|    }
 1146|  1.69k|    return str_to_u32(queue, &enqueue->queue);
 1147|  1.69k|}
ofp-actions.c:parse_OUTPUT_REG:
 1311|    535|{
 1312|    535|    return parse_OUTPUT(arg, pp);
 1313|    535|}
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|  51.1k|{
 3272|  51.1k|    char *copy = xstrdup(arg);
 3273|  51.1k|    char *error = set_field_parse__(copy, pp);
 3274|  51.1k|    free(copy);
 3275|  51.1k|    return error;
 3276|  51.1k|}
ofp-actions.c:set_field_parse__:
 3227|  51.1k|{
 3228|  51.1k|    char *value;
 3229|  51.1k|    char *delim;
 3230|  51.1k|    char *key;
 3231|  51.1k|    const struct mf_field *mf;
 3232|  51.1k|    union mf_value sf_value, sf_mask;
 3233|  51.1k|    char *error;
 3234|       |
 3235|  51.1k|    error = set_field_split_str(arg, &key, &value, &delim);
 3236|  51.1k|    if (error) {
  ------------------
  |  Branch (3236:9): [True: 14, False: 51.1k]
  ------------------
 3237|     14|        return error;
 3238|     14|    }
 3239|       |
 3240|  51.1k|    mf = mf_from_name(key);
 3241|  51.1k|    if (!mf) {
  ------------------
  |  Branch (3241:9): [True: 36, False: 51.1k]
  ------------------
 3242|     36|        return xasprintf("%s is not a valid OXM field name", key);
 3243|     36|    }
 3244|  51.1k|    if (!mf->writable) {
  ------------------
  |  Branch (3244:9): [True: 1, False: 51.1k]
  ------------------
 3245|      1|        return xasprintf("%s is read-only", key);
 3246|      1|    }
 3247|       |
 3248|  51.1k|    delim[0] = '\0';
 3249|  51.1k|    error = mf_parse(mf, value, pp->port_map, &sf_value, &sf_mask);
 3250|  51.1k|    if (error) {
  ------------------
  |  Branch (3250:9): [True: 4, False: 51.1k]
  ------------------
 3251|      4|        return error;
 3252|      4|    }
 3253|       |
 3254|  51.1k|    if (!mf_is_value_valid(mf, &sf_value)) {
  ------------------
  |  Branch (3254:9): [True: 15, False: 51.1k]
  ------------------
 3255|     15|        return xasprintf("%s is not a valid value for field %s", value, key);
 3256|     15|    }
 3257|       |
 3258|  51.1k|    *pp->usable_protocols &= mf->usable_protocols_exact;
 3259|       |
 3260|  51.1k|    ofpact_put_set_field(pp->ofpacts, mf, &sf_value, &sf_mask);
 3261|       |    return NULL;
 3262|  51.1k|}
ofp-actions.c:set_field_split_str:
 3195|  52.4k|{
 3196|  52.4k|    char *value_end;
 3197|       |
 3198|  52.4k|    *key = NULL;
 3199|  52.4k|    *value = arg;
 3200|  52.4k|    if (delim) {
  ------------------
  |  Branch (3200:9): [True: 51.6k, False: 769]
  ------------------
 3201|  51.6k|        *delim = NULL;
 3202|  51.6k|    }
 3203|       |
 3204|  52.4k|    value_end = strstr(arg, "->");
 3205|  52.4k|    if (!value_end) {
  ------------------
  |  Branch (3205:9): [True: 17, False: 52.4k]
  ------------------
 3206|     17|        return xasprintf("%s: missing `->'", arg);
 3207|     17|    }
 3208|       |
 3209|  52.4k|    *key = value_end + strlen("->");
 3210|  52.4k|    if (delim) {
  ------------------
  |  Branch (3210:9): [True: 51.6k, False: 768]
  ------------------
 3211|  51.6k|        *delim = value_end;
 3212|  51.6k|    }
 3213|  52.4k|    if (strlen(value_end) <= strlen("->")) {
  ------------------
  |  Branch (3213:9): [True: 3, False: 52.4k]
  ------------------
 3214|      3|        return xasprintf("%s: missing field name following `->'", arg);
 3215|      3|    }
 3216|       |
 3217|  52.4k|    return NULL;
 3218|  52.4k|}
ofp-actions.c:parse_SET_VLAN_VID:
 1634|    988|{
 1635|       |    return parse_set_vlan_vid(arg, false, pp);
 1636|    988|}
ofp-actions.c:parse_SET_VLAN_PCP:
 1742|    725|{
 1743|       |    return parse_set_vlan_pcp(arg, false, pp);
 1744|    725|}
ofp-actions.c:parse_STRIP_VLAN:
 1801|    447|{
 1802|    447|    ofpact_put_STRIP_VLAN(pp->ofpacts)->ofpact.raw = OFPAT_RAW10_STRIP_VLAN;
 1803|       |    return NULL;
 1804|    447|}
ofp-actions.c:parse_PUSH_VLAN:
 1864|  1.61k|{
 1865|  1.61k|    struct ofpact_push_vlan *push_vlan;
 1866|  1.61k|    uint16_t ethertype;
 1867|  1.61k|    char *error;
 1868|       |
 1869|  1.61k|    *pp->usable_protocols &= OFPUTIL_P_OF11_UP;
  ------------------
  |  |   92|  1.61k|#define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|  1.61k|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|  1.61k|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|  1.61k|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|  1.61k|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1870|  1.61k|    error = str_to_u16(arg, "ethertype", &ethertype);
 1871|  1.61k|    if (error) {
  ------------------
  |  Branch (1871:9): [True: 3, False: 1.61k]
  ------------------
 1872|      3|        return error;
 1873|      3|    }
 1874|       |
 1875|  1.61k|    if (!eth_type_vlan(htons(ethertype))) {
  ------------------
  |  Branch (1875:9): [True: 22, False: 1.59k]
  ------------------
 1876|     22|        return xasprintf("%s: not a valid VLAN ethertype", arg);
 1877|     22|    }
 1878|  1.59k|    push_vlan = ofpact_put_PUSH_VLAN(pp->ofpacts);
 1879|  1.59k|    push_vlan->ethertype = htons(ethertype);
 1880|       |    return NULL;
 1881|  1.61k|}
ofp-actions.c:parse_SET_ETH_SRC:
 1969|    952|{
 1970|    952|    return str_to_mac(arg, &ofpact_put_SET_ETH_SRC(pp->ofpacts)->mac);
 1971|    952|}
ofp-actions.c:parse_SET_ETH_DST:
 1975|    557|{
 1976|    557|    return str_to_mac(arg, &ofpact_put_SET_ETH_DST(pp->ofpacts)->mac);
 1977|    557|}
ofp-actions.c:parse_SET_IPV4_SRC:
 2061|    793|{
 2062|    793|    return str_to_ip(arg, &ofpact_put_SET_IPV4_SRC(pp->ofpacts)->ipv4);
 2063|    793|}
ofp-actions.c:parse_SET_IPV4_DST:
 2067|    865|{
 2068|    865|    return str_to_ip(arg, &ofpact_put_SET_IPV4_DST(pp->ofpacts)->ipv4);
 2069|    865|}
ofp-actions.c:parse_SET_IP_DSCP:
 2140|  1.16k|{
 2141|  1.16k|    uint8_t tos;
 2142|  1.16k|    char *error;
 2143|       |
 2144|  1.16k|    error = str_to_u8(arg, "TOS", &tos);
 2145|  1.16k|    if (error) {
  ------------------
  |  Branch (2145:9): [True: 17, False: 1.14k]
  ------------------
 2146|     17|        return error;
 2147|     17|    }
 2148|       |
 2149|  1.14k|    if (tos & ~IP_DSCP_MASK) {
  ------------------
  |  |  724|  1.14k|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (2149:9): [True: 2, False: 1.14k]
  ------------------
 2150|      2|        return xasprintf("%s: not a valid TOS", arg);
 2151|      2|    }
 2152|  1.14k|    ofpact_put_SET_IP_DSCP(pp->ofpacts)->dscp = tos;
 2153|       |    return NULL;
 2154|  1.14k|}
ofp-actions.c:parse_SET_IP_ECN:
 2213|  1.17k|{
 2214|  1.17k|    uint8_t ecn;
 2215|  1.17k|    char *error;
 2216|       |
 2217|  1.17k|    error = str_to_u8(arg, "ECN", &ecn);
 2218|  1.17k|    if (error) {
  ------------------
  |  Branch (2218:9): [True: 20, False: 1.15k]
  ------------------
 2219|     20|        return error;
 2220|     20|    }
 2221|       |
 2222|  1.15k|    if (ecn & ~IP_ECN_MASK) {
  ------------------
  |  |  722|  1.15k|#define IP_ECN_MASK 0x03
  ------------------
  |  Branch (2222:9): [True: 3, False: 1.15k]
  ------------------
 2223|      3|        return xasprintf("%s: not a valid ECN", arg);
 2224|      3|    }
 2225|  1.15k|    ofpact_put_SET_IP_ECN(pp->ofpacts)->ecn = ecn;
 2226|       |    return NULL;
 2227|  1.15k|}
ofp-actions.c:parse_SET_L4_SRC_PORT:
 2362|  2.13k|{
 2363|  2.13k|    return str_to_u16(arg, "source port",
 2364|  2.13k|                      &ofpact_put_SET_L4_SRC_PORT(pp->ofpacts)->port);
 2365|  2.13k|}
ofp-actions.c:parse_SET_L4_DST_PORT:
 2369|  1.94k|{
 2370|  1.94k|    return str_to_u16(arg, "destination port",
 2371|  1.94k|                      &ofpact_put_SET_L4_DST_PORT(pp->ofpacts)->port);
 2372|  1.94k|}
ofp-actions.c:parse_REG_MOVE:
 2707|    655|{
 2708|    655|    struct ofpact_reg_move *move = ofpact_put_REG_MOVE(pp->ofpacts);
 2709|    655|    return nxm_parse_reg_move(move, arg);
 2710|    655|}
ofp-actions.c:parse_STACK_PUSH:
 3545|    658|{
 3546|    658|    return nxm_parse_stack_action(ofpact_put_STACK_PUSH(pp->ofpacts), arg);
 3547|    658|}
ofp-actions.c:parse_STACK_POP:
 3551|  2.22k|{
 3552|  2.22k|    return nxm_parse_stack_action(ofpact_put_STACK_POP(pp->ofpacts), arg);
 3553|  2.22k|}
ofp-actions.c:parse_DEC_TTL:
 3702|  3.84k|{
 3703|  3.84k|    if (*arg == '\0') {
  ------------------
  |  Branch (3703:9): [True: 972, False: 2.86k]
  ------------------
 3704|    972|        parse_noargs_dec_ttl(pp);
 3705|  2.86k|    } else {
 3706|  2.86k|        struct ofpact_cnt_ids *ids;
 3707|  2.86k|        char *cntr;
 3708|       |
 3709|  2.86k|        ids = ofpact_put_DEC_TTL(pp->ofpacts);
 3710|  2.86k|        ids->ofpact.raw = NXAST_RAW_DEC_TTL_CNT_IDS;
 3711|   726k|        for (cntr = strtok_r(arg, ", ", &arg); cntr != NULL;
  ------------------
  |  Branch (3711:48): [True: 723k, False: 2.86k]
  ------------------
 3712|   723k|             cntr = strtok_r(NULL, ", ", &arg)) {
 3713|   723k|            uint16_t id = atoi(cntr);
 3714|       |
 3715|   723k|            ofpbuf_put(pp->ofpacts, &id, sizeof id);
 3716|   723k|            ids = pp->ofpacts->header;
 3717|   723k|            ids->n_controllers++;
 3718|   723k|        }
 3719|  2.86k|        if (!ids->n_controllers) {
  ------------------
  |  Branch (3719:13): [True: 2, False: 2.86k]
  ------------------
 3720|      2|            return xstrdup("dec_ttl_cnt_ids: expected at least one controller "
 3721|      2|                           "id.");
 3722|      2|        }
 3723|       |
 3724|  2.86k|        if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (3724:13): [True: 5, False: 2.86k]
  ------------------
 3725|      5|            return xasprintf("input too big");
 3726|      5|        }
 3727|       |
 3728|  2.86k|        ofpact_finish_DEC_TTL(pp->ofpacts, &ids);
 3729|  2.86k|    }
 3730|  3.83k|    return NULL;
 3731|  3.84k|}
ofp-actions.c:parse_noargs_dec_ttl:
 3689|    972|{
 3690|    972|    struct ofpact_cnt_ids *ids;
 3691|    972|    uint16_t id = 0;
 3692|       |
 3693|    972|    ofpact_put_DEC_TTL(pp->ofpacts);
 3694|    972|    ofpbuf_put(pp->ofpacts, &id, sizeof id);
 3695|    972|    ids = pp->ofpacts->header;
 3696|    972|    ids->n_controllers++;
 3697|    972|    ofpact_finish_DEC_TTL(pp->ofpacts, &ids);
 3698|    972|}
ofp-actions.c:parse_SET_MPLS_LABEL:
 3784|  1.29k|{
 3785|  1.29k|    struct ofpact_mpls_label *mpls_label
 3786|  1.29k|        = ofpact_put_SET_MPLS_LABEL(pp->ofpacts);
 3787|  1.29k|    uint32_t label;
 3788|  1.29k|    char *error;
 3789|       |
 3790|  1.29k|    if (*arg == '\0') {
  ------------------
  |  Branch (3790:9): [True: 4, False: 1.29k]
  ------------------
 3791|      4|        return xstrdup("set_mpls_label: expected label.");
 3792|      4|    }
 3793|       |
 3794|  1.29k|    error = str_to_u32(arg, &label);
 3795|  1.29k|    if (error) {
  ------------------
  |  Branch (3795:9): [True: 4, False: 1.28k]
  ------------------
 3796|      4|        return error;
 3797|      4|    }
 3798|       |
 3799|  1.28k|    if (label & ~0xfffff) {
  ------------------
  |  Branch (3799:9): [True: 14, False: 1.27k]
  ------------------
 3800|     14|        return xasprintf("%s: not a valid MPLS label", arg);
 3801|     14|    }
 3802|  1.27k|    mpls_label->label = htonl(label);
 3803|       |    return NULL;
 3804|  1.28k|}
ofp-actions.c:parse_SET_MPLS_TC:
 3856|  1.05k|{
 3857|  1.05k|    struct ofpact_mpls_tc *mpls_tc = ofpact_put_SET_MPLS_TC(pp->ofpacts);
 3858|  1.05k|    uint8_t tc;
 3859|  1.05k|    char *error;
 3860|       |
 3861|  1.05k|    if (*arg == '\0') {
  ------------------
  |  Branch (3861:9): [True: 3, False: 1.05k]
  ------------------
 3862|      3|        return xstrdup("set_mpls_tc: expected tc.");
 3863|      3|    }
 3864|       |
 3865|  1.05k|    error = str_to_u8(arg, "MPLS TC", &tc);
 3866|  1.05k|    if (error) {
  ------------------
  |  Branch (3866:9): [True: 1, False: 1.05k]
  ------------------
 3867|      1|        return error;
 3868|      1|    }
 3869|       |
 3870|  1.05k|    if (tc & ~7) {
  ------------------
  |  Branch (3870:9): [True: 1, False: 1.05k]
  ------------------
 3871|      1|        return xasprintf("%s: not a valid MPLS TC", arg);
 3872|      1|    }
 3873|  1.05k|    mpls_tc->tc = tc;
 3874|       |    return NULL;
 3875|  1.05k|}
ofp-actions.c:parse_SET_MPLS_TTL:
 3918|    910|{
 3919|    910|    struct ofpact_mpls_ttl *mpls_ttl = ofpact_put_SET_MPLS_TTL(pp->ofpacts);
 3920|    910|    uint8_t ttl;
 3921|    910|    char *error;
 3922|       |
 3923|    910|    if (*arg == '\0') {
  ------------------
  |  Branch (3923:9): [True: 3, False: 907]
  ------------------
 3924|      3|        return xstrdup("set_mpls_ttl: expected ttl.");
 3925|      3|    }
 3926|       |
 3927|    907|    error = str_to_u8(arg, "MPLS TTL", &ttl);
 3928|    907|    if (error) {
  ------------------
  |  Branch (3928:9): [True: 5, False: 902]
  ------------------
 3929|      5|        return error;
 3930|      5|    }
 3931|    902|    mpls_ttl->ttl = ttl;
 3932|       |    return NULL;
 3933|    907|}
ofp-actions.c:parse_DEC_MPLS_TTL:
 3969|  1.86k|{
 3970|  1.86k|    ofpact_put_DEC_MPLS_TTL(pp->ofpacts);
 3971|       |    return NULL;
 3972|  1.86k|}
ofp-actions.c:parse_PUSH_MPLS:
 4015|    585|{
 4016|    585|    uint16_t ethertype;
 4017|    585|    char *error;
 4018|       |
 4019|    585|    error = str_to_u16(arg, "push_mpls", &ethertype);
 4020|    585|    if (!error) {
  ------------------
  |  Branch (4020:9): [True: 581, False: 4]
  ------------------
 4021|       |        ofpact_put_PUSH_MPLS(pp->ofpacts)->ethertype = htons(ethertype);
 4022|    581|    }
 4023|    585|    return error;
 4024|    585|}
ofp-actions.c:parse_POP_MPLS:
 4073|  2.53k|{
 4074|  2.53k|    uint16_t ethertype;
 4075|  2.53k|    char *error;
 4076|       |
 4077|  2.53k|    error = str_to_u16(arg, "pop_mpls", &ethertype);
 4078|  2.53k|    if (!error) {
  ------------------
  |  Branch (4078:9): [True: 2.52k, False: 4]
  ------------------
 4079|       |        ofpact_put_POP_MPLS(pp->ofpacts)->ethertype = htons(ethertype);
 4080|  2.52k|    }
 4081|  2.53k|    return error;
 4082|  2.53k|}
ofp-actions.c:parse_DEC_NSH_TTL:
 4814|    891|{
 4815|    891|    ofpact_put_DEC_NSH_TTL(pp->ofpacts);
 4816|       |    return NULL;
 4817|    891|}
ofp-actions.c:parse_DELETE_FIELD:
 4237|    437|{
 4238|    437|    struct ofpact_delete_field *delete_field;
 4239|       |
 4240|    437|    delete_field = ofpact_put_DELETE_FIELD(pp->ofpacts);
 4241|    437|    return mf_parse_field(&delete_field->field, arg);
 4242|    437|}
ofp-actions.c:parse_ENCAP:
 4571|  2.49k|{
 4572|  2.49k|    *pp->usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|  2.49k|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|  2.49k|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|  2.49k|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4573|       |
 4574|  2.49k|    struct ofpact_encap *encap;
 4575|  2.49k|    char *key, *value, *str;
 4576|  2.49k|    char *error = NULL;
 4577|  2.49k|    uint16_t prop_class;
 4578|  2.49k|    int n_props = 0;
 4579|       |
 4580|  2.49k|    encap = ofpact_put_ENCAP(pp->ofpacts);
 4581|  2.49k|    encap->hdr_size = 0;
 4582|       |    /* Parse encap header type. */
 4583|  2.49k|    str = arg;
 4584|  2.49k|    if (!ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4584:9): [True: 4, False: 2.48k]
  ------------------
 4585|      4|        return xasprintf("Missing encap hdr: %s", str);
 4586|      4|    }
 4587|  2.48k|    if (!parse_encap_header(key, &encap->new_pkt_type)) {
  ------------------
  |  Branch (4587:9): [True: 139, False: 2.35k]
  ------------------
 4588|    139|        return xasprintf("Encap hdr not supported: %s", value);
 4589|    139|    }
 4590|  2.35k|    if (!parse_ed_prop_class(key, &prop_class)) {
  ------------------
  |  Branch (4590:9): [True: 0, False: 2.35k]
  ------------------
 4591|      0|        return xasprintf("Invalid encap prop class: %s", key);
 4592|      0|    }
 4593|       |    /* Parse encap properties. */
 4594|  2.35k|    error = parse_ed_props(prop_class, &value, &n_props, pp->ofpacts);
 4595|  2.35k|    if (error != NULL) {
  ------------------
  |  Branch (4595:9): [True: 55, False: 2.29k]
  ------------------
 4596|     55|        return error;
 4597|     55|    }
 4598|       |    /* ofpbuf may have been re-allocated. */
 4599|  2.29k|    encap = pp->ofpacts->header;
 4600|  2.29k|    encap->n_props = n_props;
 4601|       |
 4602|  2.29k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (4602:9): [True: 0, False: 2.29k]
  ------------------
 4603|      0|        return xasprintf("input too big");
 4604|      0|    }
 4605|       |
 4606|  2.29k|    ofpact_finish_ENCAP(pp->ofpacts, &encap);
 4607|       |    return NULL;
 4608|  2.29k|}
ofp-actions.c:parse_encap_header:
 4528|  2.48k|{
 4529|  2.48k|    if (strcmp(hdr, "ethernet") == 0) {
  ------------------
  |  Branch (4529:9): [True: 872, False: 1.61k]
  ------------------
 4530|    872|        *packet_type = htonl(PT_ETH);
 4531|  1.61k|    } else if (strcmp(hdr, "nsh") == 0) {
  ------------------
  |  Branch (4531:16): [True: 986, False: 631]
  ------------------
 4532|    986|        *packet_type = htonl(PT_NSH);
 4533|    986|    } else if (strcmp(hdr, "mpls") == 0) {
  ------------------
  |  Branch (4533:16): [True: 234, False: 397]
  ------------------
 4534|    234|        *packet_type = htonl(PT_MPLS);
 4535|    397|    } else if (strcmp(hdr, "mpls_mc") == 0) {
  ------------------
  |  Branch (4535:16): [True: 258, False: 139]
  ------------------
 4536|    258|        *packet_type = htonl(PT_MPLS_MC);
 4537|    258|    } else {
 4538|    139|        return false;
 4539|    139|    }
 4540|  2.35k|    return true;
 4541|  2.48k|}
ofp-actions.c:parse_ed_props:
 4545|  2.35k|{
 4546|  2.35k|    char *key, *value, *err;
 4547|  2.35k|    uint8_t prop_type;
 4548|       |
 4549|  3.45k|    while (ofputil_parse_key_value(arg, &key, &value)) {
  ------------------
  |  Branch (4549:12): [True: 1.16k, False: 2.29k]
  ------------------
 4550|  1.16k|        if (!parse_ed_prop_type(prop_class, key, &prop_type)) {
  ------------------
  |  Branch (4550:13): [True: 49, False: 1.11k]
  ------------------
 4551|     49|            return xasprintf("Invalid property: %s", key);
 4552|     49|        }
 4553|  1.11k|        if (value == NULL) {
  ------------------
  |  Branch (4553:13): [True: 0, False: 1.11k]
  ------------------
 4554|      0|            return xasprintf("Missing the value for property: %s", key);
 4555|      0|        }
 4556|  1.11k|        err = parse_ed_prop_value(prop_class, prop_type, value, out);
 4557|  1.11k|        if (err != NULL) {
  ------------------
  |  Branch (4557:13): [True: 6, False: 1.10k]
  ------------------
 4558|      6|            return err;
 4559|      6|        }
 4560|  1.10k|        (*n_props)++;
 4561|  1.10k|    }
 4562|  2.29k|    return NULL;
 4563|  2.35k|}
ofp-actions.c:parse_DECAP:
 4724|  2.29k|{
 4725|  2.29k|    struct ofpact_decap *decap;
 4726|  2.29k|    char *key, *value, *pos;
 4727|  2.29k|    char *error = NULL;
 4728|  2.29k|    uint16_t ns, type;
 4729|       |
 4730|  2.29k|    decap = ofpact_put_DECAP(pp->ofpacts);
 4731|       |    /* Default next packet_type is PT_USE_NEXT_PROTO. */
 4732|  2.29k|    decap->new_pkt_type = htonl(PT_USE_NEXT_PROTO);
 4733|       |
 4734|       |    /* Parse decap packet_type if given. */
 4735|  2.29k|    if (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4735:9): [True: 113, False: 2.18k]
  ------------------
 4736|    113|        if (strcmp(key, "packet_type") == 0) {
  ------------------
  |  Branch (4736:13): [True: 32, False: 81]
  ------------------
 4737|     32|            pos = value;
 4738|     32|            if (!ofputil_parse_key_value(&pos, &key, &value)
  ------------------
  |  Branch (4738:17): [True: 1, False: 31]
  ------------------
 4739|     31|                || strcmp(key, "ns") != 0) {
  ------------------
  |  Branch (4739:20): [True: 6, False: 25]
  ------------------
 4740|      7|                return xstrdup("Missing packet_type attribute ns");
 4741|      7|            }
 4742|     25|            error = str_to_u16(value, "ns", &ns);
 4743|     25|            if (error) {
  ------------------
  |  Branch (4743:17): [True: 1, False: 24]
  ------------------
 4744|      1|                return error;
 4745|      1|            }
 4746|     24|            if (ns >= OFPHTN_N_TYPES) {
  ------------------
  |  Branch (4746:17): [True: 3, False: 21]
  ------------------
 4747|      3|                return xasprintf("Unsupported ns value: %"PRIu16, ns);
 4748|      3|            }
 4749|     21|            if (!ofputil_parse_key_value(&pos, &key, &value)
  ------------------
  |  Branch (4749:17): [True: 1, False: 20]
  ------------------
 4750|     20|                || strcmp(key, "type") != 0) {
  ------------------
  |  Branch (4750:20): [True: 18, False: 2]
  ------------------
 4751|     19|                return xstrdup("Missing packet_type attribute type");
 4752|     19|            }
 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|     81|        } else {
 4759|     81|            return xasprintf("Invalid decap argument: %s", key);
 4760|     81|        }
 4761|    113|    }
 4762|  2.18k|    return NULL;
 4763|  2.29k|}
ofp-actions.c:parse_SET_TUNNEL:
 4160|    803|{
 4161|    803|    return parse_set_tunnel(arg, NXAST_RAW_SET_TUNNEL, pp);
 4162|    803|}
ofp-actions.c:parse_SET_QUEUE:
 4284|    292|{
 4285|    292|    return str_to_u32(arg, &ofpact_put_SET_QUEUE(pp->ofpacts)->queue_id);
 4286|    292|}
ofp-actions.c:parse_POP_QUEUE:
 4322|  1.45k|{
 4323|  1.45k|    ofpact_put_POP_QUEUE(pp->ofpacts);
 4324|       |    return NULL;
 4325|  1.45k|}
ofp-actions.c:parse_FIN_TIMEOUT:
 4400|  1.25k|{
 4401|  1.25k|    struct ofpact_fin_timeout *oft = ofpact_put_FIN_TIMEOUT(pp->ofpacts);
 4402|  1.25k|    char *key, *value;
 4403|       |
 4404|  1.97k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4404:12): [True: 850, False: 1.12k]
  ------------------
 4405|    850|        char *error;
 4406|       |
 4407|    850|        if (!strcmp(key, "idle_timeout")) {
  ------------------
  |  Branch (4407:13): [True: 307, False: 543]
  ------------------
 4408|    307|            error =  str_to_u16(value, key, &oft->fin_idle_timeout);
 4409|    543|        } else if (!strcmp(key, "hard_timeout")) {
  ------------------
  |  Branch (4409:20): [True: 420, False: 123]
  ------------------
 4410|    420|            error = str_to_u16(value, key, &oft->fin_hard_timeout);
 4411|    420|        } else {
 4412|    123|            error = xasprintf("invalid key '%s' in 'fin_timeout' argument",
 4413|    123|                              key);
 4414|    123|        }
 4415|       |
 4416|    850|        if (error) {
  ------------------
  |  Branch (4416:13): [True: 131, False: 719]
  ------------------
 4417|    131|            return error;
 4418|    131|        }
 4419|    850|    }
 4420|  1.12k|    return NULL;
 4421|  1.25k|}
ofp-actions.c:parse_RESUBMIT:
 4982|  1.95k|{
 4983|  1.95k|    struct ofpact_resubmit *resubmit;
 4984|  1.95k|    char *in_port_s, *table_s, *ct_s;
 4985|       |
 4986|  1.95k|    resubmit = ofpact_put_RESUBMIT(pp->ofpacts);
 4987|       |
 4988|  1.95k|    in_port_s = strsep(&arg, ",");
 4989|  1.95k|    if (in_port_s && in_port_s[0]) {
  ------------------
  |  Branch (4989:9): [True: 1.95k, False: 0]
  |  Branch (4989:22): [True: 1.37k, False: 582]
  ------------------
 4990|  1.37k|        if (!ofputil_port_from_string(in_port_s, pp->port_map,
  ------------------
  |  Branch (4990:13): [True: 2, False: 1.37k]
  ------------------
 4991|  1.37k|                                      &resubmit->in_port)) {
 4992|      2|            return xasprintf("%s: resubmit to unknown port", in_port_s);
 4993|      2|        }
 4994|  1.37k|    } else {
 4995|    582|        resubmit->in_port = OFPP_IN_PORT;
  ------------------
  |  |   39|    582|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    582|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 4996|    582|    }
 4997|       |
 4998|  1.95k|    table_s = strsep(&arg, ",");
 4999|  1.95k|    if (table_s && table_s[0]) {
  ------------------
  |  Branch (4999:9): [True: 1.47k, False: 478]
  |  Branch (4999:20): [True: 670, False: 808]
  ------------------
 5000|    670|        if (!ofputil_table_from_string(table_s, pp->table_map,
  ------------------
  |  Branch (5000:13): [True: 1, False: 669]
  ------------------
 5001|    670|                                       &resubmit->table_id)) {
 5002|      1|            return xasprintf("%s: resubmit to unknown table", table_s);
 5003|      1|        }
 5004|  1.28k|    } else {
 5005|  1.28k|        resubmit->table_id = 255;
 5006|  1.28k|    }
 5007|       |
 5008|  1.95k|    ct_s = strsep(&arg, ",");
 5009|  1.95k|    if (ct_s && ct_s[0]) {
  ------------------
  |  Branch (5009:9): [True: 770, False: 1.18k]
  |  Branch (5009:17): [True: 426, False: 344]
  ------------------
 5010|    426|        if (strcmp(ct_s, "ct")) {
  ------------------
  |  Branch (5010:13): [True: 24, False: 402]
  ------------------
 5011|     24|            return xasprintf("%s: unknown parameter", ct_s);
 5012|     24|        }
 5013|    402|        resubmit->with_ct_orig = true;
 5014|  1.52k|    } else {
 5015|  1.52k|        resubmit->with_ct_orig = false;
 5016|  1.52k|    }
 5017|       |
 5018|  1.93k|    if (resubmit->in_port == OFPP_IN_PORT && resubmit->table_id == 255) {
  ------------------
  |  |   39|  1.93k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|  3.86k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (5018:9): [True: 559, False: 1.37k]
  |  Branch (5018:46): [True: 20, False: 539]
  ------------------
 5019|     20|        return xstrdup("at least one \"in_port\" or \"table\" must be "
 5020|     20|                       "specified on resubmit");
 5021|     20|    }
 5022|  1.91k|    return NULL;
 5023|  1.93k|}
ofp-actions.c:parse_LEARN:
 5632|  33.7k|{
 5633|  33.7k|    return learn_parse(arg, pp->port_map, pp->table_map, pp->ofpacts);
 5634|  33.7k|}
ofp-actions.c:parse_CONJUNCTION:
 5710|  1.11k|{
 5711|  1.11k|    uint8_t n_clauses;
 5712|  1.11k|    uint8_t clause;
 5713|  1.11k|    uint32_t id;
 5714|  1.11k|    int n;
 5715|       |
 5716|  1.11k|    if (!ovs_scan(arg, "%"SCNi32" , %"SCNu8" / %"SCNu8" %n",
  ------------------
  |  Branch (5716:9): [True: 10, False: 1.10k]
  ------------------
 5717|  1.11k|                  &id, &clause, &n_clauses, &n) || n != strlen(arg)) {
  ------------------
  |  Branch (5717:52): [True: 15, False: 1.09k]
  ------------------
 5718|     25|        return xstrdup("\"conjunction\" syntax is \"conjunction(id,i/n)\"");
 5719|     25|    }
 5720|       |
 5721|  1.09k|    if (n_clauses < 2) {
  ------------------
  |  Branch (5721:9): [True: 1, False: 1.09k]
  ------------------
 5722|      1|        return xstrdup("conjunction must have at least 2 clauses");
 5723|  1.09k|    } else if (n_clauses > 64) {
  ------------------
  |  Branch (5723:16): [True: 4, False: 1.08k]
  ------------------
 5724|      4|        return xstrdup("conjunction must have at most 64 clauses");
 5725|  1.08k|    } else if (clause < 1) {
  ------------------
  |  Branch (5725:16): [True: 1, False: 1.08k]
  ------------------
 5726|      1|        return xstrdup("clause index must be positive");
 5727|  1.08k|    } else if (clause > n_clauses) {
  ------------------
  |  Branch (5727:16): [True: 3, False: 1.08k]
  ------------------
 5728|      3|        return xstrdup("clause index must be less than or equal to "
 5729|      3|                       "number of clauses");
 5730|      3|    }
 5731|       |
 5732|  1.08k|    add_conjunction(pp->ofpacts, id, clause - 1, n_clauses);
 5733|       |    return NULL;
 5734|  1.09k|}
ofp-actions.c:parse_MULTIPATH:
 5859|  2.95k|{
 5860|  2.95k|    return multipath_parse(ofpact_put_MULTIPATH(pp->ofpacts), arg);
 5861|  2.95k|}
ofp-actions.c:parse_NOTE:
 5929|  3.61k|{
 5930|  3.61k|    size_t start_ofs = pp->ofpacts->size;
 5931|  3.61k|    ofpact_put_NOTE(pp->ofpacts);
 5932|  3.61k|    arg = ofpbuf_put_hex(pp->ofpacts, arg, NULL);
 5933|  3.61k|    if (arg[0]) {
  ------------------
  |  Branch (5933:9): [True: 13, False: 3.59k]
  ------------------
 5934|     13|        return xstrdup("bad hex digit in `note' argument");
 5935|     13|    }
 5936|  3.59k|    struct ofpact_note *note = ofpbuf_at_assert(pp->ofpacts, start_ofs,
 5937|  3.59k|                                                sizeof *note);
 5938|  3.59k|    note->length = pp->ofpacts->size - (start_ofs + sizeof *note);
 5939|       |
 5940|  3.59k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (5940:9): [True: 2, False: 3.59k]
  ------------------
 5941|      2|        return xasprintf("input too big");
 5942|      2|    }
 5943|       |
 5944|  3.59k|    ofpact_finish_NOTE(pp->ofpacts, &note);
 5945|       |    return NULL;
 5946|  3.59k|}
ofp-actions.c:parse_EXIT:
 5981|  1.51k|{
 5982|  1.51k|    ofpact_put_EXIT(pp->ofpacts);
 5983|       |    return NULL;
 5984|  1.51k|}
ofp-actions.c:parse_SAMPLE:
 6454|  1.93k|{
 6455|  1.93k|    struct ofpact_sample *os = ofpact_put_SAMPLE(pp->ofpacts);
 6456|  1.93k|    os->sampling_port = OFPP_NONE;
  ------------------
  |  |   47|  1.93k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  1.93k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 6457|  1.93k|    os->direction = NX_ACTION_SAMPLE_DEFAULT;
 6458|       |
 6459|  1.93k|    char *key, *value;
 6460|  5.78k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (6460:12): [True: 4.01k, False: 1.77k]
  ------------------
 6461|  4.01k|        char *error = NULL;
 6462|       |
 6463|  4.01k|        if (!strcmp(key, "probability")) {
  ------------------
  |  Branch (6463:13): [True: 1.75k, False: 2.25k]
  ------------------
 6464|  1.75k|            error = str_to_u16(value, "probability", &os->probability);
 6465|  1.75k|            if (!error && os->probability == 0) {
  ------------------
  |  Branch (6465:17): [True: 1.75k, False: 1]
  |  Branch (6465:27): [True: 1, False: 1.75k]
  ------------------
 6466|      1|                error = xasprintf("invalid probability value \"%s\"", value);
 6467|      1|            }
 6468|  2.25k|        } else if (!strcmp(key, "collector_set_id")) {
  ------------------
  |  Branch (6468:20): [True: 66, False: 2.19k]
  ------------------
 6469|     66|            error = str_to_u32(value, &os->collector_set_id);
 6470|  2.19k|        } else if (!strcmp(key, "obs_domain_id")) {
  ------------------
  |  Branch (6470:20): [True: 713, False: 1.47k]
  ------------------
 6471|    713|            error = str_to_u32(value, &os->obs_domain_imm);
 6472|       |
 6473|    713|            if (error) {
  ------------------
  |  Branch (6473:17): [True: 315, False: 398]
  ------------------
 6474|    315|                free(error);
 6475|    315|                error = mf_parse_subfield(&os->obs_domain_src, value);
 6476|    315|                if (error) {
  ------------------
  |  Branch (6476:21): [True: 1, False: 314]
  ------------------
 6477|      1|                    return error;
 6478|      1|                }
 6479|    314|                if (os->obs_domain_src.n_bits > 32) {
  ------------------
  |  Branch (6479:21): [True: 1, False: 313]
  ------------------
 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|    314|            }
 6485|  1.47k|        } else if (!strcmp(key, "obs_point_id")) {
  ------------------
  |  Branch (6485:20): [True: 355, False: 1.12k]
  ------------------
 6486|    355|            error = str_to_u32(value, &os->obs_point_imm);
 6487|       |
 6488|    355|            if (error) {
  ------------------
  |  Branch (6488:17): [True: 273, False: 82]
  ------------------
 6489|    273|                free(error);
 6490|    273|                error = mf_parse_subfield(&os->obs_point_src, value);
 6491|    273|                if (error) {
  ------------------
  |  Branch (6491:21): [True: 4, False: 269]
  ------------------
 6492|      4|                    return error;
 6493|      4|                }
 6494|    269|                if (os->obs_point_src.n_bits > 32) {
  ------------------
  |  Branch (6494:21): [True: 1, False: 268]
  ------------------
 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|    269|            }
 6500|  1.12k|        } else if (!strcmp(key, "sampling_port")) {
  ------------------
  |  Branch (6500:20): [True: 229, False: 893]
  ------------------
 6501|    229|            if (!ofputil_port_from_string(value, pp->port_map,
  ------------------
  |  Branch (6501:17): [True: 1, False: 228]
  ------------------
 6502|    229|                                          &os->sampling_port)) {
 6503|      1|                error = xasprintf("%s: unknown port", value);
 6504|      1|            }
 6505|    893|        } else if (!strcmp(key, "ingress")) {
  ------------------
  |  Branch (6505:20): [True: 220, False: 673]
  ------------------
 6506|    220|            os->direction = NX_ACTION_SAMPLE_INGRESS;
 6507|    673|        } else if (!strcmp(key, "egress")) {
  ------------------
  |  Branch (6507:20): [True: 533, False: 140]
  ------------------
 6508|    533|            os->direction = NX_ACTION_SAMPLE_EGRESS;
 6509|    533|        } else {
 6510|    140|            error = xasprintf("invalid key \"%s\" in \"sample\" argument",
 6511|    140|                              key);
 6512|    140|        }
 6513|  4.00k|        if (error) {
  ------------------
  |  Branch (6513:13): [True: 150, False: 3.85k]
  ------------------
 6514|    150|            return error;
 6515|    150|        }
 6516|  4.00k|    }
 6517|  1.77k|    if (os->probability == 0) {
  ------------------
  |  Branch (6517:9): [True: 27, False: 1.74k]
  ------------------
 6518|     27|        return xstrdup("non-zero \"probability\" must be specified on sample");
 6519|     27|    }
 6520|       |
 6521|  1.74k|    return NULL;
 6522|  1.77k|}
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|  11.1k|{
 6925|  11.1k|    const size_t ct_offset = ofpacts_pull(pp->ofpacts);
 6926|  11.1k|    struct ofpact_conntrack *oc;
 6927|  11.1k|    char *error = NULL;
 6928|  11.1k|    char *key, *value;
 6929|       |
 6930|  11.1k|    oc = ofpact_put_CT(pp->ofpacts);
 6931|  11.1k|    oc->flags = 0;
 6932|  11.1k|    oc->recirc_table = NX_CT_RECIRC_NONE;
  ------------------
  |  |  692|  11.1k|#define NX_CT_RECIRC_NONE OFPTT_ALL
  ------------------
 6933|  81.0k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (6933:12): [True: 70.8k, False: 10.1k]
  ------------------
 6934|  70.8k|        if (!strcmp(key, "commit")) {
  ------------------
  |  Branch (6934:13): [True: 430, False: 70.4k]
  ------------------
 6935|    430|            oc->flags |= NX_CT_F_COMMIT;
 6936|  70.4k|        } else if (!strcmp(key, "force")) {
  ------------------
  |  Branch (6936:20): [True: 234, False: 70.2k]
  ------------------
 6937|    234|            oc->flags |= NX_CT_F_FORCE;
 6938|  70.2k|        } else if (!strcmp(key, "table")) {
  ------------------
  |  Branch (6938:20): [True: 411, False: 69.8k]
  ------------------
 6939|    411|            if (!ofputil_table_from_string(value, pp->table_map,
  ------------------
  |  Branch (6939:17): [True: 1, False: 410]
  ------------------
 6940|    411|                                           &oc->recirc_table)) {
 6941|      1|                error = xasprintf("unknown table %s", value);
 6942|    410|            } else if (oc->recirc_table == NX_CT_RECIRC_NONE) {
  ------------------
  |  |  692|    410|#define NX_CT_RECIRC_NONE OFPTT_ALL
  ------------------
  |  Branch (6942:24): [True: 1, False: 409]
  ------------------
 6943|      1|                error = xasprintf("invalid table %#"PRIx8, oc->recirc_table);
 6944|      1|            }
 6945|  69.8k|        } else if (!strcmp(key, "zone")) {
  ------------------
  |  Branch (6945:20): [True: 710, False: 69.1k]
  ------------------
 6946|    710|            error = str_to_u16(value, "zone", &oc->zone_imm);
 6947|       |
 6948|    710|            if (error) {
  ------------------
  |  Branch (6948:17): [True: 357, False: 353]
  ------------------
 6949|    357|                free(error);
 6950|    357|                error = mf_parse_subfield(&oc->zone_src, value);
 6951|    357|                if (error) {
  ------------------
  |  Branch (6951:21): [True: 10, False: 347]
  ------------------
 6952|     10|                    return error;
 6953|     10|                }
 6954|    357|            }
 6955|  69.1k|        } else if (!strcmp(key, "alg")) {
  ------------------
  |  Branch (6955:20): [True: 352, False: 68.7k]
  ------------------
 6956|    352|            error = str_to_connhelper(value, &oc->alg);
 6957|  68.7k|        } else if (!strcmp(key, "nat")) {
  ------------------
  |  Branch (6957:20): [True: 66.7k, False: 2.04k]
  ------------------
 6958|  66.7k|            const size_t nat_offset = ofpacts_pull(pp->ofpacts);
 6959|       |
 6960|  66.7k|            error = parse_NAT(value, pp);
 6961|       |            /* Update CT action pointer and length. */
 6962|  66.7k|            pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, nat_offset);
 6963|  66.7k|            oc = pp->ofpacts->header;
 6964|  66.7k|        } else if (!strcmp(key, "exec")) {
  ------------------
  |  Branch (6964:20): [True: 1.77k, False: 275]
  ------------------
 6965|       |            /* Hide existing actions from ofpacts_parse_copy(), so the
 6966|       |             * nesting can be handled transparently. */
 6967|  1.77k|            enum ofputil_protocol usable_protocols2;
 6968|  1.77k|            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.77k|            struct ofpact_parse_params pp2 = *pp;
 6974|  1.77k|            pp2.usable_protocols = &usable_protocols2;
 6975|  1.77k|            error = ofpacts_parse_copy(value, &pp2, false, OFPACT_CT);
 6976|  1.77k|            *pp->usable_protocols &= usable_protocols2;
 6977|  1.77k|            pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, exec_offset);
 6978|  1.77k|            oc = pp->ofpacts->header;
 6979|  1.77k|        } else {
 6980|    275|            error = xasprintf("invalid argument to \"ct\" action: `%s'", key);
 6981|    275|        }
 6982|  70.8k|        if (error) {
  ------------------
  |  Branch (6982:13): [True: 1.04k, False: 69.8k]
  ------------------
 6983|  1.04k|            break;
 6984|  1.04k|        }
 6985|  70.8k|    }
 6986|  11.1k|    if (!error && oc->flags & NX_CT_F_FORCE && !(oc->flags & NX_CT_F_COMMIT)) {
  ------------------
  |  Branch (6986:9): [True: 10.1k, False: 1.04k]
  |  Branch (6986:19): [True: 202, False: 9.90k]
  |  Branch (6986:48): [True: 7, False: 195]
  ------------------
 6987|      7|        error = xasprintf("\"force\" flag requires \"commit\" flag.");
 6988|      7|    }
 6989|       |
 6990|  11.1k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (6990:9): [True: 3, False: 11.1k]
  ------------------
 6991|      3|        free(error);
 6992|      3|        return xasprintf("input too big");
 6993|      3|    }
 6994|       |
 6995|  11.1k|    ofpact_finish_CT(pp->ofpacts, &oc);
 6996|  11.1k|    ofpbuf_push_uninit(pp->ofpacts, ct_offset);
 6997|  11.1k|    return error;
 6998|  11.1k|}
ofp-actions.c:parse_CT_CLEAR:
 7107|  1.13k|{
 7108|  1.13k|    ofpact_put_CT_CLEAR(pp->ofpacts);
 7109|       |    return NULL;
 7110|  1.13k|}
ofp-actions.c:parse_NAT:
 7430|  78.1k|{
 7431|  78.1k|    struct ofpact_nat *on = ofpact_put_NAT(pp->ofpacts);
 7432|  78.1k|    char *key, *value;
 7433|       |
 7434|  78.1k|    on->flags = 0;
 7435|  78.1k|    on->range_af = AF_UNSPEC;
 7436|       |
 7437|   138k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (7437:12): [True: 60.8k, False: 78.0k]
  ------------------
 7438|  60.8k|        char *error = NULL;
 7439|       |
 7440|  60.8k|        if (!strcmp(key, "src")) {
  ------------------
  |  Branch (7440:13): [True: 1.70k, False: 59.1k]
  ------------------
 7441|  1.70k|            on->flags |= NX_NAT_F_SRC;
 7442|  1.70k|            error = str_to_nat_range(value, on);
 7443|  59.1k|        } else if (!strcmp(key, "dst")) {
  ------------------
  |  Branch (7443:20): [True: 58.4k, False: 705]
  ------------------
 7444|  58.4k|            on->flags |= NX_NAT_F_DST;
 7445|  58.4k|            error = str_to_nat_range(value, on);
 7446|  58.4k|        } else if (!strcmp(key, "persistent")) {
  ------------------
  |  Branch (7446:20): [True: 195, False: 510]
  ------------------
 7447|    195|            on->flags |= NX_NAT_F_PERSISTENT;
 7448|    510|        } else if (!strcmp(key, "hash")) {
  ------------------
  |  Branch (7448:20): [True: 261, False: 249]
  ------------------
 7449|    261|            on->flags |= NX_NAT_F_PROTO_HASH;
 7450|    261|        } else if (!strcmp(key, "random")) {
  ------------------
  |  Branch (7450:20): [True: 195, False: 54]
  ------------------
 7451|    195|            on->flags |= NX_NAT_F_PROTO_RANDOM;
 7452|    195|        } else {
 7453|     54|            error = xasprintf("invalid key \"%s\" in \"nat\" argument",
 7454|     54|                              key);
 7455|     54|        }
 7456|  60.8k|        if (error) {
  ------------------
  |  Branch (7456:13): [True: 144, False: 60.7k]
  ------------------
 7457|    144|            return error;
 7458|    144|        }
 7459|  60.8k|    }
 7460|  78.0k|    if (on->flags & NX_NAT_F_SRC && on->flags & NX_NAT_F_DST) {
  ------------------
  |  Branch (7460:9): [True: 438, False: 77.5k]
  |  Branch (7460:37): [True: 3, False: 435]
  ------------------
 7461|      3|        return xasprintf("May only specify one of \"src\" or \"dst\".");
 7462|      3|    }
 7463|  78.0k|    if (!(on->flags & NX_NAT_F_SRC || on->flags & NX_NAT_F_DST)) {
  ------------------
  |  Branch (7463:11): [True: 435, False: 77.5k]
  |  Branch (7463:39): [True: 57.9k, False: 19.5k]
  ------------------
 7464|  19.5k|        if (on->flags) {
  ------------------
  |  Branch (7464:13): [True: 16, False: 19.5k]
  ------------------
 7465|     16|            return xasprintf("Flags allowed only with \"src\" or \"dst\".");
 7466|     16|        }
 7467|  19.5k|        if (on->range_af != AF_UNSPEC) {
  ------------------
  |  Branch (7467:13): [True: 0, False: 19.5k]
  ------------------
 7468|      0|            return xasprintf("Range allowed only with \"src\" or \"dst\".");
 7469|      0|        }
 7470|  19.5k|    }
 7471|  77.9k|    if (on->flags & NX_NAT_F_PROTO_HASH && on->flags & NX_NAT_F_PROTO_RANDOM) {
  ------------------
  |  Branch (7471:9): [True: 71, False: 77.9k]
  |  Branch (7471:44): [True: 1, False: 70]
  ------------------
 7472|      1|        return xasprintf("Both \"hash\" and \"random\" are not allowed.");
 7473|      1|    }
 7474|       |
 7475|  77.9k|    return NULL;
 7476|  77.9k|}
ofp-actions.c:str_to_nat_range:
 7366|  60.1k|{
 7367|  60.1k|    char ipv6_s[IPV6_SCAN_LEN + 1];
 7368|  60.1k|    int n = 0;
 7369|       |
 7370|  60.1k|    on->range_af = AF_UNSPEC;
 7371|  60.1k|    if (ovs_scan_len(s, &n, IP_SCAN_FMT,
  ------------------
  |  |  645|  60.1k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (7371:9): [True: 805, False: 59.3k]
  ------------------
 7372|  60.1k|                     IP_SCAN_ARGS(&on->range.addr.ipv4.min))) {
  ------------------
  |  |  647|  60.1k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  60.1k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  60.1k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  60.1k|        &((uint8_t *) ip)[3]
  ------------------
 7373|    805|        on->range_af = AF_INET;
 7374|       |
 7375|    805|        if (s[n] == '-') {
  ------------------
  |  Branch (7375:13): [True: 274, False: 531]
  ------------------
 7376|    274|            n++;
 7377|    274|            if (!ovs_scan_len(s, &n, IP_SCAN_FMT,
  ------------------
  |  |  645|    274|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (7377:17): [True: 1, False: 273]
  ------------------
 7378|    274|                              IP_SCAN_ARGS(&on->range.addr.ipv4.max))
  ------------------
  |  |  647|    274|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|    274|        &((uint8_t *) ip)[1],                               \
  |  |  649|    274|        &((uint8_t *) ip)[2],                               \
  |  |  650|    274|        &((uint8_t *) ip)[3]
  ------------------
 7379|    273|                || (ntohl(on->range.addr.ipv4.max)
  ------------------
  |  Branch (7379:20): [True: 7, False: 266]
  ------------------
 7380|    273|                    < ntohl(on->range.addr.ipv4.min))) {
 7381|      8|                goto error;
 7382|      8|            }
 7383|    274|        }
 7384|  59.3k|    } else if ((ovs_scan_len(s, &n, IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  59.3k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (7384:17): [True: 56.2k, False: 3.13k]
  ------------------
 7385|  3.13k|                || ovs_scan_len(s, &n, "["IPV6_SCAN_FMT"]", ipv6_s))
  ------------------
  |  Branch (7385:20): [True: 1.87k, False: 1.26k]
  ------------------
 7386|  58.0k|               && inet_pton(AF_INET6, ipv6_s, &on->range.addr.ipv6.min) == 1) {
  ------------------
  |  Branch (7386:19): [True: 32.4k, False: 25.6k]
  ------------------
 7387|  32.4k|        on->range_af = AF_INET6;
 7388|       |
 7389|  32.4k|        if (s[n] == '-') {
  ------------------
  |  Branch (7389:13): [True: 1.28k, False: 31.1k]
  ------------------
 7390|  1.28k|            n++;
 7391|  1.28k|            if (!(ovs_scan_len(s, &n, IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  1.28k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (7391:19): [True: 895, False: 393]
  ------------------
 7392|    393|                  || ovs_scan_len(s, &n, "["IPV6_SCAN_FMT"]", ipv6_s))
  ------------------
  |  Branch (7392:22): [True: 381, False: 12]
  ------------------
 7393|  1.27k|                || inet_pton(AF_INET6, ipv6_s, &on->range.addr.ipv6.max) != 1
  ------------------
  |  Branch (7393:20): [True: 8, False: 1.26k]
  ------------------
 7394|  1.26k|                || memcmp(&on->range.addr.ipv6.max, &on->range.addr.ipv6.min,
  ------------------
  |  Branch (7394:20): [True: 6, False: 1.26k]
  ------------------
 7395|  1.26k|                          sizeof on->range.addr.ipv6.max) < 0) {
 7396|     26|                goto error;
 7397|     26|            }
 7398|  1.28k|        }
 7399|  32.4k|    }
 7400|  60.1k|    if (on->range_af != AF_UNSPEC && s[n] == ':') {
  ------------------
  |  Branch (7400:9): [True: 33.2k, False: 26.8k]
  |  Branch (7400:38): [True: 1.32k, False: 31.9k]
  ------------------
 7401|  1.32k|        n++;
 7402|  1.32k|        if (!ovs_scan_len(s, &n, "%"SCNu16, &on->range.proto.min)) {
  ------------------
  |  Branch (7402:13): [True: 3, False: 1.32k]
  ------------------
 7403|      3|            goto error;
 7404|      3|        }
 7405|  1.32k|        if (s[n] == '-') {
  ------------------
  |  Branch (7405:13): [True: 693, False: 632]
  ------------------
 7406|    693|            n++;
 7407|    693|            if (!ovs_scan_len(s, &n, "%"SCNu16, &on->range.proto.max)
  ------------------
  |  Branch (7407:17): [True: 3, False: 690]
  ------------------
 7408|    690|                || on->range.proto.max < on->range.proto.min) {
  ------------------
  |  Branch (7408:20): [True: 1, False: 689]
  ------------------
 7409|      4|                goto error;
 7410|      4|            }
 7411|    693|        }
 7412|  1.32k|    }
 7413|  60.1k|    if (strlen(s) != n) {
  ------------------
  |  Branch (7413:9): [True: 49, False: 60.0k]
  ------------------
 7414|     49|        return xasprintf("garbage (%s) after nat range \"%s\" (pos: %d)",
 7415|     49|                         &s[n], s, n);
 7416|     49|    }
 7417|  60.0k|    return NULL;
 7418|     41|error:
 7419|     41|    return xasprintf("invalid nat range \"%s\"", s);
 7420|  60.1k|}
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.4k|{
 6091|  10.4k|    const size_t clone_offset = ofpacts_pull(pp->ofpacts);
 6092|  10.4k|    struct ofpact_nest *clone = ofpact_put_CLONE(pp->ofpacts);
 6093|  10.4k|    char *error;
 6094|       |
 6095|  10.4k|    ofpbuf_pull(pp->ofpacts, sizeof *clone);
 6096|  10.4k|    error = ofpacts_parse_copy(arg, pp, false, OFPACT_CLONE);
 6097|       |    /* header points to the action list */
 6098|  10.4k|    pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, sizeof *clone);
 6099|  10.4k|    clone = pp->ofpacts->header;
 6100|       |
 6101|  10.4k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (6101:9): [True: 1, False: 10.4k]
  ------------------
 6102|      1|        free(error);
 6103|      1|        return xasprintf("input too big");
 6104|      1|    }
 6105|       |
 6106|  10.4k|    ofpact_finish_CLONE(pp->ofpacts, &clone);
 6107|  10.4k|    ofpbuf_push_uninit(pp->ofpacts, clone_offset);
 6108|  10.4k|    return error;
 6109|  10.4k|}
ofp-actions.c:parse_CHECK_PKT_LARGER:
 7866|    495|{
 7867|    495|    char *value;
 7868|    495|    char *delim;
 7869|    495|    char *key;
 7870|    495|    char *error = set_field_split_str(arg, &key, &value, &delim);
 7871|    495|    if (error) {
  ------------------
  |  Branch (7871:9): [True: 4, False: 491]
  ------------------
 7872|      4|        return error;
 7873|      4|    }
 7874|       |
 7875|    491|    delim[0] = '\0';
 7876|    491|    if (value[strlen(value) - 1] == ')') {
  ------------------
  |  Branch (7876:9): [True: 275, False: 216]
  ------------------
 7877|    275|        value[strlen(value) - 1] = '\0';
 7878|    275|    }
 7879|    491|    struct mf_subfield dst;
 7880|    491|    error = mf_parse_subfield(&dst, key);
 7881|    491|    if (error) {
  ------------------
  |  Branch (7881:9): [True: 28, False: 463]
  ------------------
 7882|     28|        return error;
 7883|     28|    }
 7884|       |
 7885|    463|    if (dst.n_bits != 1) {
  ------------------
  |  Branch (7885:9): [True: 1, False: 462]
  ------------------
 7886|      1|        return xstrdup("Only 1-bit destination field is allowed");
 7887|      1|    }
 7888|       |
 7889|    462|    struct ofpact_check_pkt_larger *check_pkt_larger =
 7890|    462|        ofpact_put_CHECK_PKT_LARGER(pp->ofpacts);
 7891|    462|    error = str_to_u16(value, NULL, &check_pkt_larger->pkt_len);
 7892|    462|    if (error) {
  ------------------
  |  Branch (7892:9): [True: 1, False: 461]
  ------------------
 7893|      1|        return error;
 7894|      1|    }
 7895|    461|    check_pkt_larger->dst = dst;
 7896|       |    return NULL;
 7897|    462|}
ofp-actions.c:parse_DEBUG_RECIRC:
 6596|  1.18k|{
 6597|  1.18k|    ofpact_put_DEBUG_RECIRC(pp->ofpacts);
 6598|       |    return NULL;
 6599|  1.18k|}
ofp-actions.c:parse_DEBUG_SLOW:
 6636|  2.55k|{
 6637|  2.55k|    ofpact_put_DEBUG_SLOW(pp->ofpacts);
 6638|       |    return NULL;
 6639|  2.55k|}
ofp-actions.c:parse_METER:
 7585|    659|{
 7586|    659|    *pp->usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    659|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    659|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    659|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7587|    659|    return str_to_u32(arg, &ofpact_put_METER(pp->ofpacts)->meter_id);
 7588|    659|}
ofp-actions.c:parse_CLEAR_ACTIONS:
 7620|    201|{
 7621|    201|    ofpact_put_CLEAR_ACTIONS(pp->ofpacts);
 7622|       |    return NULL;
 7623|    201|}
ofp-actions.c:parse_WRITE_ACTIONS:
 7658|    823|{
 7659|    823|    size_t ofs = ofpacts_pull(pp->ofpacts);
 7660|    823|    struct ofpact_nest *on;
 7661|    823|    char *error;
 7662|       |
 7663|       |    /* Add a Write-Actions instruction and then pull it off. */
 7664|    823|    ofpact_put(pp->ofpacts, OFPACT_WRITE_ACTIONS, sizeof *on);
 7665|    823|    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|    823|    error = ofpacts_parse(arg, pp, false, OFPACT_WRITE_ACTIONS);
 7675|       |
 7676|       |    /* Put the Write-Actions back on and update its length. */
 7677|    823|    on = ofpbuf_push_uninit(pp->ofpacts, sizeof *on);
 7678|    823|    on->ofpact.len = pp->ofpacts->size;
 7679|       |
 7680|       |    /* Put any previous actions or instructions back on. */
 7681|    823|    ofpbuf_push_uninit(pp->ofpacts, ofs);
 7682|       |
 7683|    823|    return error;
 7684|    823|}
ofp-actions.c:parse_WRITE_METADATA:
 7758|    622|{
 7759|    622|    struct ofpact_metadata *om;
 7760|    622|    char *mask = strchr(arg, '/');
 7761|       |
 7762|    622|    *pp->usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
  ------------------
  |  |   87|    622|#define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
  |  |  ------------------
  |  |  |  |   59|    622|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |   88|    622|                               OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    622|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    622|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    622|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    622|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 7763|       |
 7764|    622|    om = ofpact_put_WRITE_METADATA(pp->ofpacts);
 7765|    622|    if (mask) {
  ------------------
  |  Branch (7765:9): [True: 288, False: 334]
  ------------------
 7766|    288|        char *error;
 7767|       |
 7768|    288|        *mask = '\0';
 7769|    288|        error = str_to_be64(mask + 1, &om->mask);
 7770|    288|        if (error) {
  ------------------
  |  Branch (7770:13): [True: 1, False: 287]
  ------------------
 7771|      1|            return error;
 7772|      1|        }
 7773|    334|    } else {
 7774|    334|        om->mask = OVS_BE64_MAX;
  ------------------
  |  |   44|    334|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 7775|    334|    }
 7776|       |
 7777|    621|    return str_to_be64(arg, &om->metadata);
 7778|    622|}
ofp-actions.c:parse_GOTO_TABLE:
 7939|    259|{
 7940|    259|    struct ofpact_goto_table *ogt = ofpact_put_GOTO_TABLE(pp->ofpacts);
 7941|    259|    if (!ofputil_table_from_string(arg, pp->table_map, &ogt->table_id)) {
  ------------------
  |  Branch (7941:9): [True: 3, False: 256]
  ------------------
 7942|      3|        return xasprintf("unknown table \"%s\"", arg);
 7943|      3|    }
 7944|    256|    return NULL;
 7945|    259|}
ofp-actions.c:parse_set_vlan_vid:
 1613|  2.78k|{
 1614|  2.78k|    struct ofpact_vlan_vid *vlan_vid;
 1615|  2.78k|    uint16_t vid;
 1616|  2.78k|    char *error;
 1617|       |
 1618|  2.78k|    error = str_to_u16(arg, "VLAN VID", &vid);
 1619|  2.78k|    if (error) {
  ------------------
  |  Branch (1619:9): [True: 2, False: 2.78k]
  ------------------
 1620|      2|        return error;
 1621|      2|    }
 1622|       |
 1623|  2.78k|    if (vid & ~VLAN_VID_MASK) {
  ------------------
  |  |  494|  2.78k|#define VLAN_VID_MASK 0x0fff
  ------------------
  |  Branch (1623:9): [True: 8, False: 2.77k]
  ------------------
 1624|      8|        return xasprintf("%s: not a valid VLAN VID", arg);
 1625|      8|    }
 1626|  2.77k|    vlan_vid = ofpact_put_SET_VLAN_VID(pp->ofpacts);
 1627|  2.77k|    vlan_vid->vlan_vid = vid;
 1628|  2.77k|    vlan_vid->push_vlan_if_needed = push_vlan_if_needed;
 1629|       |    return NULL;
 1630|  2.78k|}
ofp-actions.c:parse_set_vlan_pcp:
 1721|  2.02k|{
 1722|  2.02k|    struct ofpact_vlan_pcp *vlan_pcp;
 1723|  2.02k|    uint8_t pcp;
 1724|  2.02k|    char *error;
 1725|       |
 1726|  2.02k|    error = str_to_u8(arg, "VLAN PCP", &pcp);
 1727|  2.02k|    if (error) {
  ------------------
  |  Branch (1727:9): [True: 3, False: 2.01k]
  ------------------
 1728|      3|        return error;
 1729|      3|    }
 1730|       |
 1731|  2.01k|    if (pcp & ~7) {
  ------------------
  |  Branch (1731:9): [True: 6, False: 2.01k]
  ------------------
 1732|      6|        return xasprintf("%s: not a valid VLAN PCP", arg);
 1733|      6|    }
 1734|  2.01k|    vlan_pcp = ofpact_put_SET_VLAN_PCP(pp->ofpacts);
 1735|  2.01k|    vlan_pcp->vlan_pcp = pcp;
 1736|  2.01k|    vlan_pcp->push_vlan_if_needed = push_vlan_if_needed;
 1737|       |    return NULL;
 1738|  2.01k|}
ofp-actions.c:parse_SET_IP_TTL:
 2271|  1.89k|{
 2272|  1.89k|    uint8_t ttl;
 2273|  1.89k|    char *error;
 2274|       |
 2275|  1.89k|    error = str_to_u8(arg, "TTL", &ttl);
 2276|  1.89k|    if (error) {
  ------------------
  |  Branch (2276:9): [True: 32, False: 1.86k]
  ------------------
 2277|     32|        return error;
 2278|     32|    }
 2279|       |
 2280|  1.86k|    ofpact_put_SET_IP_TTL(pp->ofpacts)->ttl = ttl;
 2281|       |    return NULL;
 2282|  1.89k|}
ofp-actions.c:parse_pop_vlan:
 1808|  2.85k|{
 1809|  2.85k|    ofpact_put_STRIP_VLAN(pp->ofpacts)->ofpact.raw = OFPAT_RAW11_POP_VLAN;
 1810|       |    return NULL;
 1811|  2.85k|}
ofp-actions.c:parse_set_tunnel:
 4150|  1.38k|{
 4151|  1.38k|    struct ofpact_tunnel *tunnel;
 4152|       |
 4153|  1.38k|    tunnel = ofpact_put_SET_TUNNEL(pp->ofpacts);
 4154|  1.38k|    tunnel->ofpact.raw = raw;
 4155|  1.38k|    return str_to_u64(arg, &tunnel->tun_id);
 4156|  1.38k|}
ofp-actions.c:parse_reg_load:
 3280|    769|{
 3281|    769|    struct mf_subfield dst;
 3282|    769|    char *key, *value_str;
 3283|    769|    union mf_value value;
 3284|    769|    char *error;
 3285|       |
 3286|    769|    error = set_field_split_str(arg, &key, &value_str, NULL);
 3287|    769|    if (error) {
  ------------------
  |  Branch (3287:9): [True: 2, False: 767]
  ------------------
 3288|      2|        return error;
 3289|      2|    }
 3290|       |
 3291|    767|    error = mf_parse_subfield(&dst, key);
 3292|    767|    if (error) {
  ------------------
  |  Branch (3292:9): [True: 7, False: 760]
  ------------------
 3293|      7|        return error;
 3294|      7|    }
 3295|       |
 3296|    760|    if (parse_int_string(value_str, (uint8_t *)&value, dst.field->n_bytes,
  ------------------
  |  Branch (3296:9): [True: 1, False: 759]
  ------------------
 3297|    760|                         &key)) {
 3298|      1|        return xasprintf("%s: cannot parse integer value", arg);
 3299|      1|    }
 3300|       |
 3301|    759|    if (!bitwise_is_all_zeros(&value, dst.field->n_bytes, dst.n_bits,
  ------------------
  |  Branch (3301:9): [True: 1, False: 758]
  ------------------
 3302|    759|                              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|    758|    struct ofpact_set_field *sf = ofpact_put_reg_load(pp->ofpacts, dst.field,
 3314|    758|                                                      NULL, NULL);
 3315|       |
 3316|    758|    bitwise_copy(&value, dst.field->n_bytes, 0, sf->value,
 3317|    758|                 dst.field->n_bytes, dst.ofs, dst.n_bits);
 3318|    758|    bitwise_one(ofpact_set_field_mask(sf), dst.field->n_bytes, dst.ofs,
  ------------------
  |  |  563|    758|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|    758|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|    758|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|    758|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3319|    758|                dst.n_bits);
 3320|       |    return NULL;
 3321|    759|}
ofp-actions.c:parse_bundle_load:
 1538|    344|{
 1539|    344|    return bundle_parse_load(arg, pp->port_map, pp->ofpacts);
 1540|    344|}

ofp-actions.c:put_OFPAT10_OUTPUT:
 4266|  66.1k|put_OFPAT10_OUTPUT(struct ofpbuf *openflow){
 4267|  66.1k|    return ofpact_put_raw(openflow, 1, OFPAT_RAW10_OUTPUT, 0);
 4268|  66.1k|}
ofp-actions.c:put_OFPAT11_OUTPUT:
 4271|  32.0k|put_OFPAT11_OUTPUT(struct ofpbuf *openflow){
 4272|  32.0k|    return ofpact_put_raw(openflow, 2, OFPAT_RAW11_OUTPUT, 0);
 4273|  32.0k|}
ofp-actions.c:put_OFPAT_GROUP:
 4391|    471|put_OFPAT_GROUP(struct ofpbuf *openflow, enum ofp_version version, uint32_t arg){
 4392|    471|    ofpact_put_raw(openflow, version, OFPAT_RAW_GROUP, arg);
 4393|    471|}
ofp-actions.c:put_NXAST_CONTROLLER2:
 4536|  7.15k|put_NXAST_CONTROLLER2(struct ofpbuf *openflow){
 4537|  7.15k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONTROLLER2, 0);
 4538|  7.15k|}
ofp-actions.c:put_NXAST_CONTROLLER:
 4531|    537|put_NXAST_CONTROLLER(struct ofpbuf *openflow){
 4532|    537|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONTROLLER, 0);
 4533|    537|}
ofp-actions.c:put_OFPAT10_ENQUEUE:
 4351|    880|put_OFPAT10_ENQUEUE(struct ofpbuf *openflow){
 4352|    880|    return ofpact_put_raw(openflow, 1, OFPAT_RAW10_ENQUEUE, 0);
 4353|    880|}
ofp-actions.c:put_OFPAT_SET_QUEUE:
 4386|    819|put_OFPAT_SET_QUEUE(struct ofpbuf *openflow, enum ofp_version version, uint32_t arg){
 4387|    819|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_QUEUE, arg);
 4388|    819|}
ofp-actions.c:put_NXAST_POP_QUEUE:
 4476|  1.58k|put_NXAST_POP_QUEUE(struct ofpbuf *openflow){
 4477|  1.58k|    ofpact_put_raw(openflow, 1, NXAST_RAW_POP_QUEUE, 0);
 4478|  1.58k|}
ofp-actions.c:put_NXAST_OUTPUT_REG2:
 4506|    365|put_NXAST_OUTPUT_REG2(struct ofpbuf *openflow){
 4507|    365|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_REG2, 0);
 4508|    365|}
ofp-actions.c:put_NXAST_OUTPUT_REG:
 4501|    312|put_NXAST_OUTPUT_REG(struct ofpbuf *openflow){
 4502|    312|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_REG, 0);
 4503|    312|}
ofp-actions.c:put_NXAST_BUNDLE_LOAD:
 4496|    205|put_NXAST_BUNDLE_LOAD(struct ofpbuf *openflow){
 4497|    205|    return ofpact_put_raw(openflow, 1, NXAST_RAW_BUNDLE_LOAD, 0);
 4498|    205|}
ofp-actions.c:put_NXAST_BUNDLE:
 4491|    720|put_NXAST_BUNDLE(struct ofpbuf *openflow){
 4492|    720|    return ofpact_put_raw(openflow, 1, NXAST_RAW_BUNDLE, 0);
 4493|    720|}
ofp-actions.c:put_OFPAT12_SET_FIELD:
 4411|  6.64k|put_OFPAT12_SET_FIELD(struct ofpbuf *openflow){
 4412|  6.64k|    return ofpact_put_raw(openflow, 3, OFPAT_RAW12_SET_FIELD, 0);
 4413|  6.64k|}
ofp-actions.c:put_NXAST_REG_LOAD2:
 4426|  9.63k|put_NXAST_REG_LOAD2(struct ofpbuf *openflow){
 4427|  9.63k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_LOAD2, 0);
 4428|  9.63k|}
ofp-actions.c:put_NXAST_REG_LOAD:
 4421|   129k|put_NXAST_REG_LOAD(struct ofpbuf *openflow){
 4422|   129k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_LOAD, 0);
 4423|   129k|}
ofp-actions.c:put_OFPAT10_SET_VLAN_VID:
 4276|  1.25k|put_OFPAT10_SET_VLAN_VID(struct ofpbuf *openflow, uint16_t arg){
 4277|  1.25k|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_SET_VLAN_VID, arg);
 4278|  1.25k|}
ofp-actions.c:put_OFPAT10_SET_VLAN_PCP:
 4281|    864|put_OFPAT10_SET_VLAN_PCP(struct ofpbuf *openflow, uint8_t arg){
 4282|    864|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_SET_VLAN_PCP, arg);
 4283|    864|}
ofp-actions.c:put_OFPAT10_STRIP_VLAN:
 4301|  1.68k|put_OFPAT10_STRIP_VLAN(struct ofpbuf *openflow){
 4302|  1.68k|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_STRIP_VLAN, 0);
 4303|  1.68k|}
ofp-actions.c:put_OFPAT11_PUSH_VLAN:
 4296|  1.75k|put_OFPAT11_PUSH_VLAN(struct ofpbuf *openflow, ovs_be16 arg){
 4297|       |    ofpact_put_raw(openflow, 2, OFPAT_RAW11_PUSH_VLAN, ntohs(arg));
 4298|  1.75k|}
ofp-actions.c:put_OFPAT11_SET_VLAN_VID:
 4286|  1.02k|put_OFPAT11_SET_VLAN_VID(struct ofpbuf *openflow, uint16_t arg){
 4287|  1.02k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_VLAN_VID, arg);
 4288|  1.02k|}
ofp-actions.c:put_OFPAT11_SET_VLAN_PCP:
 4291|  1.01k|put_OFPAT11_SET_VLAN_PCP(struct ofpbuf *openflow, uint8_t arg){
 4292|  1.01k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_VLAN_PCP, arg);
 4293|  1.01k|}
ofp-actions.c:put_OFPAT11_POP_VLAN:
 4306|  1.76k|put_OFPAT11_POP_VLAN(struct ofpbuf *openflow){
 4307|  1.76k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_POP_VLAN, 0);
 4308|  1.76k|}
ofp-actions.c:put_OFPAT_SET_DL_SRC:
 4311|    198|put_OFPAT_SET_DL_SRC(struct ofpbuf *openflow, enum ofp_version version){
 4312|    198|    return ofpact_put_raw(openflow, version, OFPAT_RAW_SET_DL_SRC, 0);
 4313|    198|}
ofp-actions.c:put_OFPAT_SET_DL_DST:
 4316|    194|put_OFPAT_SET_DL_DST(struct ofpbuf *openflow, enum ofp_version version){
 4317|    194|    return ofpact_put_raw(openflow, version, OFPAT_RAW_SET_DL_DST, 0);
 4318|    194|}
ofp-actions.c:put_OFPAT_SET_NW_SRC:
 4321|    239|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|    239|}
ofp-actions.c:put_OFPAT_SET_NW_DST:
 4326|    288|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|    288|}
ofp-actions.c:put_OFPAT_SET_NW_TOS:
 4331|  1.19k|put_OFPAT_SET_NW_TOS(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4332|  1.19k|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_NW_TOS, arg);
 4333|  1.19k|}
ofp-actions.c:put_OFPAT_SET_TP_SRC:
 4341|    560|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|    560|}
ofp-actions.c:put_OFPAT_SET_TP_DST:
 4346|    513|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|    513|}
ofp-actions.c:put_OFPAT11_SET_NW_ECN:
 4336|    501|put_OFPAT11_SET_NW_ECN(struct ofpbuf *openflow, uint8_t arg){
 4337|    501|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_NW_ECN, arg);
 4338|    501|}
ofp-actions.c:put_OFPAT11_SET_NW_TTL:
 4396|    270|put_OFPAT11_SET_NW_TTL(struct ofpbuf *openflow, uint8_t arg){
 4397|    270|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_NW_TTL, arg);
 4398|    270|}
ofp-actions.c:put_NXAST_REG_MOVE:
 4441|    610|put_NXAST_REG_MOVE(struct ofpbuf *openflow){
 4442|    610|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_MOVE, 0);
 4443|    610|}
ofp-actions.c:put_NXAST_STACK_PUSH:
 4546|    623|put_NXAST_STACK_PUSH(struct ofpbuf *openflow){
 4547|    623|    return ofpact_put_raw(openflow, 1, NXAST_RAW_STACK_PUSH, 0);
 4548|    623|}
ofp-actions.c:put_NXAST_STACK_POP:
 4551|  1.90k|put_NXAST_STACK_POP(struct ofpbuf *openflow){
 4552|  1.90k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_STACK_POP, 0);
 4553|  1.90k|}
ofp-actions.c:put_NXAST_DEC_TTL_CNT_IDS:
 4406|  2.28k|put_NXAST_DEC_TTL_CNT_IDS(struct ofpbuf *openflow){
 4407|  2.28k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_DEC_TTL_CNT_IDS, 0);
 4408|  2.28k|}
ofp-actions.c:put_OFPAT_DEC_NW_TTL:
 4401|    839|put_OFPAT_DEC_NW_TTL(struct ofpbuf *openflow, enum ofp_version version){
 4402|    839|    ofpact_put_raw(openflow, version, OFPAT_RAW_DEC_NW_TTL, 0);
 4403|    839|}
ofp-actions.c:put_OFPAT_SET_MPLS_LABEL:
 4356|    803|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|    803|}
ofp-actions.c:put_OFPAT_SET_MPLS_TC:
 4361|    600|put_OFPAT_SET_MPLS_TC(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4362|    600|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_TC, arg);
 4363|    600|}
ofp-actions.c:put_OFPAT_SET_MPLS_TTL:
 4366|    869|put_OFPAT_SET_MPLS_TTL(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4367|    869|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_TTL, arg);
 4368|    869|}
ofp-actions.c:put_OFPAT_DEC_MPLS_TTL:
 4371|  1.86k|put_OFPAT_DEC_MPLS_TTL(struct ofpbuf *openflow, enum ofp_version version){
 4372|  1.86k|    ofpact_put_raw(openflow, version, OFPAT_RAW_DEC_MPLS_TTL, 0);
 4373|  1.86k|}
ofp-actions.c:put_OFPAT_PUSH_MPLS:
 4376|    492|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|    492|}
ofp-actions.c:put_OFPAT_POP_MPLS:
 4381|  2.45k|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|  2.45k|}
ofp-actions.c:put_NXAST_DEC_NSH_TTL:
 4616|    552|put_NXAST_DEC_NSH_TTL(struct ofpbuf *openflow){
 4617|    552|    ofpact_put_raw(openflow, 4, NXAST_RAW_DEC_NSH_TTL, 0);
 4618|    552|}
ofp-actions.c:put_NXAST_DELETE_FIELD:
 4626|    205|put_NXAST_DELETE_FIELD(struct ofpbuf *openflow){
 4627|    205|    return ofpact_put_raw(openflow, 1, NXAST_RAW_DELETE_FIELD, 0);
 4628|    205|}
ofp-actions.c:put_NXAST_ENCAP:
 4606|  1.70k|put_NXAST_ENCAP(struct ofpbuf *openflow){
 4607|  1.70k|    return ofpact_put_raw(openflow, 4, NXAST_RAW_ENCAP, 0);
 4608|  1.70k|}
ofp-actions.c:put_NXAST_DECAP:
 4611|  1.94k|put_NXAST_DECAP(struct ofpbuf *openflow){
 4612|  1.94k|    return ofpact_put_raw(openflow, 4, NXAST_RAW_DECAP, 0);
 4613|  1.94k|}
ofp-actions.c:put_NXAST_SET_TUNNEL:
 4466|    395|put_NXAST_SET_TUNNEL(struct ofpbuf *openflow, uint32_t arg){
 4467|    395|    ofpact_put_raw(openflow, 1, NXAST_RAW_SET_TUNNEL, arg);
 4468|    395|}
ofp-actions.c:put_NXAST_SET_TUNNEL64:
 4471|    556|put_NXAST_SET_TUNNEL64(struct ofpbuf *openflow, uint64_t arg){
 4472|    556|    ofpact_put_raw(openflow, 1, NXAST_RAW_SET_TUNNEL64, arg);
 4473|    556|}
ofp-actions.c:put_NXAST_FIN_TIMEOUT:
 4526|    749|put_NXAST_FIN_TIMEOUT(struct ofpbuf *openflow){
 4527|    749|    return ofpact_put_raw(openflow, 1, NXAST_RAW_FIN_TIMEOUT, 0);
 4528|    749|}
ofp-actions.c:put_NXAST_RESUBMIT_TABLE_CT:
 4461|    393|put_NXAST_RESUBMIT_TABLE_CT(struct ofpbuf *openflow){
 4462|    393|    return ofpact_put_raw(openflow, 1, NXAST_RAW_RESUBMIT_TABLE_CT, 0);
 4463|    393|}
ofp-actions.c:put_NXAST_RESUBMIT_TABLE:
 4456|    676|put_NXAST_RESUBMIT_TABLE(struct ofpbuf *openflow){
 4457|    676|    return ofpact_put_raw(openflow, 1, NXAST_RAW_RESUBMIT_TABLE, 0);
 4458|    676|}
ofp-actions.c:put_NXAST_LEARN2:
 4516|    875|put_NXAST_LEARN2(struct ofpbuf *openflow){
 4517|    875|    return ofpact_put_raw(openflow, 1, NXAST_RAW_LEARN2, 0);
 4518|    875|}
ofp-actions.c:put_NXAST_LEARN:
 4511|  30.4k|put_NXAST_LEARN(struct ofpbuf *openflow){
 4512|  30.4k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_LEARN, 0);
 4513|  30.4k|}
ofp-actions.c:put_NXAST_CONJUNCTION:
 4576|    214|put_NXAST_CONJUNCTION(struct ofpbuf *openflow){
 4577|    214|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONJUNCTION, 0);
 4578|    214|}
ofp-actions.c:put_NXAST_MULTIPATH:
 4486|    833|put_NXAST_MULTIPATH(struct ofpbuf *openflow){
 4487|    833|    return ofpact_put_raw(openflow, 1, NXAST_RAW_MULTIPATH, 0);
 4488|    833|}
ofp-actions.c:put_NXAST_NOTE:
 4481|  2.86k|put_NXAST_NOTE(struct ofpbuf *openflow){
 4482|  2.86k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_NOTE, 0);
 4483|  2.86k|}
ofp-actions.c:put_NXAST_EXIT:
 4521|  1.12k|put_NXAST_EXIT(struct ofpbuf *openflow){
 4522|  1.12k|    ofpact_put_raw(openflow, 1, NXAST_RAW_EXIT, 0);
 4523|  1.12k|}
ofp-actions.c:put_NXAST_SAMPLE4:
 4571|    469|put_NXAST_SAMPLE4(struct ofpbuf *openflow){
 4572|    469|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE4, 0);
 4573|    469|}
ofp-actions.c:put_NXAST_SAMPLE3:
 4566|    277|put_NXAST_SAMPLE3(struct ofpbuf *openflow){
 4567|    277|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE3, 0);
 4568|    277|}
ofp-actions.c:put_NXAST_SAMPLE2:
 4561|    212|put_NXAST_SAMPLE2(struct ofpbuf *openflow){
 4562|    212|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE2, 0);
 4563|    212|}
ofp-actions.c:put_NXAST_SAMPLE:
 4556|    514|put_NXAST_SAMPLE(struct ofpbuf *openflow){
 4557|    514|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE, 0);
 4558|    514|}
ofp-actions.c:put_NXAST_CT:
 4581|  8.22k|put_NXAST_CT(struct ofpbuf *openflow){
 4582|  8.22k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CT, 0);
 4583|  8.22k|}
ofp-actions.c:put_NXAST_CT_CLEAR:
 4601|    856|put_NXAST_CT_CLEAR(struct ofpbuf *openflow){
 4602|    856|    ofpact_put_raw(openflow, 1, NXAST_RAW_CT_CLEAR, 0);
 4603|    856|}
ofp-actions.c:put_NXAST_NAT:
 4586|  7.71k|put_NXAST_NAT(struct ofpbuf *openflow){
 4587|  7.71k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_NAT, 0);
 4588|  7.71k|}
ofp-actions.c:put_NXAST_OUTPUT_TRUNC:
 4591|    925|put_NXAST_OUTPUT_TRUNC(struct ofpbuf *openflow){
 4592|    925|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_TRUNC, 0);
 4593|    925|}
ofp-actions.c:put_NXAST_CLONE:
 4596|  7.49k|put_NXAST_CLONE(struct ofpbuf *openflow){
 4597|  7.49k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CLONE, 0);
 4598|  7.49k|}
ofp-actions.c:put_NXAST_CHECK_PKT_LARGER:
 4621|    405|put_NXAST_CHECK_PKT_LARGER(struct ofpbuf *openflow){
 4622|    405|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CHECK_PKT_LARGER, 0);
 4623|    405|}
ofp-actions.c:put_NXAST_DEBUG_RECIRC:
 4636|  1.03k|put_NXAST_DEBUG_RECIRC(struct ofpbuf *openflow){
 4637|  1.03k|    ofpact_put_raw(openflow, 1, NXAST_RAW_DEBUG_RECIRC, 0);
 4638|  1.03k|}
ofp-actions.c:put_NXAST_DEBUG_SLOW:
 4631|  2.35k|put_NXAST_DEBUG_SLOW(struct ofpbuf *openflow){
 4632|  2.35k|    ofpact_put_raw(openflow, 1, NXAST_RAW_DEBUG_SLOW, 0);
 4633|  2.35k|}
ofp-actions.c:put_NXAST_WRITE_METADATA:
 4541|      3|put_NXAST_WRITE_METADATA(struct ofpbuf *openflow){
 4542|      3|    return ofpact_put_raw(openflow, 1, NXAST_RAW_WRITE_METADATA, 0);
 4543|      3|}

encode_ed_prop:
   95|    875|{
   96|    875|    size_t prop_len;
   97|       |
   98|    875|    switch ((*prop)->prop_class) {
   99|    875|    case OFPPPC_NSH: {
  ------------------
  |  Branch (99:5): [True: 875, False: 0]
  ------------------
  100|    875|        switch ((*prop)->type) {
  101|    875|        case OFPPPT_PROP_NSH_MDTYPE: {
  ------------------
  |  Branch (101:9): [True: 875, False: 0]
  ------------------
  102|    875|            struct ofpact_ed_prop_nsh_md_type *pnmt =
  103|    875|                ALIGNED_CAST(struct ofpact_ed_prop_nsh_md_type *, *prop);
  ------------------
  |  |  434|    875|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  104|    875|            struct ofp_ed_prop_nsh_md_type *opnmt =
  105|    875|                    ofpbuf_put_uninit(out, sizeof(*opnmt));
  106|    875|            opnmt->header.prop_class = htons((*prop)->prop_class);
  107|    875|            opnmt->header.type = (*prop)->type;
  108|    875|            opnmt->header.len =
  109|    875|                    offsetof(struct ofp_ed_prop_nsh_md_type, pad);
  110|    875|            opnmt->md_type = pnmt->md_type;
  111|    875|            memset(opnmt->pad, 0, sizeof opnmt->pad);
  112|    875|            prop_len = sizeof(*pnmt);
  113|    875|            break;
  114|      0|        }
  115|      0|        case OFPPPT_PROP_NSH_TLV: {
  ------------------
  |  Branch (115:9): [True: 0, False: 875]
  ------------------
  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: 875]
  ------------------
  133|      0|            return OFPERR_OFPBAC_BAD_ARGUMENT;
  134|    875|        }
  135|    875|        break;
  136|    875|    }
  137|    875|    default:
  ------------------
  |  Branch (137:5): [True: 0, False: 875]
  ------------------
  138|      0|        return OFPERR_OFPBAC_BAD_ARGUMENT;
  139|    875|    }
  140|       |
  141|    875|    *prop = ALIGNED_CAST(const struct ofpact_ed_prop *,
  ------------------
  |  |  434|    875|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  142|    875|                         ((char *)(*prop) + prop_len));
  143|    875|    return 0;
  144|    875|}
parse_ed_prop_class:
  149|  2.35k|{
  150|  2.35k|    if (!strcmp(str,"basic")) {
  ------------------
  |  Branch (150:9): [True: 0, False: 2.35k]
  ------------------
  151|      0|        *prop_class = OFPPPC_BASIC;
  152|  2.35k|    } else if (!strcmp(str,"ethernet")) {
  ------------------
  |  Branch (152:16): [True: 872, False: 1.47k]
  ------------------
  153|    872|        *prop_class = OFPPPC_BASIC;
  154|  1.47k|    } else if (!strcmp(str,"mpls")) {
  ------------------
  |  Branch (154:16): [True: 234, False: 1.24k]
  ------------------
  155|    234|        *prop_class = OFPPPC_MPLS;
  156|  1.24k|    } else if (!strcmp(str,"mpls_mc")) {
  ------------------
  |  Branch (156:16): [True: 258, False: 986]
  ------------------
  157|    258|        *prop_class = OFPPPC_MPLS;
  158|    986|    } else if (!strcmp(str,"gre")) {
  ------------------
  |  Branch (158:16): [True: 0, False: 986]
  ------------------
  159|      0|        *prop_class = OFPPPC_GRE;
  160|    986|    } else if (!strcmp(str,"gtp")) {
  ------------------
  |  Branch (160:16): [True: 0, False: 986]
  ------------------
  161|      0|        *prop_class = OFPPPC_GTP;
  162|    986|    } else if (!strcmp(str,"nsh")) {
  ------------------
  |  Branch (162:16): [True: 986, False: 0]
  ------------------
  163|    986|        *prop_class = OFPPPC_NSH;
  164|    986|    } else {
  165|      0|        return false;
  166|      0|    }
  167|  2.35k|    return true;
  168|  2.35k|}
parse_ed_prop_type:
  174|  1.16k|{
  175|  1.16k|    switch (prop_class) {
  176|  1.16k|    case OFPPPC_NSH:
  ------------------
  |  Branch (176:5): [True: 1.16k, False: 2]
  ------------------
  177|  1.16k|        if (!strcmp(str, "md_type")) {
  ------------------
  |  Branch (177:13): [True: 1.11k, False: 49]
  ------------------
  178|  1.11k|            *type = OFPPPT_PROP_NSH_MDTYPE;
  179|  1.11k|            return true;
  180|  1.11k|        } else if (!strcmp(str, "tlv")) {
  ------------------
  |  Branch (180:20): [True: 2, False: 47]
  ------------------
  181|      2|            *type = OFPPPT_PROP_NSH_TLV;
  182|      2|            return true;
  183|     47|        } else {
  184|     47|            return false;
  185|     47|        }
  186|      2|    default:
  ------------------
  |  Branch (186:5): [True: 2, False: 1.16k]
  ------------------
  187|       |        return false;
  188|  1.16k|    }
  189|  1.16k|}
parse_ed_prop_value:
  201|  1.11k|{
  202|  1.11k|    char *error = NULL;
  203|       |
  204|  1.11k|    if (value == NULL || *value == '\0') {
  ------------------
  |  Branch (204:9): [True: 0, False: 1.11k]
  |  Branch (204:26): [True: 2, False: 1.11k]
  ------------------
  205|      2|        return xstrdup("Value missing for encap property");
  206|      2|    }
  207|       |
  208|  1.11k|    switch (prop_class) {
  209|  1.11k|    case OFPPPC_NSH:
  ------------------
  |  Branch (209:5): [True: 1.11k, False: 0]
  ------------------
  210|  1.11k|        switch (prop_type) {
  211|  1.11k|        case OFPPPT_PROP_NSH_MDTYPE: {
  ------------------
  |  Branch (211:9): [True: 1.11k, False: 1]
  ------------------
  212|       |            /* Format: "<md_type>:uint8_t". */
  213|  1.11k|            uint8_t md_type;
  214|  1.11k|            error = str_to_u8(value, "md_type", &md_type);
  215|  1.11k|            if (error != NULL) {
  ------------------
  |  Branch (215:17): [True: 1, False: 1.11k]
  ------------------
  216|      1|                return error;
  217|      1|            }
  218|  1.11k|            if (md_type < 1 || md_type > 2) {
  ------------------
  |  Branch (218:17): [True: 1, False: 1.11k]
  |  Branch (218:32): [True: 1, False: 1.10k]
  ------------------
  219|      2|                return xstrdup("invalid md_type");
  220|      2|            }
  221|  1.10k|            struct ofpact_ed_prop_nsh_md_type *pnmt =
  222|  1.10k|                    ofpbuf_put_uninit(out, sizeof(*pnmt));
  223|  1.10k|            pnmt->header.prop_class = prop_class;
  224|  1.10k|            pnmt->header.type = prop_type;
  225|  1.10k|            pnmt->header.len =
  226|  1.10k|                    offsetof(struct ofp_ed_prop_nsh_md_type, pad);
  227|  1.10k|            pnmt->md_type = md_type;
  228|  1.10k|            break;
  229|  1.11k|        }
  230|      1|        case OFPPPT_PROP_NSH_TLV: {
  ------------------
  |  Branch (230:9): [True: 1, False: 1.11k]
  ------------------
  231|       |            /* Format: "<class>:ovs_be16,<type>:uint8_t,<val>:hex_string" */
  232|      1|            struct ofpact_ed_prop_nsh_tlv *pnt;
  233|      1|            uint16_t tlv_class;
  234|      1|            uint8_t tlv_type;
  235|      1|            char buf[256];
  236|      1|            size_t tlv_value_len, padding;
  237|      1|            size_t start_ofs = out->size;
  238|       |
  239|      1|            if (!ovs_scan(value, "0x%"SCNx16",%"SCNu8",0x%251[0-9a-fA-F]",
  ------------------
  |  Branch (239:17): [True: 1, False: 0]
  ------------------
  240|      1|                          &tlv_class, &tlv_type, buf)) {
  241|      1|                return xasprintf("Invalid NSH TLV header: %s", value);
  242|      1|            }
  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|      1|        }
  259|      0|        default:
  ------------------
  |  Branch (259:9): [True: 0, False: 1.11k]
  ------------------
  260|       |            /* Unsupported property types rejected before. */
  261|      0|            OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  262|  1.11k|        }
  263|  1.10k|        break;
  264|  1.10k|    default:
  ------------------
  |  Branch (264:5): [True: 0, False: 1.11k]
  ------------------
  265|       |        /* Unsupported property classes rejected before. */
  266|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  267|  1.11k|    }
  268|       |
  269|  1.10k|    return NULL;
  270|  1.11k|}

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

ofputil_encode_flow_mod:
  374|  10.4k|{
  375|  10.4k|    enum ofp_version version = ofputil_protocol_to_ofp_version(protocol);
  376|  10.4k|    ovs_be16 raw_flags = ofputil_encode_flow_mod_flags(fm->flags, version);
  377|  10.4k|    struct ofpbuf *msg;
  378|       |
  379|  10.4k|    struct match match;
  380|  10.4k|    minimatch_expand(&fm->match, &match);
  381|       |
  382|  10.4k|    switch (protocol) {
  383|    197|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (383:5): [True: 197, False: 10.2k]
  ------------------
  384|    299|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (384:5): [True: 102, False: 10.3k]
  ------------------
  385|    729|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (385:5): [True: 430, False: 10.0k]
  ------------------
  386|    729|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (386:5): [True: 0, False: 10.4k]
  ------------------
  387|    729|    case OFPUTIL_P_OF15_OXM: {
  ------------------
  |  Branch (387:5): [True: 0, False: 10.4k]
  ------------------
  388|    729|        struct ofp11_flow_mod *ofm;
  389|    729|        int tailroom;
  390|       |
  391|    729|        tailroom = ofputil_match_typical_len(protocol) + fm->ofpacts_len;
  392|    729|        msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, version, tailroom);
  393|    729|        ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
  394|    729|        if ((protocol == OFPUTIL_P_OF11_STD
  ------------------
  |  Branch (394:14): [True: 197, False: 532]
  ------------------
  395|    197|             && (fm->command == OFPFC_MODIFY ||
  ------------------
  |  Branch (395:18): [True: 35, False: 162]
  ------------------
  396|    162|                 fm->command == OFPFC_MODIFY_STRICT)
  ------------------
  |  Branch (396:18): [True: 79, False: 83]
  ------------------
  397|    114|             && fm->cookie_mask == htonll(0))
  ------------------
  |  Branch (397:17): [True: 57, False: 57]
  ------------------
  398|    672|            || fm->command == OFPFC_ADD) {
  ------------------
  |  Branch (398:16): [True: 192, False: 480]
  ------------------
  399|    249|            ofm->cookie = fm->new_cookie;
  400|    480|        } else {
  401|    480|            ofm->cookie = fm->cookie & fm->cookie_mask;
  402|    480|        }
  403|    729|        ofm->cookie_mask = fm->cookie_mask;
  404|    729|        if (fm->table_id != OFPTT_ALL
  ------------------
  |  Branch (404:13): [True: 1, False: 728]
  ------------------
  405|    728|            || (protocol != OFPUTIL_P_OF11_STD
  ------------------
  |  Branch (405:17): [True: 532, False: 196]
  ------------------
  406|    532|                && (fm->command == OFPFC_DELETE ||
  ------------------
  |  Branch (406:21): [True: 4, False: 528]
  ------------------
  407|    528|                    fm->command == OFPFC_DELETE_STRICT))) {
  ------------------
  |  Branch (407:21): [True: 5, False: 523]
  ------------------
  408|     10|            ofm->table_id = fm->table_id;
  409|    719|        } else {
  410|    719|            ofm->table_id = 0;
  411|    719|        }
  412|    729|        ofm->command = fm->command;
  413|    729|        ofm->idle_timeout = htons(fm->idle_timeout);
  414|    729|        ofm->hard_timeout = htons(fm->hard_timeout);
  415|    729|        ofm->priority = htons(fm->priority);
  416|    729|        ofm->buffer_id = htonl(fm->buffer_id);
  417|    729|        ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
  418|    729|        ofm->out_group = htonl(fm->out_group);
  419|    729|        ofm->flags = raw_flags;
  420|    729|        if (version >= OFP14_VERSION && fm->command == OFPFC_ADD) {
  ------------------
  |  Branch (420:13): [True: 0, False: 729]
  |  Branch (420:41): [True: 0, False: 0]
  ------------------
  421|      0|            ofm->importance = htons(fm->importance);
  422|    729|        } else {
  423|    729|            ofm->importance = 0;
  424|    729|        }
  425|    729|        ofputil_put_ofp11_match(msg, &match, protocol);
  426|    729|        ofpacts_put_openflow_instructions(fm->ofpacts, fm->ofpacts_len, msg,
  427|    729|                                          version);
  428|    729|        break;
  429|    729|    }
  430|       |
  431|  5.10k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (431:5): [True: 5.10k, False: 5.38k]
  ------------------
  432|  5.38k|    case OFPUTIL_P_OF10_STD_TID: {
  ------------------
  |  Branch (432:5): [True: 283, False: 10.2k]
  ------------------
  433|  5.38k|        struct ofp10_flow_mod *ofm;
  434|       |
  435|  5.38k|        msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
  436|  5.38k|                           fm->ofpacts_len);
  437|  5.38k|        ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
  438|  5.38k|        ofputil_match_to_ofp10_match(&match, &ofm->match);
  439|  5.38k|        ofm->cookie = fm->new_cookie;
  440|  5.38k|        ofm->command = ofputil_tid_command(fm, protocol);
  441|  5.38k|        ofm->idle_timeout = htons(fm->idle_timeout);
  442|  5.38k|        ofm->hard_timeout = htons(fm->hard_timeout);
  443|  5.38k|        ofm->priority = htons(fm->priority);
  444|  5.38k|        ofm->buffer_id = htonl(fm->buffer_id);
  445|  5.38k|        ofm->out_port = htons(ofp_to_u16(fm->out_port));
  446|  5.38k|        ofm->flags = raw_flags;
  447|  5.38k|        ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
  448|  5.38k|                                     version);
  449|  5.38k|        break;
  450|  5.10k|    }
  451|       |
  452|  4.35k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (452:5): [True: 4.35k, False: 6.12k]
  ------------------
  453|  4.37k|    case OFPUTIL_P_OF10_NXM_TID: {
  ------------------
  |  Branch (453:5): [True: 15, False: 10.4k]
  ------------------
  454|  4.37k|        struct nx_flow_mod *nfm;
  455|  4.37k|        int match_len;
  456|       |
  457|  4.37k|        msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
  458|  4.37k|                           NXM_TYPICAL_LEN + fm->ofpacts_len);
  ------------------
  |  |  179|  4.37k|#define NXM_TYPICAL_LEN 64
  ------------------
  459|  4.37k|        nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
  460|  4.37k|        nfm->command = ofputil_tid_command(fm, protocol);
  461|  4.37k|        nfm->cookie = fm->new_cookie;
  462|  4.37k|        match_len = nx_put_match(msg, &match, fm->cookie, fm->cookie_mask);
  463|  4.37k|        nfm = msg->msg;
  464|  4.37k|        nfm->idle_timeout = htons(fm->idle_timeout);
  465|  4.37k|        nfm->hard_timeout = htons(fm->hard_timeout);
  466|  4.37k|        nfm->priority = htons(fm->priority);
  467|  4.37k|        nfm->buffer_id = htonl(fm->buffer_id);
  468|  4.37k|        nfm->out_port = htons(ofp_to_u16(fm->out_port));
  469|  4.37k|        nfm->flags = raw_flags;
  470|  4.37k|        nfm->match_len = htons(match_len);
  471|  4.37k|        ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
  472|  4.37k|                                     version);
  473|  4.37k|        break;
  474|  4.35k|    }
  475|       |
  476|      0|    default:
  ------------------
  |  Branch (476:5): [True: 0, False: 10.4k]
  ------------------
  477|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  478|  10.4k|    }
  479|       |
  480|  10.4k|    ofpmsg_update_length(msg);
  481|  10.4k|    return msg;
  482|  10.4k|}
parse_ofp_str:
 1795|  24.1k|{
 1796|  24.1k|    char *string = xstrdup(str_);
 1797|  24.1k|    char *error;
 1798|       |
 1799|  24.1k|    error = parse_ofp_str__(fm, command, string, port_map, table_map,
 1800|  24.1k|                            usable_protocols);
 1801|  24.1k|    if (error) {
  ------------------
  |  Branch (1801:9): [True: 13.4k, False: 10.7k]
  ------------------
 1802|  13.4k|        fm->ofpacts = NULL;
 1803|  13.4k|        fm->ofpacts_len = 0;
 1804|  13.4k|    }
 1805|       |
 1806|  24.1k|    free(string);
 1807|  24.1k|    return error;
 1808|  24.1k|}
parse_ofp_flow_mod_str:
 1825|  24.1k|{
 1826|  24.1k|    char *error = parse_ofp_str(fm, command, string, port_map, table_map,
 1827|  24.1k|                                usable_protocols);
 1828|       |
 1829|  24.1k|    if (!error) {
  ------------------
  |  Branch (1829:9): [True: 10.7k, False: 13.4k]
  ------------------
 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|  10.7k|        struct match match;
 1834|  10.7k|        minimatch_expand(&fm->match, &match);
 1835|  10.7k|        ofputil_normalize_match(&match);
 1836|  10.7k|    }
 1837|       |
 1838|  24.1k|    return error;
 1839|  24.1k|}
ofp-flow.c:ofputil_encode_flow_mod_flags:
   93|  10.4k|{
   94|  10.4k|    const struct ofputil_flow_mod_flag *f;
   95|  10.4k|    uint16_t raw_flags;
   96|       |
   97|  10.4k|    raw_flags = 0;
   98|  73.4k|    for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
  ------------------
  |  Branch (98:38): [True: 62.9k, False: 10.4k]
  ------------------
   99|  62.9k|        if (f->flag & flags
  ------------------
  |  Branch (99:13): [True: 158, False: 62.7k]
  ------------------
  100|    158|            && version >= f->min_version
  ------------------
  |  Branch (100:16): [True: 158, False: 0]
  ------------------
  101|    158|            && (!f->max_version || version <= f->max_version)) {
  ------------------
  |  Branch (101:17): [True: 158, False: 0]
  |  Branch (101:36): [True: 0, False: 0]
  ------------------
  102|    158|            raw_flags |= f->raw_flag;
  103|    158|        }
  104|  62.9k|    }
  105|       |
  106|       |    return htons(raw_flags);
  107|  10.4k|}
ofp-flow.c:ofputil_tid_command:
  363|  9.75k|{
  364|       |    return htons(protocol & OFPUTIL_P_TID
  ------------------
  |  Branch (364:12): [True: 298, False: 9.45k]
  ------------------
  365|  9.75k|                 ? (fm->command & 0xff) | (fm->table_id << 8)
  366|  9.75k|                 : fm->command);
  367|  9.75k|}
ofp-flow.c:parse_ofp_str__:
 1490|  24.1k|{
 1491|  24.1k|    enum {
 1492|  24.1k|        F_OUT_PORT = 1 << 0,
 1493|  24.1k|        F_ACTIONS = 1 << 1,
 1494|  24.1k|        F_IMPORTANCE = 1 << 2,
 1495|  24.1k|        F_TIMEOUT = 1 << 3,
 1496|  24.1k|        F_PRIORITY = 1 << 4,
 1497|  24.1k|        F_FLAGS = 1 << 5,
 1498|  24.1k|    } fields;
 1499|  24.1k|    char *act_str = NULL;
 1500|  24.1k|    char *name, *value;
 1501|       |
 1502|  24.1k|    *usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  24.1k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 1503|       |
 1504|  24.1k|    if (command == -2) {
  ------------------
  |  Branch (1504:9): [True: 2.30k, False: 21.8k]
  ------------------
 1505|  2.30k|        size_t len;
 1506|       |
 1507|  2.30k|        string += strspn(string, " \t\r\n");   /* Skip white space. */
 1508|  2.30k|        len = strcspn(string, ", \t\r\n"); /* Get length of the first token. */
 1509|       |
 1510|  2.30k|        if (!strncmp(string, "add", len)) {
  ------------------
  |  Branch (1510:13): [True: 2, False: 2.30k]
  ------------------
 1511|      2|            command = OFPFC_ADD;
 1512|  2.30k|        } else if (!strncmp(string, "delete", len)) {
  ------------------
  |  Branch (1512:20): [True: 8, False: 2.29k]
  ------------------
 1513|      8|            command = OFPFC_DELETE;
 1514|  2.29k|        } else if (!strncmp(string, "delete_strict", len)) {
  ------------------
  |  Branch (1514:20): [True: 1, False: 2.29k]
  ------------------
 1515|      1|            command = OFPFC_DELETE_STRICT;
 1516|  2.29k|        } else if (!strncmp(string, "modify", len)) {
  ------------------
  |  Branch (1516:20): [True: 1, False: 2.29k]
  ------------------
 1517|      1|            command = OFPFC_MODIFY;
 1518|  2.29k|        } else if (!strncmp(string, "modify_strict", len)) {
  ------------------
  |  Branch (1518:20): [True: 2, False: 2.29k]
  ------------------
 1519|      2|            command = OFPFC_MODIFY_STRICT;
 1520|  2.29k|        } else {
 1521|  2.29k|            len = 0;
 1522|  2.29k|            command = OFPFC_ADD;
 1523|  2.29k|        }
 1524|  2.30k|        string += len;
 1525|  2.30k|    }
 1526|       |
 1527|  24.1k|    switch (command) {
 1528|    967|    case -1:
  ------------------
  |  Branch (1528:5): [True: 967, False: 23.2k]
  ------------------
 1529|    967|        fields = F_OUT_PORT;
 1530|    967|        break;
 1531|       |
 1532|  3.97k|    case OFPFC_ADD:
  ------------------
  |  Branch (1532:5): [True: 3.97k, False: 20.2k]
  ------------------
 1533|  3.97k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS | F_IMPORTANCE;
 1534|  3.97k|        break;
 1535|       |
 1536|  3.75k|    case OFPFC_DELETE:
  ------------------
  |  Branch (1536:5): [True: 3.75k, False: 20.4k]
  ------------------
 1537|  3.75k|        fields = F_OUT_PORT;
 1538|  3.75k|        break;
 1539|       |
 1540|  3.77k|    case OFPFC_DELETE_STRICT:
  ------------------
  |  Branch (1540:5): [True: 3.77k, False: 20.4k]
  ------------------
 1541|  3.77k|        fields = F_OUT_PORT | F_PRIORITY;
 1542|  3.77k|        break;
 1543|       |
 1544|  6.84k|    case OFPFC_MODIFY:
  ------------------
  |  Branch (1544:5): [True: 6.84k, False: 17.3k]
  ------------------
 1545|  6.84k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
 1546|  6.84k|        break;
 1547|       |
 1548|  4.85k|    case OFPFC_MODIFY_STRICT:
  ------------------
  |  Branch (1548:5): [True: 4.85k, False: 19.3k]
  ------------------
 1549|  4.85k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
 1550|  4.85k|        break;
 1551|       |
 1552|      0|    default:
  ------------------
  |  Branch (1552:5): [True: 0, False: 24.1k]
  ------------------
 1553|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 1554|  24.1k|    }
 1555|       |
 1556|  24.1k|    *fm = (struct ofputil_flow_mod) {
 1557|  24.1k|        .priority = OFP_DEFAULT_PRIORITY,
  ------------------
  |  |  138|  24.1k|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
 1558|  24.1k|        .table_id = 0xff,
 1559|  24.1k|        .command = command,
 1560|  24.1k|        .buffer_id = UINT32_MAX,
 1561|  24.1k|        .out_port = OFPP_ANY,
  ------------------
  |  |   80|  24.1k|#define OFPP_ANY OFPP_NONE
  |  |  ------------------
  |  |  |  |   47|  24.1k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  ------------------
  |  |  |  |  |  |  157|  24.1k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1562|  24.1k|        .out_group = OFPG_ANY,
 1563|  24.1k|    };
 1564|       |    /* For modify, by default, don't update the cookie. */
 1565|  24.1k|    if (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT) {
  ------------------
  |  Branch (1565:9): [True: 6.84k, False: 17.3k]
  |  Branch (1565:36): [True: 4.85k, False: 12.4k]
  ------------------
 1566|  11.7k|        fm->new_cookie = OVS_BE64_MAX;
  ------------------
  |  |   44|  11.7k|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 1567|  11.7k|    }
 1568|       |
 1569|  24.1k|    if (fields & F_ACTIONS) {
  ------------------
  |  Branch (1569:9): [True: 15.6k, False: 8.50k]
  ------------------
 1570|  15.6k|        act_str = ofp_extract_actions(string);
 1571|  15.6k|        if (!act_str) {
  ------------------
  |  Branch (1571:13): [True: 187, False: 15.4k]
  ------------------
 1572|    187|            return xstrdup("must specify an action");
 1573|    187|        }
 1574|  15.6k|    }
 1575|       |
 1576|  23.9k|    struct match match = MATCH_CATCHALL_INITIALIZER;
  ------------------
  |  |   47|  23.9k|#define MATCH_CATCHALL_INITIALIZER { .flow = { .dl_type = 0 } }
  ------------------
 1577|   184k|    while (ofputil_parse_key_value(&string, &name, &value)) {
  ------------------
  |  Branch (1577:12): [True: 164k, False: 19.0k]
  ------------------
 1578|   164k|        const struct ofp_protocol *p;
 1579|   164k|        const struct mf_field *mf;
 1580|   164k|        char *error = NULL;
 1581|       |
 1582|   164k|        if (ofp_parse_protocol(name, &p)) {
  ------------------
  |  Branch (1582:13): [True: 11.2k, False: 153k]
  ------------------
 1583|  11.2k|            match_set_dl_type(&match, htons(p->dl_type));
 1584|  11.2k|            if (p->nw_proto) {
  ------------------
  |  Branch (1584:17): [True: 3.35k, False: 7.91k]
  ------------------
 1585|  3.35k|                match_set_nw_proto(&match, p->nw_proto);
 1586|  3.35k|            }
 1587|  11.2k|            match_set_default_packet_type(&match);
 1588|   153k|        } else if (!strcmp(name, "eth")) {
  ------------------
  |  Branch (1588:20): [True: 2.99k, False: 150k]
  ------------------
 1589|  2.99k|            match_set_packet_type(&match, htonl(PT_ETH));
 1590|   150k|        } else if (fields & F_FLAGS && !strcmp(name, "send_flow_rem")) {
  ------------------
  |  Branch (1590:20): [True: 17.3k, False: 133k]
  |  Branch (1590:40): [True: 202, False: 17.1k]
  ------------------
 1591|    202|            fm->flags |= OFPUTIL_FF_SEND_FLOW_REM;
 1592|   150k|        } else if (fields & F_FLAGS && !strcmp(name, "check_overlap")) {
  ------------------
  |  Branch (1592:20): [True: 17.1k, False: 133k]
  |  Branch (1592:40): [True: 411, False: 16.7k]
  ------------------
 1593|    411|            fm->flags |= OFPUTIL_FF_CHECK_OVERLAP;
 1594|   150k|        } else if (fields & F_FLAGS && !strcmp(name, "reset_counts")) {
  ------------------
  |  Branch (1594:20): [True: 16.7k, False: 133k]
  |  Branch (1594:40): [True: 262, False: 16.4k]
  ------------------
 1595|    262|            fm->flags |= OFPUTIL_FF_RESET_COUNTS;
 1596|    262|            *usable_protocols &= OFPUTIL_P_OF12_UP;
  ------------------
  |  |   94|    262|#define OFPUTIL_P_OF12_UP (OFPUTIL_P_OF12_OXM | OFPUTIL_P_OF13_UP)
  |  |  ------------------
  |  |  |  |   95|    262|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   96|    262|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   97|    262|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1597|   149k|        } else if (fields & F_FLAGS && !strcmp(name, "no_packet_counts")) {
  ------------------
  |  Branch (1597:20): [True: 16.4k, False: 133k]
  |  Branch (1597:40): [True: 348, False: 16.1k]
  ------------------
 1598|    348|            fm->flags |= OFPUTIL_FF_NO_PKT_COUNTS;
 1599|    348|            *usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    348|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    348|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    348|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1600|   149k|        } else if (fields & F_FLAGS && !strcmp(name, "no_byte_counts")) {
  ------------------
  |  Branch (1600:20): [True: 16.1k, False: 133k]
  |  Branch (1600:40): [True: 265, False: 15.8k]
  ------------------
 1601|    265|            fm->flags |= OFPUTIL_FF_NO_BYT_COUNTS;
 1602|    265|            *usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    265|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    265|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    265|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1603|   149k|        } else if (!strcmp(name, "no_readonly_table")
  ------------------
  |  Branch (1603:20): [True: 202, False: 149k]
  ------------------
 1604|   149k|                   || !strcmp(name, "allow_hidden_fields")) {
  ------------------
  |  Branch (1604:23): [True: 269, False: 148k]
  ------------------
 1605|       |             /* ignore these fields. */
 1606|   148k|        } else if ((mf = mf_from_name(name)) != NULL) {
  ------------------
  |  Branch (1606:20): [True: 76.1k, False: 72.6k]
  ------------------
 1607|  76.1k|            error = ofp_parse_field(mf, value, port_map,
 1608|  76.1k|                                    &match, usable_protocols);
 1609|  76.1k|        } else if (strchr(name, '[')) {
  ------------------
  |  Branch (1609:20): [True: 58.5k, False: 14.1k]
  ------------------
 1610|  58.5k|            error = parse_subfield(name, value, &match, usable_protocols);
 1611|  58.5k|        } else {
 1612|  14.1k|            if (!*value) {
  ------------------
  |  Branch (1612:17): [True: 1.70k, False: 12.4k]
  ------------------
 1613|  1.70k|                return xasprintf("field %s missing value", name);
 1614|  1.70k|            }
 1615|       |
 1616|  12.4k|            if (!strcmp(name, "table")) {
  ------------------
  |  Branch (1616:17): [True: 6.03k, False: 6.36k]
  ------------------
 1617|  6.03k|                if (!ofputil_table_from_string(value, table_map,
  ------------------
  |  Branch (1617:21): [True: 332, False: 5.70k]
  ------------------
 1618|  6.03k|                                               &fm->table_id)) {
 1619|    332|                    return xasprintf("unknown table \"%s\"", value);
 1620|    332|                }
 1621|  5.70k|                if (fm->table_id != 0xff) {
  ------------------
  |  Branch (1621:21): [True: 5.39k, False: 314]
  ------------------
 1622|  5.39k|                    *usable_protocols &= OFPUTIL_P_TID;
  ------------------
  |  |  103|  5.39k|#define OFPUTIL_P_TID (OFPUTIL_P_OF10_STD_TID | \
  |  |  104|  5.39k|                       OFPUTIL_P_OF10_NXM_TID | \
  |  |  105|  5.39k|                       OFPUTIL_P_OF11_STD |     \
  |  |  106|  5.39k|                       OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|  5.39k|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|  5.39k|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|  5.39k|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|  5.39k|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1623|  5.39k|                }
 1624|  6.36k|            } else if (fields & F_OUT_PORT && !strcmp(name, "out_port")) {
  ------------------
  |  Branch (1624:24): [True: 3.80k, False: 2.55k]
  |  Branch (1624:47): [True: 198, False: 3.61k]
  ------------------
 1625|    198|                if (!ofputil_port_from_string(value, port_map,
  ------------------
  |  Branch (1625:21): [True: 2, False: 196]
  ------------------
 1626|    198|                                              &fm->out_port)) {
 1627|      2|                    error = xasprintf("%s is not a valid OpenFlow port",
 1628|      2|                                      value);
 1629|      2|                }
 1630|  6.16k|            } else if (fields & F_OUT_PORT && !strcmp(name, "out_group")) {
  ------------------
  |  Branch (1630:24): [True: 3.61k, False: 2.55k]
  |  Branch (1630:47): [True: 686, False: 2.92k]
  ------------------
 1631|    686|                *usable_protocols &= OFPUTIL_P_OF11_UP;
  ------------------
  |  |   92|    686|#define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    686|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    686|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    686|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    686|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1632|    686|                if (!ofputil_group_from_string(value, &fm->out_group)) {
  ------------------
  |  Branch (1632:21): [True: 51, False: 635]
  ------------------
 1633|     51|                    error = xasprintf("%s is not a valid OpenFlow group",
 1634|     51|                                      value);
 1635|     51|                }
 1636|  5.47k|            } else if (fields & F_PRIORITY && !strcmp(name, "priority")) {
  ------------------
  |  Branch (1636:24): [True: 3.74k, False: 1.73k]
  |  Branch (1636:47): [True: 363, False: 3.37k]
  ------------------
 1637|    363|                uint16_t priority = 0;
 1638|       |
 1639|    363|                error = str_to_u16(value, name, &priority);
 1640|    363|                fm->priority = priority;
 1641|  5.11k|            } else if (fields & F_TIMEOUT && !strcmp(name, "idle_timeout")) {
  ------------------
  |  Branch (1641:24): [True: 2.55k, False: 2.56k]
  |  Branch (1641:46): [True: 221, False: 2.33k]
  ------------------
 1642|    221|                error = str_to_u16(value, name, &fm->idle_timeout);
 1643|  4.89k|            } else if (fields & F_TIMEOUT && !strcmp(name, "hard_timeout")) {
  ------------------
  |  Branch (1643:24): [True: 2.33k, False: 2.56k]
  |  Branch (1643:46): [True: 194, False: 2.13k]
  ------------------
 1644|    194|                error = str_to_u16(value, name, &fm->hard_timeout);
 1645|  4.69k|            } else if (fields & F_IMPORTANCE && !strcmp(name, "importance")) {
  ------------------
  |  Branch (1645:24): [True: 675, False: 4.02k]
  |  Branch (1645:49): [True: 194, False: 481]
  ------------------
 1646|    194|                error = str_to_u16(value, name, &fm->importance);
 1647|  4.50k|            } else if (!strcmp(name, "cookie")) {
  ------------------
  |  Branch (1647:24): [True: 1.76k, False: 2.74k]
  ------------------
 1648|  1.76k|                char *mask = strchr(value, '/');
 1649|       |
 1650|  1.76k|                if (mask) {
  ------------------
  |  Branch (1650:21): [True: 695, False: 1.06k]
  ------------------
 1651|       |                    /* A mask means we're searching for a cookie. */
 1652|    695|                    if (command == OFPFC_ADD) {
  ------------------
  |  Branch (1652:25): [True: 1, False: 694]
  ------------------
 1653|      1|                        return xstrdup("flow additions cannot use "
 1654|      1|                                       "a cookie mask");
 1655|      1|                    }
 1656|    694|                    *mask = '\0';
 1657|    694|                    error = str_to_be64(value, &fm->cookie);
 1658|    694|                    if (error) {
  ------------------
  |  Branch (1658:25): [True: 10, False: 684]
  ------------------
 1659|     10|                        return error;
 1660|     10|                    }
 1661|    684|                    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|    684|                    if (fm->cookie_mask != htonll(0)) {
  ------------------
  |  Branch (1665:25): [True: 465, False: 219]
  ------------------
 1666|    465|                        *usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
  ------------------
  |  |   87|    465|#define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
  |  |  ------------------
  |  |  |  |   59|    465|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |   88|    465|                               OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    465|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    465|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    465|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    465|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1667|    465|                    }
 1668|  1.06k|                } else {
 1669|       |                    /* No mask means that the cookie is being set. */
 1670|  1.06k|                    if (command != OFPFC_ADD && command != OFPFC_MODIFY
  ------------------
  |  Branch (1670:25): [True: 736, False: 333]
  |  Branch (1670:49): [True: 232, False: 504]
  ------------------
 1671|    232|                        && command != OFPFC_MODIFY_STRICT) {
  ------------------
  |  Branch (1671:28): [True: 1, False: 231]
  ------------------
 1672|      1|                        return xasprintf("cannot set cookie (to match on a "
 1673|      1|                                         "cookie, specify a mask, e.g. "
 1674|      1|                                         "cookie=%s/-1)", value);
 1675|      1|                    }
 1676|  1.06k|                    error = str_to_be64(value, &fm->new_cookie);
 1677|  1.06k|                    fm->modify_cookie = true;
 1678|  1.06k|                }
 1679|  2.74k|            } else if (!strcmp(name, "duration")
  ------------------
  |  Branch (1679:24): [True: 297, False: 2.44k]
  ------------------
 1680|  2.44k|                       || !strcmp(name, "n_packets")
  ------------------
  |  Branch (1680:27): [True: 195, False: 2.24k]
  ------------------
 1681|  2.24k|                       || !strcmp(name, "n_bytes")
  ------------------
  |  Branch (1681:27): [True: 466, False: 1.78k]
  ------------------
 1682|  1.78k|                       || !strcmp(name, "idle_age")
  ------------------
  |  Branch (1682:27): [True: 232, False: 1.55k]
  ------------------
 1683|  1.76k|                       || !strcmp(name, "hard_age")) {
  ------------------
  |  Branch (1683:27): [True: 571, False: 980]
  ------------------
 1684|       |                /* Ignore these, so that users can feed the output of
 1685|       |                 * "ovs-ofctl dump-flows" back into commands that parse
 1686|       |                 * flows. */
 1687|  1.76k|            } else {
 1688|    980|                error = xasprintf("unknown keyword %s", name);
 1689|    980|            }
 1690|  12.4k|        }
 1691|       |
 1692|   162k|        if (error) {
  ------------------
  |  Branch (1692:13): [True: 2.85k, False: 160k]
  ------------------
 1693|  2.85k|            return error;
 1694|  2.85k|        }
 1695|   162k|    }
 1696|       |    /* Copy ethertype to flow->dl_type for matches on packet_type
 1697|       |     * (OFPHTN_ETHERTYPE, ethertype). */
 1698|  19.0k|    if (match.wc.masks.packet_type == OVS_BE32_MAX &&
  ------------------
  |  |   43|  38.1k|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (1698:9): [True: 4.95k, False: 14.1k]
  ------------------
 1699|  4.95k|            pt_ns(match.flow.packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1699:13): [True: 125, False: 4.83k]
  ------------------
 1700|    125|        match.flow.dl_type = pt_ns_type_be(match.flow.packet_type);
 1701|    125|    }
 1702|       |    /* Check for usable protocol interdependencies between match fields. */
 1703|  19.0k|    if (match.flow.dl_type == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1703:9): [True: 981, False: 18.1k]
  ------------------
 1704|    981|        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|    981|        if (wc->masks.nw_proto || wc->masks.nw_tos
  ------------------
  |  Branch (1711:13): [True: 418, False: 563]
  |  Branch (1711:35): [True: 3, False: 560]
  ------------------
 1712|    560|            || wc->masks.tp_src || wc->masks.tp_dst) {
  ------------------
  |  Branch (1712:16): [True: 14, False: 546]
  |  Branch (1712:36): [True: 5, False: 541]
  ------------------
 1713|    440|            *usable_protocols &= OFPUTIL_P_NXM_OXM_ANY;
  ------------------
  |  |   90|    440|#define OFPUTIL_P_NXM_OXM_ANY (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   59|    440|#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|    440|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    440|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    440|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    440|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1714|    440|        }
 1715|    981|    }
 1716|  19.0k|    if (!fm->cookie_mask && fm->new_cookie == OVS_BE64_MAX
  ------------------
  |  |   44|  38.0k|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
  |  Branch (1716:9): [True: 18.9k, False: 166]
  |  Branch (1716:29): [True: 10.9k, False: 7.94k]
  ------------------
 1717|  10.9k|        && (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT)) {
  ------------------
  |  Branch (1717:13): [True: 6.45k, False: 4.53k]
  |  Branch (1717:40): [True: 4.53k, 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|  10.9k|        fm->new_cookie = htonll(0);
 1722|  10.9k|    }
 1723|  19.0k|    if (fields & F_ACTIONS) {
  ------------------
  |  Branch (1723:9): [True: 14.6k, False: 4.42k]
  ------------------
 1724|  14.6k|        enum ofputil_protocol action_usable_protocols;
 1725|  14.6k|        struct ofpbuf ofpacts;
 1726|  14.6k|        char *error;
 1727|       |
 1728|  14.6k|        ofpbuf_init(&ofpacts, 32);
 1729|  14.6k|        struct ofpact_parse_params pp = {
 1730|  14.6k|            .port_map = port_map,
 1731|  14.6k|            .table_map = table_map,
 1732|  14.6k|            .ofpacts = &ofpacts,
 1733|  14.6k|            .usable_protocols = &action_usable_protocols
 1734|  14.6k|        };
 1735|  14.6k|        error = ofpacts_parse_instructions(act_str, &pp);
 1736|  14.6k|        *usable_protocols &= action_usable_protocols;
 1737|  14.6k|        if (!error) {
  ------------------
  |  Branch (1737:13): [True: 7.09k, False: 7.58k]
  ------------------
 1738|  7.09k|            enum ofperr err;
 1739|       |
 1740|  7.09k|            struct ofpact_check_params cp = {
 1741|  7.09k|                .match = &match,
 1742|  7.09k|                .max_ports = OFPP_MAX,
  ------------------
  |  |   33|  7.09k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  7.09k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 1743|  7.09k|                .table_id = fm->table_id,
 1744|  7.09k|                .n_tables = 255,
 1745|  7.09k|            };
 1746|  7.09k|            err = ofpacts_check(ofpacts.data, ofpacts.size, &cp);
 1747|  7.09k|            *usable_protocols &= cp.usable_protocols;
 1748|  7.09k|            if (!err && !*usable_protocols) {
  ------------------
  |  Branch (1748:17): [True: 6.31k, False: 777]
  |  Branch (1748:25): [True: 26, False: 6.28k]
  ------------------
 1749|     26|                err = OFPERR_OFPBAC_MATCH_INCONSISTENT;
 1750|     26|            }
 1751|  7.09k|            if (err) {
  ------------------
  |  Branch (1751:17): [True: 803, False: 6.28k]
  ------------------
 1752|    803|                error = xasprintf("actions are invalid with specified match "
 1753|    803|                                  "(%s)", ofperr_to_string(err));
 1754|    803|            }
 1755|       |
 1756|  7.09k|        }
 1757|  14.6k|        if (error) {
  ------------------
  |  Branch (1757:13): [True: 8.38k, False: 6.28k]
  ------------------
 1758|  8.38k|            ofpbuf_uninit(&ofpacts);
 1759|  8.38k|            return error;
 1760|  8.38k|        }
 1761|       |
 1762|  6.28k|        fm->ofpacts_len = ofpacts.size;
 1763|  6.28k|        fm->ofpacts = ofpbuf_steal_data(&ofpacts);
 1764|  6.28k|    } else {
 1765|  4.42k|        fm->ofpacts_len = 0;
 1766|  4.42k|        fm->ofpacts = NULL;
 1767|  4.42k|    }
 1768|  10.7k|    minimatch_init(&fm->match, &match);
 1769|       |
 1770|       |    return NULL;
 1771|  19.0k|}
ofp-flow.c:parse_subfield:
 1446|  58.5k|{
 1447|  58.5k|    struct mf_subfield sf;
 1448|  58.5k|    char *error;
 1449|       |
 1450|  58.5k|    error = mf_parse_subfield(&sf, name);
 1451|  58.5k|    if (!error) {
  ------------------
  |  Branch (1451:9): [True: 57.9k, False: 552]
  ------------------
 1452|  57.9k|        union mf_value val;
 1453|  57.9k|        char *tail;
 1454|  57.9k|        if (parse_int_string(str_value, (uint8_t *)&val, sf.field->n_bytes,
  ------------------
  |  Branch (1454:13): [True: 39, False: 57.9k]
  ------------------
 1455|  57.9k|                             &tail) || *tail != 0) {
  ------------------
  |  Branch (1455:40): [True: 19, False: 57.9k]
  ------------------
 1456|     58|            return xasprintf("%s: cannot parse integer value: %s", name,
 1457|     58|                             str_value);
 1458|     58|        }
 1459|  57.9k|        if (!bitwise_is_all_zeros(&val, sf.field->n_bytes, sf.n_bits,
  ------------------
  |  Branch (1459:13): [True: 141, False: 57.7k]
  ------------------
 1460|  57.9k|                                  sf.field->n_bytes * 8 - sf.n_bits)) {
 1461|    141|            struct ds ds;
 1462|       |
 1463|    141|            ds_init(&ds);
 1464|    141|            mf_format(sf.field, &val, NULL, NULL, &ds);
 1465|    141|            error = xasprintf("%s: value %s does not fit into %d bits",
 1466|    141|                              name, ds_cstr(&ds), sf.n_bits);
 1467|    141|            ds_destroy(&ds);
 1468|    141|            return error;
 1469|    141|        }
 1470|       |
 1471|  57.7k|        const struct mf_field *field = sf.field;
 1472|  57.7k|        union mf_value value, mask;
 1473|  57.7k|        unsigned int size = field->n_bytes;
 1474|       |
 1475|  57.7k|        mf_get(field, match, &value, &mask);
 1476|  57.7k|        bitwise_copy(&val, size, 0, &value, size, sf.ofs, sf.n_bits);
 1477|  57.7k|        bitwise_one (               &mask,  size, sf.ofs, sf.n_bits);
 1478|  57.7k|        *usable_protocols &= mf_set(field, &value, &mask, match, &error);
 1479|       |
 1480|  57.7k|        match_add_ethernet_prereq(match, sf.field);
 1481|  57.7k|    }
 1482|  58.3k|    return error;
 1483|  58.5k|}

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

ofputil_match_to_ofp10_match:
  184|  5.38k|{
  185|  5.38k|    const struct flow_wildcards *wc = &match->wc;
  186|  5.38k|    uint32_t ofpfw;
  187|       |
  188|       |    /* Figure out most OpenFlow wildcards. */
  189|  5.38k|    ofpfw = 0;
  190|  5.38k|    if (!wc->masks.in_port.ofp_port) {
  ------------------
  |  Branch (190:9): [True: 5.37k, False: 6]
  ------------------
  191|  5.37k|        ofpfw |= OFPFW10_IN_PORT;
  192|  5.37k|    }
  193|  5.38k|    if (!wc->masks.dl_type) {
  ------------------
  |  Branch (193:9): [True: 3.95k, False: 1.42k]
  ------------------
  194|  3.95k|        ofpfw |= OFPFW10_DL_TYPE;
  195|  3.95k|    }
  196|  5.38k|    if (!wc->masks.nw_proto) {
  ------------------
  |  Branch (196:9): [True: 4.99k, False: 387]
  ------------------
  197|  4.99k|        ofpfw |= OFPFW10_NW_PROTO;
  198|  4.99k|    }
  199|  5.38k|    ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
  200|  5.38k|              << OFPFW10_NW_SRC_SHIFT);
  201|  5.38k|    ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
  202|  5.38k|              << OFPFW10_NW_DST_SHIFT);
  203|  5.38k|    if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
  ------------------
  |  |  724|  5.38k|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (203:9): [True: 5.37k, False: 12]
  ------------------
  204|  5.37k|        ofpfw |= OFPFW10_NW_TOS;
  205|  5.37k|    }
  206|  5.38k|    if (!wc->masks.tp_src) {
  ------------------
  |  Branch (206:9): [True: 5.35k, False: 26]
  ------------------
  207|  5.35k|        ofpfw |= OFPFW10_TP_SRC;
  208|  5.35k|    }
  209|  5.38k|    if (!wc->masks.tp_dst) {
  ------------------
  |  Branch (209:9): [True: 5.35k, False: 26]
  ------------------
  210|  5.35k|        ofpfw |= OFPFW10_TP_DST;
  211|  5.35k|    }
  212|  5.38k|    if (eth_addr_is_zero(wc->masks.dl_src)) {
  ------------------
  |  Branch (212:9): [True: 5.37k, False: 6]
  ------------------
  213|  5.37k|        ofpfw |= OFPFW10_DL_SRC;
  214|  5.37k|    }
  215|  5.38k|    if (eth_addr_is_zero(wc->masks.dl_dst)) {
  ------------------
  |  Branch (215:9): [True: 5.37k, False: 12]
  ------------------
  216|  5.37k|        ofpfw |= OFPFW10_DL_DST;
  217|  5.37k|    }
  218|       |
  219|       |    /* Translate VLANs. */
  220|  5.38k|    ofmatch->dl_vlan = htons(0);
  221|  5.38k|    ofmatch->dl_vlan_pcp = 0;
  222|  5.38k|    if (match->wc.masks.vlans[0].tci == htons(0)) {
  ------------------
  |  Branch (222:9): [True: 5.32k, False: 64]
  ------------------
  223|  5.32k|        ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
  224|  5.32k|    } else if (match->wc.masks.vlans[0].tci & htons(VLAN_CFI)
  ------------------
  |  Branch (224:16): [True: 64, False: 0]
  ------------------
  225|     64|               && !(match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (225:19): [True: 22, False: 42]
  ------------------
  226|     22|        ofmatch->dl_vlan = htons(OFP10_VLAN_NONE);
  227|     42|    } else {
  228|     42|        if (!(match->wc.masks.vlans[0].tci & htons(VLAN_VID_MASK))) {
  ------------------
  |  Branch (228:13): [True: 16, False: 26]
  ------------------
  229|     16|            ofpfw |= OFPFW10_DL_VLAN;
  230|     26|        } else {
  231|     26|            ofmatch->dl_vlan =
  232|     26|                htons(vlan_tci_to_vid(match->flow.vlans[0].tci));
  233|     26|        }
  234|       |
  235|     42|        if (!(match->wc.masks.vlans[0].tci & htons(VLAN_PCP_MASK))) {
  ------------------
  |  Branch (235:13): [True: 26, False: 16]
  ------------------
  236|     26|            ofpfw |= OFPFW10_DL_VLAN_PCP;
  237|     26|        } else {
  238|     16|            ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlans[0].tci);
  239|     16|        }
  240|     42|    }
  241|       |
  242|       |    /* Compose most of the match structure. */
  243|  5.38k|    ofmatch->wildcards = htonl(ofpfw);
  244|  5.38k|    ofmatch->in_port = htons(ofp_to_u16(match->flow.in_port.ofp_port));
  245|  5.38k|    ofmatch->dl_src = match->flow.dl_src;
  246|  5.38k|    ofmatch->dl_dst = match->flow.dl_dst;
  247|  5.38k|    ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
  248|  5.38k|    ofmatch->nw_src = match->flow.nw_src;
  249|  5.38k|    ofmatch->nw_dst = match->flow.nw_dst;
  250|  5.38k|    ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
  ------------------
  |  |  724|  5.38k|#define IP_DSCP_MASK 0xfc
  ------------------
  251|  5.38k|    ofmatch->nw_proto = match->flow.nw_proto;
  252|  5.38k|    ofmatch->tp_src = match->flow.tp_src;
  253|  5.38k|    ofmatch->tp_dst = match->flow.tp_dst;
  254|  5.38k|    memset(ofmatch->pad1, '\0', sizeof ofmatch->pad1);
  255|  5.38k|    memset(ofmatch->pad2, '\0', sizeof ofmatch->pad2);
  256|  5.38k|}
ofputil_match_to_ofp11_match:
  453|    197|{
  454|    197|    uint32_t wc = 0;
  455|       |
  456|    197|    memset(ofmatch, 0, sizeof *ofmatch);
  457|    197|    ofmatch->omh.type = htons(OFPMT_STANDARD);
  458|    197|    ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
  459|       |
  460|    197|    if (!match->wc.masks.in_port.ofp_port) {
  ------------------
  |  Branch (460:9): [True: 196, False: 1]
  ------------------
  461|    196|        wc |= OFPFW11_IN_PORT;
  462|    196|    } else {
  463|      1|        ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port.ofp_port);
  464|      1|    }
  465|       |
  466|    197|    ofmatch->dl_src = match->flow.dl_src;
  467|    197|    ofmatch->dl_src_mask = eth_addr_invert(match->wc.masks.dl_src);
  468|    197|    ofmatch->dl_dst = match->flow.dl_dst;
  469|    197|    ofmatch->dl_dst_mask = eth_addr_invert(match->wc.masks.dl_dst);
  470|       |
  471|    197|    if (match->wc.masks.vlans[0].tci == htons(0)) {
  ------------------
  |  Branch (471:9): [True: 194, False: 3]
  ------------------
  472|    194|        wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
  473|    194|    } else if (match->wc.masks.vlans[0].tci & htons(VLAN_CFI)
  ------------------
  |  Branch (473:16): [True: 3, False: 0]
  ------------------
  474|      3|               && !(match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (474:19): [True: 1, False: 2]
  ------------------
  475|      1|        ofmatch->dl_vlan = htons(OFPVID11_NONE);
  476|      1|        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|    197|    if (!match->wc.masks.dl_type) {
  ------------------
  |  Branch (492:9): [True: 143, False: 54]
  ------------------
  493|    143|        wc |= OFPFW11_DL_TYPE;
  494|    143|    } else {
  495|     54|        ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
  496|     54|    }
  497|       |
  498|    197|    if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
  ------------------
  |  |  724|    197|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (498:9): [True: 196, False: 1]
  ------------------
  499|    196|        wc |= OFPFW11_NW_TOS;
  500|    196|    } else {
  501|      1|        ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
  ------------------
  |  |  724|      1|#define IP_DSCP_MASK 0xfc
  ------------------
  502|      1|    }
  503|       |
  504|    197|    if (!match->wc.masks.nw_proto) {
  ------------------
  |  Branch (504:9): [True: 177, False: 20]
  ------------------
  505|    177|        wc |= OFPFW11_NW_PROTO;
  506|    177|    } else {
  507|     20|        ofmatch->nw_proto = match->flow.nw_proto;
  508|     20|    }
  509|       |
  510|    197|    ofmatch->nw_src = match->flow.nw_src;
  511|    197|    ofmatch->nw_src_mask = ~match->wc.masks.nw_src;
  512|    197|    ofmatch->nw_dst = match->flow.nw_dst;
  513|    197|    ofmatch->nw_dst_mask = ~match->wc.masks.nw_dst;
  514|       |
  515|    197|    if (!match->wc.masks.tp_src) {
  ------------------
  |  Branch (515:9): [True: 195, False: 2]
  ------------------
  516|    195|        wc |= OFPFW11_TP_SRC;
  517|    195|    } else {
  518|      2|        ofmatch->tp_src = match->flow.tp_src;
  519|      2|    }
  520|       |
  521|    197|    if (!match->wc.masks.tp_dst) {
  ------------------
  |  Branch (521:9): [True: 196, False: 1]
  ------------------
  522|    196|        wc |= OFPFW11_TP_DST;
  523|    196|    } else {
  524|      1|        ofmatch->tp_dst = match->flow.tp_dst;
  525|      1|    }
  526|       |
  527|    197|    if (!(match->wc.masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK))) {
  ------------------
  |  Branch (527:9): [True: 196, False: 1]
  ------------------
  528|    196|        wc |= OFPFW11_MPLS_LABEL;
  529|    196|    } else {
  530|      1|        ofmatch->mpls_label = htonl(mpls_lse_to_label(
  531|      1|                                        match->flow.mpls_lse[0]));
  532|      1|    }
  533|       |
  534|    197|    if (!(match->wc.masks.mpls_lse[0] & htonl(MPLS_TC_MASK))) {
  ------------------
  |  Branch (534:9): [True: 196, False: 1]
  ------------------
  535|    196|        wc |= OFPFW11_MPLS_TC;
  536|    196|    } else {
  537|      1|        ofmatch->mpls_tc = mpls_lse_to_tc(match->flow.mpls_lse[0]);
  538|      1|    }
  539|       |
  540|    197|    ofmatch->metadata = match->flow.metadata;
  541|    197|    ofmatch->metadata_mask = ~match->wc.masks.metadata;
  542|       |
  543|       |    ofmatch->wildcards = htonl(wc);
  544|    197|}
ofputil_match_typical_len:
  550|    729|{
  551|    729|    switch (protocol) {
  552|      0|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (552:5): [True: 0, False: 729]
  ------------------
  553|      0|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (553:5): [True: 0, False: 729]
  ------------------
  554|      0|        return sizeof(struct ofp10_match);
  555|       |
  556|      0|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (556:5): [True: 0, False: 729]
  ------------------
  557|      0|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (557:5): [True: 0, False: 729]
  ------------------
  558|      0|        return NXM_TYPICAL_LEN;
  ------------------
  |  |  179|      0|#define NXM_TYPICAL_LEN 64
  ------------------
  559|       |
  560|    197|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (560:5): [True: 197, False: 532]
  ------------------
  561|    197|        return sizeof(struct ofp11_match);
  562|       |
  563|    102|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (563:5): [True: 102, False: 627]
  ------------------
  564|    532|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (564:5): [True: 430, False: 299]
  ------------------
  565|    532|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (565:5): [True: 0, False: 729]
  ------------------
  566|    532|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (566:5): [True: 0, False: 729]
  ------------------
  567|    532|        return NXM_TYPICAL_LEN;
  ------------------
  |  |  179|    532|#define NXM_TYPICAL_LEN 64
  ------------------
  568|       |
  569|      0|    default:
  ------------------
  |  Branch (569:5): [True: 0, False: 729]
  ------------------
  570|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  571|    729|    }
  572|    729|}
ofputil_put_ofp11_match:
  586|    729|{
  587|    729|    switch (protocol) {
  ------------------
  |  Branch (587:13): [True: 729, False: 0]
  ------------------
  588|      0|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (588:5): [True: 0, False: 729]
  ------------------
  589|      0|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (589:5): [True: 0, False: 729]
  ------------------
  590|      0|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (590:5): [True: 0, False: 729]
  ------------------
  591|      0|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (591:5): [True: 0, False: 729]
  ------------------
  592|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  593|       |
  594|    197|    case OFPUTIL_P_OF11_STD: {
  ------------------
  |  Branch (594:5): [True: 197, False: 532]
  ------------------
  595|    197|        struct ofp11_match *om;
  596|       |
  597|       |        /* Make sure that no padding is needed. */
  598|    197|        BUILD_ASSERT_DECL(sizeof *om % 8 == 0);
  ------------------
  |  |  270|    197|#define BUILD_ASSERT_DECL(EXPR) _Static_assert(EXPR, #EXPR)
  ------------------
  599|       |
  600|    197|        om = ofpbuf_put_uninit(b, sizeof *om);
  601|    197|        ofputil_match_to_ofp11_match(match, om);
  602|    197|        return sizeof *om;
  603|      0|    }
  604|       |
  605|    102|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (605:5): [True: 102, False: 627]
  ------------------
  606|    532|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (606:5): [True: 430, False: 299]
  ------------------
  607|    532|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (607:5): [True: 0, False: 729]
  ------------------
  608|    532|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (608:5): [True: 0, False: 729]
  ------------------
  609|    532|        return oxm_put_match(b, match,
  610|    532|                             ofputil_protocol_to_ofp_version(protocol));
  611|    729|    }
  612|       |
  613|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  614|    729|}
ofputil_dl_type_to_openflow:
  621|  10.3k|{
  622|  10.3k|    return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
  ------------------
  |  Branch (622:13): [True: 3, False: 10.3k]
  ------------------
  623|  10.3k|            ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
  624|  10.3k|            : flow_dl_type);
  625|  10.3k|}
ofputil_normalize_match:
 1000|  10.7k|{
 1001|       |    ofputil_normalize_match__(match, true);
 1002|  10.7k|}
ofp-match.c:ofputil_netmask_to_wcbits:
   57|  10.7k|{
   58|  10.7k|    return 32 - ip_count_cidr_bits(netmask);
   59|  10.7k|}
ofp-match.c:ofputil_normalize_match__:
  867|  10.7k|{
  868|  10.7k|    enum {
  869|  10.7k|        MAY_NW_ADDR     = 1 << 0, /* nw_src, nw_dst */
  870|  10.7k|        MAY_TP_ADDR     = 1 << 1, /* tp_src, tp_dst */
  871|  10.7k|        MAY_NW_PROTO    = 1 << 2, /* nw_proto */
  872|  10.7k|        MAY_IPVx        = 1 << 3, /* tos, frag, ttl */
  873|  10.7k|        MAY_ARP_SHA     = 1 << 4, /* arp_sha */
  874|  10.7k|        MAY_ARP_THA     = 1 << 5, /* arp_tha */
  875|  10.7k|        MAY_IPV6        = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
  876|  10.7k|        MAY_ND_TARGET   = 1 << 7, /* nd_target */
  877|  10.7k|        MAY_MPLS        = 1 << 8, /* mpls label and tc */
  878|  10.7k|        MAY_ETHER       = 1 << 9, /* dl_src, dl_dst */
  879|  10.7k|    } may_match;
  880|       |
  881|  10.7k|    struct flow_wildcards wc = match->wc;
  882|  10.7k|    ovs_be16 dl_type;
  883|       |
  884|       |    /* Figure out what fields may be matched. */
  885|       |    /* Check the packet_type first and extract dl_type. */
  886|  10.7k|    if (wc.masks.packet_type == 0 || match_has_default_packet_type(match)) {
  ------------------
  |  Branch (886:9): [True: 6.36k, False: 4.34k]
  |  Branch (886:38): [True: 3.68k, False: 665]
  ------------------
  887|  10.0k|        may_match = MAY_ETHER;
  888|  10.0k|        dl_type = match->flow.dl_type;
  889|  10.0k|    } else if (wc.masks.packet_type == OVS_BE32_MAX &&
  ------------------
  |  |   43|  1.33k|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (889:16): [True: 665, False: 0]
  ------------------
  890|    665|               pt_ns(match->flow.packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (890:16): [True: 109, False: 556]
  ------------------
  891|    109|        may_match = 0;
  892|    109|        dl_type = pt_ns_type_be(match->flow.packet_type);
  893|    556|    } else {
  894|    556|        may_match = 0;
  895|    556|        dl_type = 0;
  896|    556|    }
  897|  10.7k|    if (dl_type == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (897:9): [True: 925, False: 9.78k]
  ------------------
  898|    925|        may_match |= MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
  899|    925|        if (match->flow.nw_proto == IPPROTO_TCP ||
  ------------------
  |  Branch (899:13): [True: 129, False: 796]
  ------------------
  900|    796|            match->flow.nw_proto == IPPROTO_UDP ||
  ------------------
  |  Branch (900:13): [True: 242, False: 554]
  ------------------
  901|    554|            match->flow.nw_proto == IPPROTO_SCTP ||
  ------------------
  |  Branch (901:13): [True: 65, False: 489]
  ------------------
  902|    498|            match->flow.nw_proto == IPPROTO_ICMP) {
  ------------------
  |  Branch (902:13): [True: 62, False: 427]
  ------------------
  903|    498|            may_match |= MAY_TP_ADDR;
  904|    498|        }
  905|  9.78k|    } else if (dl_type == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (905:16): [True: 814, False: 8.97k]
  ------------------
  906|    814|        may_match |= MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
  907|    814|        if (match->flow.nw_proto == IPPROTO_TCP ||
  ------------------
  |  Branch (907:13): [True: 81, False: 733]
  ------------------
  908|    733|            match->flow.nw_proto == IPPROTO_UDP ||
  ------------------
  |  Branch (908:13): [True: 33, False: 700]
  ------------------
  909|    700|            match->flow.nw_proto == IPPROTO_SCTP) {
  ------------------
  |  Branch (909:13): [True: 26, False: 674]
  ------------------
  910|    140|            may_match |= MAY_TP_ADDR;
  911|    674|        } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
  ------------------
  |  Branch (911:20): [True: 138, False: 536]
  ------------------
  912|    138|            may_match |= MAY_TP_ADDR;
  913|    138|            if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
  ------------------
  |  Branch (913:17): [True: 25, False: 113]
  ------------------
  914|     25|                may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
  915|    113|            } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
  ------------------
  |  Branch (915:24): [True: 28, False: 85]
  ------------------
  916|     28|                may_match |= MAY_ND_TARGET | MAY_ARP_THA;
  917|     28|            }
  918|    138|        }
  919|  8.97k|    } else if (dl_type == htons(ETH_TYPE_ARP) ||
  ------------------
  |  Branch (919:16): [True: 40, False: 8.93k]
  ------------------
  920|  8.93k|               dl_type == htons(ETH_TYPE_RARP)) {
  ------------------
  |  Branch (920:16): [True: 22, False: 8.91k]
  ------------------
  921|     62|        may_match |= MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
  922|  8.91k|    } else if (eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (922:16): [True: 210, False: 8.70k]
  ------------------
  923|    210|        may_match |= MAY_MPLS;
  924|    210|    }
  925|       |
  926|       |    /* Clear the fields that may not be matched. */
  927|  10.7k|    if (!(may_match & MAY_ETHER)) {
  ------------------
  |  Branch (927:9): [True: 665, False: 10.0k]
  ------------------
  928|    665|        wc.masks.dl_src = wc.masks.dl_dst = eth_addr_zero;
  929|    665|    }
  930|  10.7k|    if (!(may_match & MAY_NW_ADDR)) {
  ------------------
  |  Branch (930:9): [True: 9.72k, False: 987]
  ------------------
  931|  9.72k|        wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
  932|  9.72k|    }
  933|  10.7k|    if (!(may_match & MAY_TP_ADDR)) {
  ------------------
  |  Branch (933:9): [True: 9.93k, False: 776]
  ------------------
  934|  9.93k|        wc.masks.tp_src = wc.masks.tp_dst = htons(0);
  935|  9.93k|    }
  936|  10.7k|    if (!(may_match & MAY_NW_PROTO)) {
  ------------------
  |  Branch (936:9): [True: 8.91k, False: 1.80k]
  ------------------
  937|  8.91k|        wc.masks.nw_proto = 0;
  938|  8.91k|    }
  939|  10.7k|    if (!(may_match & MAY_IPVx)) {
  ------------------
  |  Branch (939:9): [True: 8.97k, False: 1.73k]
  ------------------
  940|  8.97k|        wc.masks.nw_tos = 0;
  941|  8.97k|        wc.masks.nw_ttl = 0;
  942|  8.97k|    }
  943|  10.7k|    if (!(may_match & MAY_ARP_SHA)) {
  ------------------
  |  Branch (943:9): [True: 10.6k, False: 87]
  ------------------
  944|  10.6k|        WC_UNMASK_FIELD(&wc, arp_sha);
  ------------------
  |  |  205|  10.6k|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
  945|  10.6k|    }
  946|  10.7k|    if (!(may_match & MAY_ARP_THA)) {
  ------------------
  |  Branch (946:9): [True: 10.6k, False: 90]
  ------------------
  947|  10.6k|        WC_UNMASK_FIELD(&wc, arp_tha);
  ------------------
  |  |  205|  10.6k|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
  948|  10.6k|    }
  949|  10.7k|    if (!(may_match & MAY_IPV6)) {
  ------------------
  |  Branch (949:9): [True: 9.89k, False: 814]
  ------------------
  950|  9.89k|        wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
  951|  9.89k|        wc.masks.ipv6_label = htonl(0);
  952|  9.89k|    }
  953|  10.7k|    if (!(may_match & MAY_ND_TARGET)) {
  ------------------
  |  Branch (953:9): [True: 10.6k, False: 53]
  ------------------
  954|  10.6k|        wc.masks.nd_target = in6addr_any;
  955|  10.6k|    }
  956|  10.7k|    if (!(may_match & MAY_MPLS)) {
  ------------------
  |  Branch (956:9): [True: 10.5k, False: 210]
  ------------------
  957|  10.5k|        memset(wc.masks.mpls_lse, 0, sizeof wc.masks.mpls_lse);
  958|  10.5k|    }
  959|       |
  960|       |    /* Log any changes. */
  961|  10.7k|    if (!flow_wildcards_equal(&wc, &match->wc)) {
  ------------------
  |  Branch (961:9): [True: 467, False: 10.2k]
  ------------------
  962|    467|        bool log = may_log && !VLOG_DROP_INFO(&rl);
  ------------------
  |  |  235|    934|#define VLOG_DROP_INFO(RL) vlog_should_drop(&this_module, VLL_INFO, RL)
  ------------------
  |  Branch (962:20): [True: 467, False: 0]
  |  Branch (962:31): [True: 0, False: 467]
  ------------------
  963|    467|        char *pre = (log
  ------------------
  |  Branch (963:22): [True: 0, False: 467]
  ------------------
  964|    467|                     ? match_to_string(match, NULL, OFP_DEFAULT_PRIORITY)
  ------------------
  |  |  138|      0|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
  965|    467|                     : NULL);
  966|       |
  967|    467|        match->wc = wc;
  968|    467|        match_zero_wildcarded_fields(match);
  969|       |
  970|    467|        if (log) {
  ------------------
  |  Branch (970:13): [True: 0, False: 467]
  ------------------
  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|    467|    }
  979|  10.7k|}

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|  10.4k|{
  581|  10.4k|    return ofpraw_alloc_xid(raw, version, alloc_xid(), extra_tailroom);
  582|  10.4k|}
ofpraw_alloc_xid:
  588|  10.4k|{
  589|  10.4k|    struct ofpbuf *buf = ofpbuf_new(0);
  590|  10.4k|    ofpraw_put__(raw, version, xid, extra_tailroom, buf);
  591|  10.4k|    return buf;
  592|  10.4k|}
ofpmsg_update_length:
  882|  10.4k|{
  883|  10.4k|    struct ofp_header *oh = ofpbuf_at_assert(buf, 0, sizeof *oh);
  884|       |    oh->length = htons(buf->size);
  885|  10.4k|}
ofp-msgs.c:alloc_xid:
  185|  10.4k|{
  186|  10.4k|    static atomic_count next_xid = ATOMIC_COUNT_INIT(1);
  ------------------
  |  |  441|  10.4k|#define ATOMIC_COUNT_INIT(VALUE) { VALUE }
  ------------------
  187|       |
  188|       |    return htonl(atomic_count_inc(&next_xid));
  189|  10.4k|}
ofp-msgs.c:ofpraw_put__:
  712|  10.4k|{
  713|  10.4k|    const struct raw_info *info = raw_info_get(raw);
  714|  10.4k|    const struct raw_instance *instance = raw_instance_get(info, version);
  715|  10.4k|    const struct ofphdrs *hdrs = &instance->hdrs;
  716|  10.4k|    struct ofp_header *oh;
  717|       |
  718|  10.4k|    ofpbuf_prealloc_tailroom(buf, (instance->hdrs_len + info->min_body
  719|  10.4k|                                   + extra_tailroom));
  720|  10.4k|    buf->header = ofpbuf_put_uninit(buf, instance->hdrs_len);
  721|  10.4k|    buf->msg = ofpbuf_tail(buf);
  722|       |
  723|  10.4k|    oh = buf->header;
  724|  10.4k|    oh->version = version;
  725|  10.4k|    oh->type = hdrs->type;
  726|  10.4k|    oh->length = htons(buf->size);
  727|  10.4k|    oh->xid = xid;
  728|       |
  729|  10.4k|    if (hdrs->type == OFPT_VENDOR) {
  ------------------
  |  |   32|  10.4k|#define OFPT_VENDOR 4
  ------------------
  |  Branch (729:9): [True: 4.37k, False: 6.11k]
  ------------------
  730|  4.37k|        struct ofp_vendor_header *ovh = buf->header;
  731|       |
  732|  4.37k|        ovh->vendor = htonl(hdrs->vendor);
  733|  4.37k|        ovh->subtype = htonl(hdrs->subtype);
  734|  6.11k|    } else if (version == OFP10_VERSION
  ------------------
  |  Branch (734:16): [True: 5.38k, False: 729]
  ------------------
  735|  5.38k|               && (hdrs->type == OFPT10_STATS_REQUEST ||
  ------------------
  |  |   33|  10.7k|#define OFPT10_STATS_REQUEST 16
  ------------------
  |  Branch (735:20): [True: 0, False: 5.38k]
  ------------------
  736|  5.38k|                   hdrs->type == OFPT10_STATS_REPLY)) {
  ------------------
  |  |   34|  5.38k|#define OFPT10_STATS_REPLY 17
  ------------------
  |  Branch (736:20): [True: 0, False: 5.38k]
  ------------------
  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|  6.11k|    } else if (version != OFP10_VERSION
  ------------------
  |  Branch (755:16): [True: 729, False: 5.38k]
  ------------------
  756|    729|               && (hdrs->type == OFPT11_STATS_REQUEST ||
  ------------------
  |  |   35|  1.45k|#define OFPT11_STATS_REQUEST 18
  ------------------
  |  Branch (756:20): [True: 0, False: 729]
  ------------------
  757|    729|                   hdrs->type == OFPT11_STATS_REPLY)) {
  ------------------
  |  |   36|    729|#define OFPT11_STATS_REPLY 19
  ------------------
  |  Branch (757:20): [True: 0, False: 729]
  ------------------
  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|  10.4k|}
ofp-msgs.c:raw_info_get:
 1307|  10.4k|{
 1308|  10.4k|    ofpmsgs_init();
 1309|       |
 1310|  10.4k|    ovs_assert(raw < ARRAY_SIZE(raw_infos));
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(raw < ARRAY_SIZE(raw_infos));
  ------------------
  |  |  297|  10.4k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  10.4k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  10.4k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  10.4k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  10.4k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  10.4k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1311|  10.4k|    return &raw_infos[raw];
 1312|  10.4k|}
ofp-msgs.c:ofpmsgs_init:
 1363|  10.4k|{
 1364|  10.4k|    static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
  ------------------
  |  |  134|  10.4k|    {                                           \
  |  |  135|  10.4k|        false,                                  \
  |  |  136|  10.4k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  ------------------
  |  |  |  |   45|  10.4k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|  10.4k|                                "<unlocked>" }
  |  |  ------------------
  |  |  137|  10.4k|    }
  ------------------
 1365|  10.4k|    const struct raw_info *info;
 1366|       |
 1367|  10.4k|    if (!ovsthread_once_start(&once)) {
  ------------------
  |  Branch (1367:9): [True: 10.4k, False: 1]
  ------------------
 1368|  10.4k|        return;
 1369|  10.4k|    }
 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|  10.4k|{
 1317|  10.4k|    ovs_assert(version >= info->min_version && version <= info->max_version);
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (1317:16): [True: 10.4k, False: 0]
  |  Branch (1317:48): [True: 10.4k, False: 0]
  ------------------
 1318|  10.4k|    return &info->instances[version - info->min_version];
 1319|  10.4k|}

ofputil_packet_in_reason_to_string:
  710|  6.23k|{
  711|  6.23k|    switch (reason) {
  712|    912|    case OFPR_NO_MATCH:
  ------------------
  |  Branch (712:5): [True: 912, False: 5.32k]
  ------------------
  713|    912|        return "no_match";
  714|    912|    case OFPR_ACTION:
  ------------------
  |  Branch (714:5): [True: 912, False: 5.32k]
  ------------------
  715|    912|        return "action";
  716|    911|    case OFPR_INVALID_TTL:
  ------------------
  |  Branch (716:5): [True: 911, False: 5.32k]
  ------------------
  717|    911|        return "invalid_ttl";
  718|    910|    case OFPR_ACTION_SET:
  ------------------
  |  Branch (718:5): [True: 910, False: 5.32k]
  ------------------
  719|    910|        return "action_set";
  720|    909|    case OFPR_GROUP:
  ------------------
  |  Branch (720:5): [True: 909, False: 5.32k]
  ------------------
  721|    909|        return "group";
  722|    866|    case OFPR_PACKET_OUT:
  ------------------
  |  Branch (722:5): [True: 866, False: 5.36k]
  ------------------
  723|    866|        return "packet_out";
  724|    746|    case OFPR_EXPLICIT_MISS:
  ------------------
  |  Branch (724:5): [True: 746, False: 5.48k]
  ------------------
  725|    813|    case OFPR_IMPLICIT_MISS:
  ------------------
  |  Branch (725:5): [True: 67, False: 6.16k]
  ------------------
  726|    813|        return "";
  727|       |
  728|      0|    case OFPR_N_REASONS:
  ------------------
  |  Branch (728:5): [True: 0, False: 6.23k]
  ------------------
  729|      0|    default:
  ------------------
  |  Branch (729:5): [True: 0, False: 6.23k]
  ------------------
  730|      0|        snprintf(reasonbuf, bufsize, "%d", (int) reason);
  731|      0|        return reasonbuf;
  732|  6.23k|    }
  733|  6.23k|}
ofputil_packet_in_reason_from_string:
  738|    912|{
  739|    912|    int i;
  740|       |
  741|  6.30k|    for (i = 0; i < OFPR_N_REASONS; i++) {
  ------------------
  |  Branch (741:17): [True: 6.23k, False: 67]
  ------------------
  742|  6.23k|        char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
  743|  6.23k|        const char *reason_s;
  744|       |
  745|  6.23k|        reason_s = ofputil_packet_in_reason_to_string(i, reasonbuf,
  746|  6.23k|                                                      sizeof reasonbuf);
  747|  6.23k|        if (!strcasecmp(s, reason_s)) {
  ------------------
  |  Branch (747:13): [True: 845, False: 5.38k]
  ------------------
  748|    845|            *reason = i;
  749|    845|            return true;
  750|    845|        }
  751|  6.23k|    }
  752|     67|    return false;
  753|    912|}

str_to_u8:
   39|  9.33k|{
   40|  9.33k|    int value;
   41|       |
   42|  9.33k|    if (!str_to_int(str, 0, &value) || value < 0 || value > 255) {
  ------------------
  |  Branch (42:9): [True: 21, False: 9.30k]
  |  Branch (42:40): [True: 31, False: 9.27k]
  |  Branch (42:53): [True: 27, False: 9.25k]
  ------------------
   43|     79|        return xasprintf("invalid %s \"%s\"", name, str);
   44|     79|    }
   45|  9.25k|    *valuep = value;
   46|       |    return NULL;
   47|  9.33k|}
str_to_u16:
   57|  17.7k|{
   58|  17.7k|    int value;
   59|       |
   60|  17.7k|    if (!str_to_int(str, 0, &value) || value < 0 || value > 65535) {
  ------------------
  |  Branch (60:9): [True: 475, False: 17.3k]
  |  Branch (60:40): [True: 40, False: 17.2k]
  |  Branch (60:53): [True: 44, False: 17.2k]
  ------------------
   61|    559|        return xasprintf("invalid %s \"%s\"", name, str);
   62|    559|    }
   63|  17.2k|    *valuep = value;
   64|       |    return NULL;
   65|  17.7k|}
str_to_u32:
   73|  7.33k|{
   74|  7.33k|    unsigned long long value;
   75|       |
   76|  7.33k|    if (!str[0]) {
  ------------------
  |  Branch (76:9): [True: 45, False: 7.29k]
  ------------------
   77|     45|        return xstrdup("missing required numeric argument");
   78|     45|    }
   79|       |
   80|  7.29k|    if (!str_to_ullong(str, 0, &value) || value > UINT32_MAX) {
  ------------------
  |  Branch (80:9): [True: 609, False: 6.68k]
  |  Branch (80:43): [True: 38, False: 6.64k]
  ------------------
   81|    647|        return xasprintf("invalid numeric format %s", str);
   82|    647|    }
   83|  6.64k|    *valuep = value;
   84|       |    return NULL;
   85|  7.29k|}
str_to_u64:
   93|  4.74k|{
   94|  4.74k|    char *tail;
   95|  4.74k|    uint64_t value;
   96|       |
   97|  4.74k|    if (!str[0]) {
  ------------------
  |  Branch (97:9): [True: 27, False: 4.71k]
  ------------------
   98|     27|        return xstrdup("missing required numeric argument");
   99|     27|    }
  100|       |
  101|  4.74k|    errno = 0;
  102|  4.71k|    value = strtoull(str, &tail, 0);
  103|  4.71k|    if (errno == EINVAL || errno == ERANGE || *tail) {
  ------------------
  |  Branch (103:9): [True: 0, False: 4.71k]
  |  Branch (103:28): [True: 2, False: 4.71k]
  |  Branch (103:47): [True: 33, False: 4.67k]
  ------------------
  104|     35|        return xasprintf("invalid numeric format %s", str);
  105|     35|    }
  106|  4.67k|    *valuep = value;
  107|       |    return NULL;
  108|  4.71k|}
str_to_be64:
  117|  3.35k|{
  118|  3.35k|    uint64_t value = 0;
  119|  3.35k|    char *error;
  120|       |
  121|  3.35k|    error = str_to_u64(str, &value);
  122|  3.35k|    if (!error) {
  ------------------
  |  Branch (122:9): [True: 3.30k, False: 46]
  ------------------
  123|  3.30k|        *valuep = htonll(value);
  124|  3.30k|    }
  125|  3.35k|    return error;
  126|  3.35k|}
str_to_mac:
  134|  1.50k|{
  135|  1.50k|    if (!ovs_scan(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(*mac))) {
  ------------------
  |  |  403|  1.50k|#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.50k|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
  |  Branch (135:9): [True: 9, False: 1.50k]
  ------------------
  136|      9|        return xasprintf("invalid mac address %s", str);
  137|      9|    }
  138|  1.50k|    return NULL;
  139|  1.50k|}
str_to_ip:
  147|  1.65k|{
  148|  1.65k|    struct in_addr in_addr;
  149|       |
  150|  1.65k|    if (lookup_ip(str, &in_addr)) {
  ------------------
  |  Branch (150:9): [True: 5, False: 1.65k]
  ------------------
  151|      5|        return xasprintf("%s: could not convert to IP address", str);
  152|      5|    }
  153|  1.65k|    *ip = in_addr.s_addr;
  154|       |    return NULL;
  155|  1.65k|}
str_to_connhelper:
  163|    352|{
  164|    352|    if (!strcmp(str, "ftp")) {
  ------------------
  |  Branch (164:9): [True: 108, False: 244]
  ------------------
  165|    108|        *alg = IPPORT_FTP;
  ------------------
  |  |  695|    108|#define IPPORT_FTP  21
  ------------------
  166|    108|        return NULL;
  167|    108|    }
  168|    244|    if (!strcmp(str, "tftp")) {
  ------------------
  |  Branch (168:9): [True: 196, False: 48]
  ------------------
  169|    196|        *alg = IPPORT_TFTP;
  ------------------
  |  |  699|    196|#define IPPORT_TFTP  69
  ------------------
  170|    196|        return NULL;
  171|    196|    }
  172|     48|    return xasprintf("invalid conntrack helper \"%s\"", str);
  173|    244|}
ofp_parse_protocol:
  177|   164k|{
  178|   164k|    static const struct ofp_protocol protocols[] = {
  179|   164k|        { "ip", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  180|   164k|        { "ipv4", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  181|   164k|        { "ip4", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  182|   164k|        { "arp", ETH_TYPE_ARP, 0 },
  ------------------
  |  |  408|   164k|#define ETH_TYPE_ARP           0x0806
  ------------------
  183|   164k|        { "icmp", ETH_TYPE_IP, IPPROTO_ICMP },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  184|   164k|        { "tcp", ETH_TYPE_IP, IPPROTO_TCP },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  185|   164k|        { "udp", ETH_TYPE_IP, IPPROTO_UDP },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  186|   164k|        { "sctp", ETH_TYPE_IP, IPPROTO_SCTP },
  ------------------
  |  |  407|   164k|#define ETH_TYPE_IP            0x0800
  ------------------
  187|   164k|        { "ipv6", ETH_TYPE_IPV6, 0 },
  ------------------
  |  |  413|   164k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  188|   164k|        { "ip6", ETH_TYPE_IPV6, 0 },
  ------------------
  |  |  413|   164k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  189|   164k|        { "icmp6", ETH_TYPE_IPV6, IPPROTO_ICMPV6 },
  ------------------
  |  |  413|   164k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  190|   164k|        { "tcp6", ETH_TYPE_IPV6, IPPROTO_TCP },
  ------------------
  |  |  413|   164k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  191|   164k|        { "udp6", ETH_TYPE_IPV6, IPPROTO_UDP },
  ------------------
  |  |  413|   164k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  192|   164k|        { "sctp6", ETH_TYPE_IPV6, IPPROTO_SCTP },
  ------------------
  |  |  413|   164k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  193|   164k|        { "rarp", ETH_TYPE_RARP, 0},
  ------------------
  |  |  415|   164k|#define ETH_TYPE_RARP          0x8035
  ------------------
  194|   164k|        { "mpls", ETH_TYPE_MPLS, 0 },
  ------------------
  |  |  416|   164k|#define ETH_TYPE_MPLS          0x8847
  ------------------
  195|   164k|        { "mplsm", ETH_TYPE_MPLS_MCAST, 0 },
  ------------------
  |  |  417|   164k|#define ETH_TYPE_MPLS_MCAST    0x8848
  ------------------
  196|   164k|    };
  197|   164k|    const struct ofp_protocol *p;
  198|       |
  199|  2.82M|    for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
  ------------------
  |  |  297|  2.82M|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  2.82M|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  2.82M|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  2.82M|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.82M|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  2.82M|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (199:25): [True: 2.67M, False: 153k]
  ------------------
  200|  2.67M|        if (!strcmp(p->name, name)) {
  ------------------
  |  Branch (200:13): [True: 11.2k, False: 2.66M]
  ------------------
  201|  11.2k|            *p_out = p;
  202|  11.2k|            return true;
  203|  11.2k|        }
  204|  2.67M|    }
  205|   153k|    *p_out = NULL;
  206|       |    return false;
  207|   164k|}
ofp_parse_field:
  219|  76.1k|{
  220|  76.1k|    union mf_value value, mask;
  221|  76.1k|    char *error;
  222|       |
  223|  76.1k|    if (!*s) {
  ------------------
  |  Branch (223:9): [True: 38.5k, False: 37.5k]
  ------------------
  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|  38.5k|        s = "0/0";
  227|  38.5k|    }
  228|       |
  229|  76.1k|    error = mf_parse(mf, s, port_map, &value, &mask);
  230|  76.1k|    if (!error) {
  ------------------
  |  Branch (230:9): [True: 75.4k, False: 692]
  ------------------
  231|  75.4k|        *usable_protocols &= mf_set(mf, &value, &mask, match, &error);
  232|  75.4k|        match_add_ethernet_prereq(match, mf);
  233|  75.4k|    }
  234|  76.1k|    return error;
  235|  76.1k|}
ofp_extract_actions:
  239|  15.6k|{
  240|  15.6k|    s = strstr(s, "action");
  241|  15.6k|    if (s) {
  ------------------
  |  Branch (241:9): [True: 15.4k, False: 186]
  ------------------
  242|  15.4k|        *s = '\0';
  243|  15.4k|        s = strchr(s + 1, '=');
  244|  15.4k|        return s ? s + 1 : NULL;
  ------------------
  |  Branch (244:16): [True: 15.4k, False: 1]
  ------------------
  245|  15.4k|    } else {
  246|       |        return NULL;
  247|    186|    }
  248|  15.6k|}
ofputil_parse_key_value:
  294|   909k|{
  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|   909k|    *stringp += strspn(*stringp, ", \t\r\n");
  298|   909k|    if (**stringp == '\0') {
  ------------------
  |  Branch (298:9): [True: 175k, False: 733k]
  ------------------
  299|   175k|        *keyp = *valuep = NULL;
  300|   175k|        return false;
  301|   175k|    }
  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|   733k|    char *key = *stringp;
  306|   733k|    size_t key_len = strcspn(key, ":=(, \t\r\n");
  307|   733k|    char key_delim = key[key_len];
  308|   733k|    key[key_len] = '\0';
  309|   733k|    *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|   733k|    const char *value_delims;
  320|   733k|    if (key_delim == ':' || key_delim == '=') {
  ------------------
  |  Branch (320:9): [True: 228k, False: 504k]
  |  Branch (320:29): [True: 308k, False: 196k]
  ------------------
  321|   537k|        value_delims = ", \t\r\n";
  322|   537k|    } else if (key_delim == '(') {
  ------------------
  |  Branch (322:16): [True: 61.3k, False: 135k]
  ------------------
  323|  61.3k|        value_delims = ")";
  324|   135k|    } else {
  325|   135k|        *keyp = key;
  326|   135k|        *valuep = key + key_len; /* Empty string. */
  327|   135k|        return true;
  328|   135k|    }
  329|       |
  330|       |    /* Extract the value.  Advance the input position past the value and
  331|       |     * delimiter. */
  332|   598k|    char *value = *stringp;
  333|   598k|    size_t value_len = parse_value(value, value_delims);
  334|   598k|    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|   598k|    if (key_delim == '(' && value[value_len] == ')' &&
  ------------------
  |  Branch (339:9): [True: 61.3k, False: 537k]
  |  Branch (339:29): [True: 53.6k, False: 7.66k]
  ------------------
  340|  53.6k|        value[value_len + 1] == '-' && value[value_len + 2] == '>') {
  ------------------
  |  Branch (340:9): [True: 1.44k, False: 52.2k]
  |  Branch (340:40): [True: 1.19k, False: 249]
  ------------------
  341|  1.19k|        value_delims = ", \t\r\n";
  342|  1.19k|        value_len += parse_value(&value[value_len], value_delims);
  343|  1.19k|        value_delim = value[value_len];
  344|  1.19k|    }
  345|   598k|    value[value_len] = '\0';
  346|   598k|    *stringp += value_len + (value_delim != '\0');
  347|       |
  348|   598k|    *keyp = key;
  349|   598k|    *valuep = value;
  350|       |    return true;
  351|   733k|}
ofp-parse.c:parse_value:
  252|   599k|{
  253|   599k|    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|  16.7M|    while (!strchr(delimiters, s[n])) {
  ------------------
  |  Branch (259:12): [True: 16.1M, False: 596k]
  ------------------
  260|  16.1M|        if (s[n] == '(') {
  ------------------
  |  Branch (260:13): [True: 23.2k, False: 16.1M]
  ------------------
  261|  23.2k|            int level = 0;
  262|  44.8M|            do {
  263|  44.8M|                switch (s[n]) {
  ------------------
  |  Branch (263:25): [True: 309k, False: 44.5M]
  ------------------
  264|  3.26k|                case '\0':
  ------------------
  |  Branch (264:17): [True: 3.26k, False: 44.8M]
  ------------------
  265|  3.26k|                    return n;
  266|   194k|                case '(':
  ------------------
  |  Branch (266:17): [True: 194k, False: 44.6M]
  ------------------
  267|   194k|                    level++;
  268|   194k|                    break;
  269|   111k|                case ')':
  ------------------
  |  Branch (269:17): [True: 111k, False: 44.7M]
  ------------------
  270|   111k|                    level--;
  271|   111k|                    break;
  272|  44.8M|                }
  273|  44.8M|                n++;
  274|  44.8M|            } while (level > 0);
  ------------------
  |  Branch (274:22): [True: 44.8M, False: 19.9k]
  ------------------
  275|  16.1M|        } else {
  276|  16.1M|            n++;
  277|  16.1M|        }
  278|  16.1M|    }
  279|   596k|    return n;
  280|   599k|}

ofputil_port_map_get_name:
   53|     19|{
   54|     19|    struct namemap_node *node
   55|     19|        = (map
  ------------------
  |  Branch (55:12): [True: 0, False: 19]
  ------------------
   56|     19|           ? namemap_find_by_number(&map->map, ofp_to_u16(ofp_port))
   57|     19|           : NULL);
   58|     19|    return node && !node->duplicate ? node->name : NULL;
  ------------------
  |  Branch (58:12): [True: 0, False: 19]
  |  Branch (58:20): [True: 0, False: 0]
  ------------------
   59|     19|}
ofputil_port_map_get_number:
   64|  4.38k|{
   65|  4.38k|    struct namemap_node *node
   66|  4.38k|        = map ? namemap_find_by_name(&map->map, name) : NULL;
  ------------------
  |  Branch (66:11): [True: 0, False: 4.38k]
  ------------------
   67|  4.38k|    return node && !node->duplicate ? u16_to_ofp(node->number) : OFPP_NONE;
  ------------------
  |  |   47|  4.38k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  4.38k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (67:12): [True: 0, False: 4.38k]
  |  Branch (67:20): [True: 0, False: 0]
  ------------------
   68|  4.38k|}
ofputil_port_from_ofp11:
   84|  1.50k|{
   85|  1.50k|    uint32_t ofp11_port_h = ntohl(ofp11_port);
   86|       |
   87|  1.50k|    if (ofp11_port_h < ofp_to_u16(OFPP_MAX)) {
  ------------------
  |  |   33|  1.50k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  1.50k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (87:9): [True: 418, False: 1.08k]
  ------------------
   88|    418|        *ofp10_port = u16_to_ofp(ofp11_port_h);
   89|    418|        return 0;
   90|  1.08k|    } else if (ofp11_port_h >= ofp11_to_u32(OFPP11_MAX)) {
  ------------------
  |  |   71|  1.08k|#define OFPP11_MAX    OFP11_PORT_C(0xffffff00)
  |  |  ------------------
  |  |  |  |  159|  1.08k|#define OFP11_PORT_C(X) ((OVS_FORCE ofp11_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (90:16): [True: 451, False: 635]
  ------------------
   91|    451|        *ofp10_port = u16_to_ofp(ofp11_port_h - OFPP11_OFFSET);
  ------------------
  |  |   72|    451|#define OFPP11_OFFSET 0xffff0000    /* OFPP11_MAX - OFPP_MAX */
  ------------------
   92|    451|        return 0;
   93|    635|    } else {
   94|    635|        *ofp10_port = OFPP_NONE;
  ------------------
  |  |   47|    635|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|    635|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
   95|       |
   96|    635|        static struct vlog_rate_limit rll = VLOG_RATE_LIMIT_INIT(1, 5);
  ------------------
  |  |  110|    635|        {                                                                 \
  |  |  111|    635|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|  2.54k|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 635]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|    635|            0,                              /* first_dropped */           \
  |  |  113|    635|            0,                              /* last_dropped */            \
  |  |  114|    635|            0,                              /* n_dropped */               \
  |  |  115|    635|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|    635|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|    635|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|    635|        }
  ------------------
   97|    635|        VLOG_WARN_RL(&rll, "port %"PRIu32" is outside the supported "
  ------------------
  |  |  224|    635|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    635|    do {                                                                \
  |  |  |  |  288|    635|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    635|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 635]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    635|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 635]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   98|    635|                     "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
   99|    635|                     ofp11_port_h, ofp_to_u16(OFPP_MAX) - 1,
  100|    635|                     ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
  101|       |
  102|    635|        return OFPERR_OFPBAC_BAD_OUT_PORT;
  103|    635|    }
  104|  1.50k|}
ofputil_port_to_ofp11:
  112|  35.6k|{
  113|       |    return htonl(ofp_to_u16(ofp10_port) < ofp_to_u16(OFPP_MAX)
  ------------------
  |  Branch (113:12): [True: 31.6k, False: 4.04k]
  ------------------
  114|  35.6k|                 ? ofp_to_u16(ofp10_port)
  115|  35.6k|                 : ofp_to_u16(ofp10_port) + OFPP11_OFFSET);
  116|  35.6k|}
ofputil_port_from_string:
  152|   222k|{
  153|   222k|    unsigned int port32; /* int is at least 32 bits wide. */
  154|       |
  155|   222k|    if (*s == '-') {
  ------------------
  |  Branch (155:9): [True: 7, False: 222k]
  ------------------
  156|      7|        VLOG_WARN("Negative value %s is not a valid port number.", s);
  ------------------
  |  |  209|      7|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|      7|    do {                                                \
  |  |  |  |  281|      7|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|      7|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 7]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|      7|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 7]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  157|      7|        return false;
  158|      7|    }
  159|   222k|    *portp = 0;
  160|   222k|    if (str_to_uint(s, 10, &port32)) {
  ------------------
  |  Branch (160:9): [True: 212k, False: 9.43k]
  ------------------
  161|   212k|        if (port32 < ofp_to_u16(OFPP_MAX)) {
  ------------------
  |  |   33|   212k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|   212k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (161:13): [True: 207k, False: 5.54k]
  ------------------
  162|       |            /* Pass. */
  163|   207k|        } else if (port32 < ofp_to_u16(OFPP_FIRST_RESV)) {
  ------------------
  |  |   34|  5.54k|#define OFPP_FIRST_RESV OFP_PORT_C(0xfff7) /* First assigned reserved port. */
  |  |  ------------------
  |  |  |  |  157|  5.54k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (163:20): [True: 279, False: 5.26k]
  ------------------
  164|    279|            VLOG_WARN("port %u is a reserved OF1.0 port number that will "
  ------------------
  |  |  209|    279|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|    279|    do {                                                \
  |  |  |  |  281|    279|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|    279|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 279]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|    279|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 279]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  165|    279|                      "be translated to %u when talking to an OF1.1 or "
  166|    279|                      "later controller", port32, port32 + OFPP11_OFFSET);
  167|  5.26k|        } else if (port32 <= ofp_to_u16(OFPP_LAST_RESV)) {
  ------------------
  |  |   35|  5.26k|#define OFPP_LAST_RESV  OFP_PORT_C(0xffff) /* Last assigned reserved port. */
  |  |  ------------------
  |  |  |  |  157|  5.26k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (167:20): [True: 4.98k, False: 276]
  ------------------
  168|  4.98k|            char name[OFP_MAX_PORT_NAME_LEN];
  169|       |
  170|  4.98k|            ofputil_port_to_string(u16_to_ofp(port32), NULL,
  171|  4.98k|                                   name, sizeof name);
  172|  4.98k|            VLOG_WARN_ONCE("referring to port %s as %"PRIu32" is deprecated "
  ------------------
  |  |  240|  4.98k|#define VLOG_WARN_ONCE(...) VLOG_ONCE(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  294|  4.98k|    do {                                                                \
  |  |  |  |  295|  4.98k|        static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|  4.98k|    {                                           \
  |  |  |  |  |  |  135|  4.98k|        false,                                  \
  |  |  |  |  |  |  136|  4.98k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   45|  4.98k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |  |  |  |  |   46|  4.98k|                                "<unlocked>" }
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  137|  4.98k|    }
  |  |  |  |  ------------------
  |  |  |  |  296|  4.98k|        if (ovsthread_once_start(&once)) {                              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (296:13): [True: 1, False: 4.98k]
  |  |  |  |  ------------------
  |  |  |  |  297|      1|            vlog(&this_module, LEVEL, __VA_ARGS__);                     \
  |  |  |  |  298|      1|            ovsthread_once_done(&once);                                 \
  |  |  |  |  299|      1|        }                                                               \
  |  |  |  |  300|  4.98k|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (300:14): [Folded, False: 4.98k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  173|  4.98k|                           "for compatibility with OpenFlow 1.1 and later",
  174|  4.98k|                           name, port32);
  175|  4.98k|        } else if (port32 < ofp11_to_u32(OFPP11_MAX)) {
  ------------------
  |  |   71|    276|#define OFPP11_MAX    OFP11_PORT_C(0xffffff00)
  |  |  ------------------
  |  |  |  |  159|    276|#define OFP11_PORT_C(X) ((OVS_FORCE ofp11_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (175:20): [True: 77, False: 199]
  ------------------
  176|     77|            VLOG_WARN("port %u is outside the supported range 0 through "
  ------------------
  |  |  209|     77|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|     77|    do {                                                \
  |  |  |  |  281|     77|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|     77|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 77]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|     77|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 77]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  177|     77|                      "%x or 0x%x through 0x%"PRIx32, port32,
  178|     77|                      UINT16_MAX, ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
  179|     77|            return false;
  180|    199|        } else {
  181|    199|            port32 -= OFPP11_OFFSET;
  ------------------
  |  |   72|    199|#define OFPP11_OFFSET 0xffff0000    /* OFPP11_MAX - OFPP_MAX */
  ------------------
  182|    199|        }
  183|       |
  184|   212k|        *portp = u16_to_ofp(port32);
  185|   212k|        return true;
  186|   212k|    } else {
  187|  9.43k|        struct pair {
  188|  9.43k|            const char *name;
  189|  9.43k|            ofp_port_t value;
  190|  9.43k|        };
  191|  9.43k|        static const struct pair pairs[] = {
  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  193|  9.43k|            OFPUTIL_NAMED_PORTS_WITH_NONE
  ------------------
  |  |  131|  9.43k|        OFPUTIL_NAMED_PORTS                     \
  |  |  ------------------
  |  |  |  |  119|  9.43k|        OFPUTIL_NAMED_PORT(IN_PORT)             \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|  9.43k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  120|  9.43k|        OFPUTIL_NAMED_PORT(TABLE)               \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   40|  9.43k|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  121|  9.43k|        OFPUTIL_NAMED_PORT(NORMAL)              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   41|  9.43k|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  122|  9.43k|        OFPUTIL_NAMED_PORT(FLOOD)               \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   42|  9.43k|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  123|  9.43k|        OFPUTIL_NAMED_PORT(ALL)                 \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|  9.43k|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  124|  9.43k|        OFPUTIL_NAMED_PORT(CONTROLLER)          \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   45|  9.43k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  125|  9.43k|        OFPUTIL_NAMED_PORT(LOCAL)               \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   46|  9.43k|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  126|  9.43k|        OFPUTIL_NAMED_PORT(ANY)                 \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   80|  9.43k|#define OFPP_ANY OFPP_NONE
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   47|  9.43k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  127|  9.43k|        OFPUTIL_NAMED_PORT(UNSET)
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   38|  9.43k|#define OFPP_UNSET      OFP_PORT_C(0xfff7) /* For OXM_OF_ACTSET_OUTPUT only. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  132|  9.43k|        OFPUTIL_NAMED_PORT(NONE)
  |  |  ------------------
  |  |  |  |  192|  9.43k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|  9.43k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|  9.43k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  194|  9.43k|#undef OFPUTIL_NAMED_PORT
  195|  9.43k|        };
  196|  9.43k|        const struct pair *p;
  197|       |
  198|  64.2k|        for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
  ------------------
  |  |  297|  64.2k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  64.2k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  64.2k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  64.2k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  64.2k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  64.2k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (198:25): [True: 59.8k, False: 4.41k]
  ------------------
  199|  59.8k|            if (!strcasecmp(s, p->name)) {
  ------------------
  |  Branch (199:17): [True: 5.01k, False: 54.8k]
  ------------------
  200|  5.01k|                *portp = p->value;
  201|  5.01k|                return true;
  202|  5.01k|            }
  203|  59.8k|        }
  204|       |
  205|  4.41k|        ofp_port_t ofp_port = 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))
  |  |  ------------------
  ------------------
  206|  4.41k|        if (s[0] != '"') {
  ------------------
  |  Branch (206:13): [True: 4.36k, False: 50]
  ------------------
  207|  4.36k|            ofp_port = ofputil_port_map_get_number(port_map, s);
  208|  4.36k|        } else {
  209|     50|            size_t length = strlen(s);
  210|     50|            char *name = NULL;
  211|     50|            if (length > 1
  ------------------
  |  Branch (211:17): [True: 49, False: 1]
  ------------------
  212|     49|                && s[length - 1] == '"'
  ------------------
  |  Branch (212:20): [True: 38, False: 11]
  ------------------
  213|     38|                && json_string_unescape(s + 1, length - 2, &name)) {
  ------------------
  |  Branch (213:20): [True: 23, False: 15]
  ------------------
  214|     23|                ofp_port = ofputil_port_map_get_number(port_map, name);
  215|     23|            }
  216|     50|            free(name);
  217|     50|        }
  218|  4.41k|        if (ofp_port != 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 (218:13): [True: 0, False: 4.41k]
  ------------------
  219|      0|            *portp = ofp_port;
  220|      0|            return true;
  221|      0|        }
  222|       |
  223|  4.41k|        return false;
  224|  4.41k|    }
  225|   222k|}
ofputil_port_get_reserved_name:
  229|  5.01k|{
  230|  5.01k|    switch (port) {
  231|      0|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  232|      0|        OFPUTIL_NAMED_PORTS
  ------------------
  |  |  119|  1.87k|        OFPUTIL_NAMED_PORT(IN_PORT)             \
  |  |  ------------------
  |  |  |  |  231|  1.87k|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   39|  1.87k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|  1.87k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 1.87k, False: 3.13k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  120|  1.87k|        OFPUTIL_NAMED_PORT(TABLE)               \
  |  |  ------------------
  |  |  |  |  231|    283|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   40|    283|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    283|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 283, False: 4.73k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|    473|        OFPUTIL_NAMED_PORT(NORMAL)              \
  |  |  ------------------
  |  |  |  |  231|    473|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|    473|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    473|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 473, False: 4.54k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  122|    473|        OFPUTIL_NAMED_PORT(FLOOD)               \
  |  |  ------------------
  |  |  |  |  231|    354|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|    354|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    354|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 354, False: 4.65k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  123|    554|        OFPUTIL_NAMED_PORT(ALL)                 \
  |  |  ------------------
  |  |  |  |  231|    554|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|    554|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    554|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 554, False: 4.45k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  124|    554|        OFPUTIL_NAMED_PORT(CONTROLLER)          \
  |  |  ------------------
  |  |  |  |  231|    199|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   45|    199|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    199|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 199, False: 4.81k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  125|    791|        OFPUTIL_NAMED_PORT(LOCAL)               \
  |  |  ------------------
  |  |  |  |  231|    791|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   46|    791|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    791|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 791, False: 4.22k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|    791|        OFPUTIL_NAMED_PORT(ANY)                 \
  |  |  ------------------
  |  |  |  |  231|    245|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|    245|#define OFPP_ANY OFPP_NONE
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    245|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|    245|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 245, False: 4.76k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  127|    245|        OFPUTIL_NAMED_PORT(UNSET)
  |  |  ------------------
  |  |  |  |  231|    220|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    220|#define OFPP_UNSET      OFP_PORT_C(0xfff7) /* For OXM_OF_ACTSET_OUTPUT only. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    220|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 220, False: 4.79k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  233|      0|#undef OFPUTIL_NAMED_PORT
  234|       |
  235|     19|    default:
  ------------------
  |  Branch (235:5): [True: 19, False: 4.99k]
  ------------------
  236|       |        return NULL;
  237|  5.01k|    }
  238|  5.01k|}
ofputil_format_port:
  246|     28|{
  247|     28|    const char *reserved_name = ofputil_port_get_reserved_name(port);
  248|     28|    if (reserved_name) {
  ------------------
  |  Branch (248:9): [True: 9, False: 19]
  ------------------
  249|      9|        ds_put_cstr(s, reserved_name);
  250|      9|        return;
  251|      9|    }
  252|       |
  253|     19|    const char *port_name = ofputil_port_map_get_name(port_map, port);
  254|     19|    if (port_name) {
  ------------------
  |  Branch (254:9): [True: 0, False: 19]
  ------------------
  255|      0|        namemap_put_name(port_name, s);
  256|      0|        return;
  257|      0|    }
  258|       |
  259|     19|    ds_put_format(s, "%"PRIu32, port);
  260|     19|}
ofputil_port_to_string:
  270|  4.98k|{
  271|  4.98k|    const char *reserved_name = ofputil_port_get_reserved_name(port);
  272|  4.98k|    if (reserved_name) {
  ------------------
  |  Branch (272:9): [True: 4.98k, False: 0]
  ------------------
  273|  4.98k|        ovs_strlcpy(namebuf, reserved_name, bufsize);
  274|  4.98k|        return;
  275|  4.98k|    }
  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|  1.30k|{
  324|  1.30k|    size_t start_ofs = ofpprop_start(msg, type);
  325|  1.30k|    ofpbuf_put(msg, value, len);
  326|  1.30k|    ofpprop_end(msg, start_ofs);
  327|  1.30k|}
ofpprop_put_be16:
  354|    244|{
  355|    244|    if (!ofpprop_is_experimenter(type)) {
  ------------------
  |  Branch (355:9): [True: 244, 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|    244|        ovs_be16 padded_value[2] = { value, 0 };
  360|    244|        ofpprop_put(msg, type, padded_value, sizeof padded_value);
  361|    244|    } 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|    244|}
ofpprop_put_be32:
  371|    344|{
  372|    344|    ofpprop_put(msg, type, &value, sizeof value);
  373|    344|}
ofpprop_put_u8:
  395|    197|{
  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|    197|    ofpprop_put(msg, type, &value, 1);
  399|    197|}
ofpprop_put_u16:
  404|    244|{
  405|       |    ofpprop_put_be16(msg, type, htons(value));
  406|    244|}
ofpprop_put_u32:
  411|    344|{
  412|       |    ofpprop_put_be32(msg, type, htonl(value));
  413|    344|}
ofpprop_put_flag:
  447|  6.29k|{
  448|  6.29k|    size_t start = ofpprop_start(msg, type);
  449|  6.29k|    ofpprop_end(msg, start);
  450|  6.29k|}
ofpprop_start:
  478|  7.59k|{
  479|  7.59k|    size_t start_ofs = msg->size;
  480|  7.59k|    if (!ofpprop_is_experimenter(type)) {
  ------------------
  |  Branch (480:9): [True: 7.59k, False: 0]
  ------------------
  481|  7.59k|        struct ofp_prop_header *oph = ofpbuf_put_uninit(msg, sizeof *oph);
  482|  7.59k|        oph->type = htons(type);
  483|  7.59k|        oph->len = htons(4);
  484|  7.59k|    } 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|  7.59k|    return start_ofs;
  493|  7.59k|}
ofpprop_end:
  501|  7.59k|{
  502|  7.59k|    struct ofp_prop_header *oph;
  503|       |
  504|  7.59k|    oph = ofpbuf_at_assert(msg, start_ofs, sizeof *oph);
  505|  7.59k|    oph->len = htons(msg->size - start_ofs);
  506|  7.59k|    ofpbuf_padto(msg, ROUND_UP(msg->size, 8));
  ------------------
  |  |  303|  7.59k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  7.59k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  507|  7.59k|}

ofputil_protocol_to_ofp_version:
   99|  11.0k|{
  100|  11.0k|    switch (protocol) {
  ------------------
  |  Branch (100:13): [True: 11.0k, False: 0]
  ------------------
  101|  5.10k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (101:5): [True: 5.10k, False: 5.91k]
  ------------------
  102|  5.38k|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (102:5): [True: 283, False: 10.7k]
  ------------------
  103|  9.74k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (103:5): [True: 4.35k, False: 6.66k]
  ------------------
  104|  9.75k|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (104:5): [True: 15, False: 11.0k]
  ------------------
  105|  9.75k|        return OFP10_VERSION;
  106|    197|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (106:5): [True: 197, False: 10.8k]
  ------------------
  107|    197|        return OFP11_VERSION;
  108|    204|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (108:5): [True: 204, False: 10.8k]
  ------------------
  109|    204|        return OFP12_VERSION;
  110|    860|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (110:5): [True: 860, False: 10.1k]
  ------------------
  111|    860|        return OFP13_VERSION;
  112|      0|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (112:5): [True: 0, False: 11.0k]
  ------------------
  113|      0|        return OFP14_VERSION;
  114|      0|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (114:5): [True: 0, False: 11.0k]
  ------------------
  115|      0|        return OFP15_VERSION;
  116|  11.0k|    }
  117|       |
  118|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  119|  11.0k|}
ofputil_protocol_to_string:
  254|  13.1k|{
  255|  13.1k|    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|  13.1k|    switch (protocol) {
  ------------------
  |  Branch (259:13): [True: 13.1k, False: 0]
  ------------------
  260|  4.35k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (260:5): [True: 4.35k, False: 8.76k]
  ------------------
  261|  4.35k|        return "NXM-table_id";
  262|       |
  263|    313|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (263:5): [True: 313, False: 12.8k]
  ------------------
  264|    313|        return "NXM+table_id";
  265|       |
  266|  5.10k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (266:5): [True: 5.10k, False: 8.01k]
  ------------------
  267|  5.10k|        return "OpenFlow10-table_id";
  268|       |
  269|    566|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (269:5): [True: 566, False: 12.5k]
  ------------------
  270|    566|        return "OpenFlow10+table_id";
  271|       |
  272|    958|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (272:5): [True: 958, False: 12.1k]
  ------------------
  273|    958|        return "OpenFlow11";
  274|       |
  275|    102|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (275:5): [True: 102, False: 13.0k]
  ------------------
  276|    102|        return "OXM-OpenFlow12";
  277|       |
  278|    860|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (278:5): [True: 860, False: 12.2k]
  ------------------
  279|    860|        return "OXM-OpenFlow13";
  280|       |
  281|    430|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (281:5): [True: 430, False: 12.6k]
  ------------------
  282|    430|        return "OXM-OpenFlow14";
  283|       |
  284|    430|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (284:5): [True: 430, False: 12.6k]
  ------------------
  285|    430|        return "OXM-OpenFlow15";
  286|  13.1k|    }
  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|  10.7k|{
  306|  10.7k|    struct ds s;
  307|       |
  308|  10.7k|    ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
  ------------------
  |  |   62|  10.7k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
  ------------------
  |  |  100|  10.7k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  309|  10.7k|    if (protocols == 0) {
  ------------------
  |  Branch (309:9): [True: 225, False: 10.4k]
  ------------------
  310|    225|        return xstrdup("none");
  311|    225|    }
  312|       |
  313|  10.4k|    ds_init(&s);
  314|  27.5k|    while (protocols) {
  ------------------
  |  Branch (314:12): [True: 17.0k, False: 10.4k]
  ------------------
  315|  17.0k|        const struct proto_abbrev *p;
  316|  17.0k|        int i;
  317|       |
  318|  17.0k|        if (s.length) {
  ------------------
  |  Branch (318:13): [True: 6.58k, False: 10.4k]
  ------------------
  319|  6.58k|            ds_put_char(&s, ',');
  320|  6.58k|        }
  321|       |
  322|  51.2k|        for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
  ------------------
  |  |   46|  51.2k|#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
  |  |  ------------------
  |  |  |  |  297|  51.2k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  |  |  ------------------
  |  |  |  |  |  |   46|  51.2k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   41|  51.2k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   47|  51.2k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  51.2k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|  51.2k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (322:33): [True: 48.6k, False: 2.63k]
  ------------------
  323|  48.6k|            if ((protocols & p->protocol) == p->protocol) {
  ------------------
  |  Branch (323:17): [True: 14.4k, False: 34.1k]
  ------------------
  324|  14.4k|                ds_put_cstr(&s, p->name);
  325|  14.4k|                protocols &= ~p->protocol;
  326|  14.4k|                goto match;
  327|  14.4k|            }
  328|  48.6k|        }
  329|       |
  330|  15.8k|        for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
  ------------------
  |  Branch (330:21): [True: 15.8k, False: 0]
  ------------------
  331|  15.8k|            enum ofputil_protocol bit = 1u << i;
  332|       |
  333|  15.8k|            if (protocols & bit) {
  ------------------
  |  Branch (333:17): [True: 2.63k, False: 13.2k]
  ------------------
  334|  2.63k|                ds_put_cstr(&s, ofputil_protocol_to_string(bit));
  335|  2.63k|                protocols &= ~bit;
  336|  2.63k|                goto match;
  337|  2.63k|            }
  338|  15.8k|        }
  339|  2.63k|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  340|       |
  341|  17.0k|    match: ;
  342|  17.0k|    }
  343|  10.4k|    return ds_steal_cstr(&s);
  344|  10.4k|}

ofputil_table_map_get_number:
  132|    289|{
  133|    289|    struct namemap_node *node
  134|    289|        = map ? namemap_find_by_name(&map->map, name) : NULL;
  ------------------
  |  Branch (134:11): [True: 0, False: 289]
  ------------------
  135|    289|    return node && !node->duplicate ? node->number : UINT8_MAX;
  ------------------
  |  Branch (135:12): [True: 0, False: 289]
  |  Branch (135:20): [True: 0, False: 0]
  ------------------
  136|    289|}
ofputil_table_from_string:
  158|  10.0k|{
  159|  10.0k|    *tablep = 0;
  160|  10.0k|    if (*s == '-') {
  ------------------
  |  Branch (160:9): [True: 1, False: 10.0k]
  ------------------
  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|  10.0k|    unsigned int table;
  166|  10.0k|    if (str_to_uint(s, 10, &table)) {
  ------------------
  |  Branch (166:9): [True: 1.28k, False: 8.79k]
  ------------------
  167|  1.28k|        if (table > 255) {
  ------------------
  |  Branch (167:13): [True: 48, False: 1.23k]
  ------------------
  168|     48|            VLOG_WARN("table %u is outside the supported range 0 through 255",
  ------------------
  |  |  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]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  169|     48|                      table);
  170|     48|            return false;
  171|     48|        }
  172|  1.23k|        *tablep = table;
  173|  1.23k|        return true;
  174|  8.79k|    } else {
  175|  8.79k|        if (s[0] != '"') {
  ------------------
  |  Branch (175:13): [True: 56, False: 8.73k]
  ------------------
  176|     56|            table = ofputil_table_map_get_number(table_map, s);
  177|  8.73k|        } else {
  178|  8.73k|            size_t length = strlen(s);
  179|  8.73k|            char *name = NULL;
  180|  8.73k|            if (length > 1
  ------------------
  |  Branch (180:17): [True: 8.19k, False: 545]
  ------------------
  181|  8.19k|                && s[length - 1] == '"'
  ------------------
  |  Branch (181:20): [True: 6.28k, False: 1.90k]
  ------------------
  182|  6.28k|                && json_string_unescape(s + 1, length - 2, &name)) {
  ------------------
  |  Branch (182:20): [True: 233, False: 6.05k]
  ------------------
  183|    233|                table = ofputil_table_map_get_number(table_map, name);
  184|    233|            }
  185|  8.73k|            free(name);
  186|  8.73k|        }
  187|  8.79k|        if (table != UINT8_MAX) {
  ------------------
  |  Branch (187:13): [True: 8.50k, False: 289]
  ------------------
  188|  8.50k|            *tablep = table;
  189|  8.50k|            return true;
  190|  8.50k|        }
  191|       |
  192|    289|        return false;
  193|  8.79k|    }
  194|  10.0k|}

ofpbuf_use_stack:
   81|  2.90k|{
   82|  2.90k|    ofpbuf_use__(b, base, allocated, 0, OFPBUF_STACK);
   83|  2.90k|}
ofpbuf_init:
  140|  25.1k|{
  141|  25.1k|    ofpbuf_use(b, size ? xmalloc(size) : NULL, size);
  ------------------
  |  Branch (141:19): [True: 14.6k, False: 10.4k]
  ------------------
  142|  25.1k|}
ofpbuf_uninit:
  147|  18.8k|{
  148|  18.8k|    if (b) {
  ------------------
  |  Branch (148:9): [True: 18.8k, False: 0]
  ------------------
  149|  18.8k|        if (b->source == OFPBUF_MALLOC) {
  ------------------
  |  Branch (149:13): [True: 18.8k, False: 0]
  ------------------
  150|  18.8k|            free(b->base);
  151|  18.8k|        }
  152|  18.8k|    }
  153|  18.8k|}
ofpbuf_new:
  167|  10.4k|{
  168|  10.4k|    struct ofpbuf *b = xmalloc(sizeof *b);
  169|  10.4k|    ofpbuf_init(b, size);
  170|  10.4k|    return b;
  171|  10.4k|}
ofpbuf_prealloc_tailroom:
  306|  3.34M|{
  307|  3.34M|    if (size > ofpbuf_tailroom(b)) {
  ------------------
  |  Branch (307:9): [True: 408k, False: 2.93M]
  ------------------
  308|   408k|        ofpbuf_resize__(b, ofpbuf_headroom(b), MAX(size, 64));
  ------------------
  |  |   95|   408k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 49.9k, False: 358k]
  |  |  ------------------
  ------------------
  309|   408k|    }
  310|  3.34M|}
ofpbuf_prealloc_headroom:
  317|  97.6k|{
  318|  97.6k|    if (size > ofpbuf_headroom(b)) {
  ------------------
  |  Branch (318:9): [True: 0, False: 97.6k]
  ------------------
  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|  97.6k|}
ofpbuf_padto:
  368|   134k|{
  369|   134k|    if (b->size < length) {
  ------------------
  |  Branch (369:9): [True: 12.1k, False: 122k]
  ------------------
  370|  12.1k|        ofpbuf_put_zeros(b, length - b->size);
  371|  12.1k|    }
  372|   134k|}
ofpbuf_put_uninit:
  401|  3.33M|{
  402|  3.33M|    void *p;
  403|  3.33M|    ofpbuf_prealloc_tailroom(b, size);
  404|  3.33M|    p = ofpbuf_tail(b);
  405|  3.33M|    b->size += size;
  406|  3.33M|    return p;
  407|  3.33M|}
ofpbuf_put_zeros:
  414|   652k|{
  415|   652k|    void *dst = ofpbuf_put_uninit(b, size);
  416|   652k|    nullable_memset(dst, 0, size);
  417|   652k|    return dst;
  418|   652k|}
ofpbuf_put:
  425|  2.25M|{
  426|  2.25M|    if (!size) {
  ------------------
  |  Branch (426:9): [True: 13.3k, False: 2.23M]
  ------------------
  427|  13.3k|        return ofpbuf_tail(b);
  428|  13.3k|    }
  429|       |
  430|  2.23M|    void *dst = ofpbuf_put_uninit(b, size);
  431|  2.23M|    memcpy(dst, p, size);
  432|  2.23M|    return dst;
  433|  2.25M|}
ofpbuf_put_hex:
  442|  4.45k|{
  443|  4.45k|    size_t initial_size = b->size;
  444|  1.25M|    for (;;) {
  445|  1.25M|        uint8_t byte;
  446|  1.25M|        bool ok;
  447|       |
  448|  1.25M|        s += strspn(s, " .\t\r\n");
  449|  1.25M|        byte = hexits_value(s, 2, &ok);
  450|  1.25M|        if (!ok) {
  ------------------
  |  Branch (450:13): [True: 4.45k, False: 1.25M]
  ------------------
  451|  4.45k|            if (n) {
  ------------------
  |  Branch (451:17): [True: 0, False: 4.45k]
  ------------------
  452|      0|                *n = b->size - initial_size;
  453|      0|            }
  454|  4.45k|            return CONST_CAST(char *, s);
  ------------------
  |  |   85|  4.45k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  4.45k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  4.45k|     (TYPE) (POINTER))
  ------------------
  455|  4.45k|        }
  456|       |
  457|  1.25M|        ofpbuf_put(b, &byte, 1);
  458|  1.25M|        s += 2;
  459|  1.25M|    }
  460|  4.45k|}
ofpbuf_push_uninit:
  481|   102k|{
  482|   102k|    if (!size) {
  ------------------
  |  Branch (482:9): [True: 4.53k, False: 97.6k]
  ------------------
  483|  4.53k|        return b->data;
  484|  4.53k|    }
  485|       |
  486|  97.6k|    ofpbuf_prealloc_headroom(b, size);
  487|  97.6k|    b->data = (char*)b->data - size;
  488|  97.6k|    b->size += size;
  489|  97.6k|    return b->data;
  490|   102k|}
ofpbuf_insert:
  520|    380|{
  521|    380|    if (offset < b->size) {
  ------------------
  |  Branch (521:9): [True: 11, False: 369]
  ------------------
  522|     11|        ofpbuf_put_uninit(b, n); /* b->size gets increased. */
  523|     11|        memmove((char *) b->data + offset + n, (char *) b->data + offset,
  524|     11|                b->size - offset - n);
  525|     11|        memcpy((char *) b->data + offset, data, n);
  526|    369|    } else {
  527|    369|        ovs_assert(offset == b->size);
  ------------------
  |  |   62|    369|#define ovs_assert ovs_ignore
  ------------------
  528|    369|        ofpbuf_put(b, data, n);
  529|    369|    }
  530|    380|}
ofpbuf_steal_data:
  537|  6.28k|{
  538|  6.28k|    void *p;
  539|       |
  540|  6.28k|    if (b->source == OFPBUF_MALLOC && b->data == b->base) {
  ------------------
  |  Branch (540:9): [True: 6.28k, False: 0]
  |  Branch (540:39): [True: 6.28k, False: 0]
  ------------------
  541|  6.28k|        p = b->data;
  542|  6.28k|    } 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|  6.28k|    b->base = NULL;
  549|  6.28k|    b->data = NULL;
  550|  6.28k|    b->header = NULL;
  551|       |    b->msg = NULL;
  552|  6.28k|    return p;
  553|  6.28k|}
ofpbuf.c:ofpbuf_use__:
   37|  28.0k|{
   38|  28.0k|    b->base = base;
   39|  28.0k|    b->data = base;
   40|  28.0k|    b->size = size;
   41|       |
   42|  28.0k|    ofpbuf_init__(b, allocated, source);
   43|  28.0k|}
ofpbuf.c:ofpbuf_init__:
   26|  28.0k|{
   27|  28.0k|    b->allocated = allocated;
   28|  28.0k|    b->source = source;
   29|  28.0k|    b->header = NULL;
   30|       |    b->msg = NULL;
   31|  28.0k|    ovs_list_poison(&b->list_node);
   32|  28.0k|}
ofpbuf.c:ofpbuf_use:
   51|  25.1k|{
   52|  25.1k|    ofpbuf_use__(b, base, allocated, 0, OFPBUF_MALLOC);
   53|  25.1k|}
ofpbuf.c:ofpbuf_resize__:
  252|   408k|{
  253|   408k|    void *new_base, *new_data;
  254|   408k|    size_t new_allocated;
  255|       |
  256|   408k|    new_allocated = new_headroom + b->size + new_tailroom;
  257|       |
  258|   408k|    switch (b->source) {
  259|   408k|    case OFPBUF_MALLOC:
  ------------------
  |  Branch (259:5): [True: 408k, False: 0]
  ------------------
  260|   408k|        if (new_headroom == ofpbuf_headroom(b)) {
  ------------------
  |  Branch (260:13): [True: 408k, False: 0]
  ------------------
  261|   408k|            new_base = xrealloc(b->base, new_allocated);
  262|   408k|        } 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|   408k|        break;
  268|       |
  269|      0|    case OFPBUF_STACK:
  ------------------
  |  Branch (269:5): [True: 0, False: 408k]
  ------------------
  270|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  271|       |
  272|      0|    case OFPBUF_STUB:
  ------------------
  |  Branch (272:5): [True: 0, False: 408k]
  ------------------
  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: 408k]
  ------------------
  279|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  280|   408k|    }
  281|       |
  282|   408k|    b->allocated = new_allocated;
  283|   408k|    b->base = new_base;
  284|       |
  285|   408k|    new_data = (char *) new_base + new_headroom;
  286|   408k|    if (b->data != new_data) {
  ------------------
  |  Branch (286:9): [True: 38.5k, False: 369k]
  ------------------
  287|  38.5k|        if (b->header) {
  ------------------
  |  Branch (287:13): [True: 24.4k, False: 14.0k]
  ------------------
  288|  24.4k|            ptrdiff_t header_offset = (char *) b->header - (char *) b->data;
  289|       |
  290|  24.4k|            b->header = (char *) new_data + header_offset;
  291|  24.4k|        }
  292|  38.5k|        if (b->msg) {
  ------------------
  |  Branch (292:13): [True: 1.05k, False: 37.4k]
  ------------------
  293|  1.05k|            ptrdiff_t msg_offset = (char *) b->msg - (char *) b->data;
  294|       |
  295|  1.05k|            b->msg = (char *) new_data + msg_offset;
  296|  1.05k|        }
  297|  38.5k|        b->data = new_data;
  298|  38.5k|    }
  299|   408k|}

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

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|   683k|    {                                                                   \
  247|   683k|        return NAME##_get_unsafe();                                     \
  248|   683k|    }
util.c:counter_util_xalloc_get_unsafe:
  239|   683k|    {                                                                   \
  240|   683k|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|   683k|        return &var;                                                    \
  242|   683k|    }                                                                   \
flow.c:counter_miniflow_malloc_get:
  246|  10.7k|    {                                                                   \
  247|  10.7k|        return NAME##_get_unsafe();                                     \
  248|  10.7k|    }
flow.c:counter_miniflow_malloc_get_unsafe:
  239|  10.7k|    {                                                                   \
  240|  10.7k|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|  10.7k|        return &var;                                                    \
  242|  10.7k|    }                                                                   \
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|    709|{
   83|    709|    return (((uint64_t) ntohs(ea.be16[0]) << 32)
   84|    709|            | ((uint64_t) ntohs(ea.be16[1]) << 16)
   85|       |            | ntohs(ea.be16[2]));
   86|    709|}
set_mpls_lse_ttl:
  337|    706|{
  338|    706|    *lse &= ~htonl(MPLS_TTL_MASK);
  339|       |    *lse |= htonl((ttl << MPLS_TTL_SHIFT) & MPLS_TTL_MASK);
  340|    706|}
set_mpls_lse_tc:
  345|    673|{
  346|    673|    *lse &= ~htonl(MPLS_TC_MASK);
  347|       |    *lse |= htonl((tc << MPLS_TC_SHIFT) & MPLS_TC_MASK);
  348|    673|}
set_mpls_lse_label:
  353|    687|{
  354|    687|    *lse &= ~htonl(MPLS_LABEL_MASK);
  355|       |    *lse |= htonl((ntohl(label) << MPLS_LABEL_SHIFT) & MPLS_LABEL_MASK);
  356|    687|}
set_mpls_lse_bos:
  361|    569|{
  362|    569|    *lse &= ~htonl(MPLS_BOS_MASK);
  363|       |    *lse |= htonl((bos << MPLS_BOS_SHIFT) & MPLS_BOS_MASK);
  364|    569|}
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|  10.7k|{
  678|       |    return 32 - ctz32(ntohl(netmask));
  679|  10.7k|}
ip_format_masked:
  683|      2|{
  684|      2|    ds_put_format(s, IP_FMT, IP_ARGS(ip));
  ------------------
  |  |  628|      2|#define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
  ------------------
                  ds_put_format(s, IP_FMT, IP_ARGS(ip));
  ------------------
  |  |  630|      2|    ntohl(ip) >> 24,                            \
  |  |  631|      2|    (ntohl(ip) >> 16) & 0xff,                   \
  |  |  632|      2|    (ntohl(ip) >> 8) & 0xff,                    \
  |  |  633|      2|    ntohl(ip) & 0xff
  ------------------
  685|      2|    if (mask != OVS_BE32_MAX) {
  ------------------
  |  |   43|      2|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (685:9): [True: 0, False: 2]
  ------------------
  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|      2|}
ip_parse:
  698|  1.65k|{
  699|       |    return inet_pton(AF_INET, s, ip) == 1;
  700|  1.65k|}
ip_parse_masked_len:
  730|  1.59k|{
  731|  1.59k|    int prefix;
  732|       |
  733|  1.59k|    if (ovs_scan_len(s, n, IP_SCAN_FMT"/"IP_SCAN_FMT,
  ------------------
  |  |  645|  1.59k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
                  if (ovs_scan_len(s, n, IP_SCAN_FMT"/"IP_SCAN_FMT,
  ------------------
  |  |  645|  1.59k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (733:9): [True: 83, False: 1.51k]
  ------------------
  734|  1.59k|                 IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask))) {
  ------------------
  |  |  647|  1.59k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.59k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.59k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.59k|        &((uint8_t *) ip)[3]
  ------------------
                               IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask))) {
  ------------------
  |  |  647|  1.59k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.59k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.59k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.59k|        &((uint8_t *) ip)[3]
  ------------------
  735|       |        /* OK. */
  736|  1.51k|    } else if (ovs_scan_len(s, n, IP_SCAN_FMT"/%d",
  ------------------
  |  |  645|  1.51k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (736:16): [True: 1.01k, False: 499]
  ------------------
  737|  1.51k|                            IP_SCAN_ARGS(ip), &prefix)) {
  ------------------
  |  |  647|  1.51k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.51k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.51k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.51k|        &((uint8_t *) ip)[3]
  ------------------
  738|  1.01k|        if (prefix < 0 || prefix > 32) {
  ------------------
  |  Branch (738:13): [True: 24, False: 991]
  |  Branch (738:27): [True: 26, False: 965]
  ------------------
  739|     50|            return xasprintf("%s: IPv4 network prefix bits not between 0 and "
  740|     50|                              "32, inclusive", s);
  741|     50|        }
  742|    965|        *mask = be32_prefix_mask(prefix);
  743|    965|    } else if (ovs_scan_len(s, n, IP_SCAN_FMT, IP_SCAN_ARGS(ip))) {
  ------------------
  |  |  645|    499|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
                  } else if (ovs_scan_len(s, n, IP_SCAN_FMT, IP_SCAN_ARGS(ip))) {
  ------------------
  |  |  647|    499|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|    499|        &((uint8_t *) ip)[1],                               \
  |  |  649|    499|        &((uint8_t *) ip)[2],                               \
  |  |  650|    499|        &((uint8_t *) ip)[3]
  ------------------
  |  Branch (743:16): [True: 464, False: 35]
  ------------------
  744|    464|        *mask = OVS_BE32_MAX;
  ------------------
  |  |   43|    464|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  745|    464|    } else {
  746|     35|        return xasprintf("%s: invalid IP address", s);
  747|     35|    }
  748|  1.51k|    return NULL;
  749|  1.59k|}
ip_parse_masked:
  759|  1.59k|{
  760|  1.59k|    int n = 0;
  761|       |
  762|  1.59k|    char *error = ip_parse_masked_len(s, &n, ip, mask);
  763|  1.59k|    if (!error && s[n]) {
  ------------------
  |  Branch (763:9): [True: 1.51k, False: 85]
  |  Branch (763:19): [True: 7, False: 1.50k]
  ------------------
  764|      7|        return xasprintf("%s: invalid IP address", s);
  765|      7|    }
  766|  1.59k|    return error;
  767|  1.59k|}
ipv6_parse:
  808|  3.23k|{
  809|       |    return inet_pton(AF_INET6, s, ip) == 1;
  810|  3.23k|}
ipv6_parse_masked_len:
  822|  2.79k|{
  823|  2.79k|    char ipv6_s[IPV6_SCAN_LEN + 1];
  824|  2.79k|    int prefix;
  825|       |
  826|  2.79k|    if (ovs_scan_len(s, n, " "IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  2.79k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (826:9): [True: 2.77k, False: 14]
  ------------------
  827|  2.77k|        && ipv6_parse(ipv6_s, ip)) {
  ------------------
  |  Branch (827:12): [True: 2.76k, False: 10]
  ------------------
  828|  2.76k|        if (ovs_scan_len(s, n, "/%d", &prefix)) {
  ------------------
  |  Branch (828:13): [True: 1.64k, False: 1.12k]
  ------------------
  829|  1.64k|            if (prefix < 0 || prefix > 128) {
  ------------------
  |  Branch (829:17): [True: 12, False: 1.63k]
  |  Branch (829:31): [True: 19, False: 1.61k]
  ------------------
  830|     31|                return xasprintf("%s: IPv6 network prefix bits not between 0 "
  831|     31|                                 "and 128, inclusive", s);
  832|     31|            }
  833|  1.61k|            *mask = ipv6_create_mask(prefix);
  834|  1.61k|        } else if (ovs_scan_len(s, n, "/"IPV6_SCAN_FMT, ipv6_s)) {
  ------------------
  |  | 1162|  1.12k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (834:20): [True: 460, False: 660]
  ------------------
  835|    460|             if (!ipv6_parse(ipv6_s, mask)) {
  ------------------
  |  Branch (835:18): [True: 2, False: 458]
  ------------------
  836|      2|                 return xasprintf("%s: Invalid IPv6 mask", s);
  837|      2|             }
  838|       |            /* OK. */
  839|    660|        } else {
  840|       |            /* OK. No mask. */
  841|    660|            *mask = in6addr_exact;
  842|    660|        }
  843|  2.73k|        return NULL;
  844|  2.76k|    }
  845|     24|    return xasprintf("%s: invalid IPv6 address", s);
  846|  2.79k|}
ipv6_parse_masked:
  853|  2.79k|{
  854|  2.79k|    int n = 0;
  855|       |
  856|  2.79k|    char *error = ipv6_parse_masked_len(s, &n, ip, mask);
  857|  2.79k|    if (!error && s[n]) {
  ------------------
  |  Branch (857:9): [True: 2.73k, False: 57]
  |  Branch (857:19): [True: 10, False: 2.72k]
  ------------------
  858|     10|        return xasprintf("%s: invalid IPv6 address", s);
  859|     10|    }
  860|  2.78k|    return error;
  861|  2.79k|}
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|  2.68k|{
  981|  2.68k|   struct in6_addr dst;
  982|  10.7k|   IPV6_FOR_EACH (i) {
  ------------------
  |  |  972|  13.4k|#define IPV6_FOR_EACH(VAR) for (int VAR = 0; VAR < 4; VAR++)
  |  |  ------------------
  |  |  |  Branch (972:46): [True: 10.7k, False: 2.68k]
  |  |  ------------------
  ------------------
  983|  10.7k|       dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  10.7k|#define s6_addrX s6_addr32
  ------------------
                     dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  10.7k|#define s6_addrX s6_addr32
  ------------------
                     dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  10.7k|#define s6_addrX s6_addr32
  ------------------
  984|  10.7k|   }
  985|  2.68k|   return dst;
  986|  2.68k|}
ipv6_create_mask:
 1013|  1.61k|{
 1014|  1.61k|    struct in6_addr netmask;
 1015|  1.61k|    uint8_t *netmaskp = &netmask.s6_addr[0];
 1016|       |
 1017|  1.61k|    memset(&netmask, 0, sizeof netmask);
 1018|  3.46k|    while (mask > 8) {
  ------------------
  |  Branch (1018:12): [True: 1.84k, False: 1.61k]
  ------------------
 1019|  1.84k|        *netmaskp = 0xff;
 1020|  1.84k|        netmaskp++;
 1021|  1.84k|        mask -= 8;
 1022|  1.84k|    }
 1023|       |
 1024|  1.61k|    if (mask) {
  ------------------
  |  Branch (1024:9): [True: 1.16k, False: 453]
  ------------------
 1025|  1.16k|        *netmaskp = 0xff << (8 - mask);
 1026|  1.16k|    }
 1027|       |
 1028|  1.61k|    return netmask;
 1029|  1.61k|}
packet_tcp_flag_to_string:
 1717|  8.64k|{
 1718|  8.64k|    switch (flag) {
 1719|    741|    case TCP_FIN:
  ------------------
  |  |  893|    741|#define TCP_FIN 0x001
  ------------------
  |  Branch (1719:5): [True: 741, False: 7.90k]
  ------------------
 1720|    741|        return "fin";
 1721|    737|    case TCP_SYN:
  ------------------
  |  |  894|    737|#define TCP_SYN 0x002
  ------------------
  |  Branch (1721:5): [True: 737, False: 7.91k]
  ------------------
 1722|    737|        return "syn";
 1723|    737|    case TCP_RST:
  ------------------
  |  |  895|    737|#define TCP_RST 0x004
  ------------------
  |  Branch (1723:5): [True: 737, False: 7.91k]
  ------------------
 1724|    737|        return "rst";
 1725|    737|    case TCP_PSH:
  ------------------
  |  |  896|    737|#define TCP_PSH 0x008
  ------------------
  |  Branch (1725:5): [True: 737, False: 7.91k]
  ------------------
 1726|    737|        return "psh";
 1727|    700|    case TCP_ACK:
  ------------------
  |  |  897|    700|#define TCP_ACK 0x010
  ------------------
  |  Branch (1727:5): [True: 700, False: 7.94k]
  ------------------
 1728|    700|        return "ack";
 1729|    702|    case TCP_URG:
  ------------------
  |  |  898|    702|#define TCP_URG 0x020
  ------------------
  |  Branch (1729:5): [True: 702, False: 7.94k]
  ------------------
 1730|    702|        return "urg";
 1731|    699|    case TCP_ECE:
  ------------------
  |  |  899|    699|#define TCP_ECE 0x040
  ------------------
  |  Branch (1731:5): [True: 699, False: 7.94k]
  ------------------
 1732|    699|        return "ece";
 1733|    694|    case TCP_CWR:
  ------------------
  |  |  900|    694|#define TCP_CWR 0x080
  ------------------
  |  Branch (1733:5): [True: 694, False: 7.95k]
  ------------------
 1734|    694|        return "cwr";
 1735|    692|    case TCP_NS:
  ------------------
  |  |  901|    692|#define TCP_NS  0x100
  ------------------
  |  Branch (1735:5): [True: 692, False: 7.95k]
  ------------------
 1736|    692|        return "ns";
 1737|    471|    case 0x200:
  ------------------
  |  Branch (1737:5): [True: 471, False: 8.17k]
  ------------------
 1738|    471|        return "[200]";
 1739|    443|    case 0x400:
  ------------------
  |  Branch (1739:5): [True: 443, False: 8.20k]
  ------------------
 1740|    443|        return "[400]";
 1741|    400|    case 0x800:
  ------------------
  |  Branch (1741:5): [True: 400, False: 8.24k]
  ------------------
 1742|    400|        return "[800]";
 1743|    895|    default:
  ------------------
  |  Branch (1743:5): [True: 895, False: 7.75k]
  ------------------
 1744|       |        return NULL;
 1745|  8.64k|    }
 1746|  8.64k|}

ofp-flow.c:pt_ns:
 1570|  4.95k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  4.95k|}
ofp-flow.c:pt_ns_type_be:
 1577|    125|{
 1578|    125|    return be32_to_be16(packet_type);
 1579|    125|}
ofp-match.c:eth_addr_is_zero:
  246|  10.7k|{
  247|  10.7k|    return !(a.be16[0] | a.be16[1] | a.be16[2]);
  248|  10.7k|}
ofp-match.c:vlan_tci_to_vid:
  507|     27|{
  508|     27|    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  494|     27|#define VLAN_VID_MASK 0x0fff
  ------------------
                  return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  495|     27|#define VLAN_VID_SHIFT 0
  ------------------
  509|     27|}
ofp-match.c:vlan_tci_to_pcp:
  515|     17|{
  516|     17|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|     17|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|     17|#define VLAN_PCP_SHIFT 13
  ------------------
  517|     17|}
ofp-match.c:eth_addr_invert:
  301|    394|{
  302|    394|    struct eth_addr dst;
  303|       |
  304|  1.57k|    for (int i = 0; i < ARRAY_SIZE(src.be16); i++) {
  ------------------
  |  |  297|  1.57k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  1.57k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  1.57k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  1.57k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.57k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  1.57k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (304:21): [True: 1.18k, False: 394]
  ------------------
  305|  1.18k|        dst.be16[i] = ~src.be16[i];
  306|  1.18k|    }
  307|       |
  308|    394|    return dst;
  309|    394|}
ofp-match.c:eth_type_mpls:
  423|  8.91k|{
  424|  8.91k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 114, False: 8.79k]
  ------------------
  425|  8.79k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 96, False: 8.70k]
  ------------------
  426|  8.91k|}
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|    665|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|    665|}
ofp-match.c:pt_ns_type_be:
 1577|    109|{
 1578|    109|    return be32_to_be16(packet_type);
 1579|    109|}
flow.c:pt_ns_type_be:
 1577|     96|{
 1578|     96|    return be32_to_be16(packet_type);
 1579|     96|}
flow.c:pt_ns:
 1570|     96|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|     96|}
flow.c:pt_ns_type:
 1584|     96|{
 1585|       |    return ntohs(pt_ns_type_be(packet_type));
 1586|     96|}
meta-flow.c:pt_ns:
 1570|  10.2k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  10.2k|}
meta-flow.c:pt_ns_type_be:
 1577|  8.52k|{
 1578|  8.52k|    return be32_to_be16(packet_type);
 1579|  8.52k|}
meta-flow.c:eth_type_mpls:
  423|    563|{
  424|    563|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 215, False: 348]
  ------------------
  425|    348|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 320, False: 28]
  ------------------
  426|    563|}
meta-flow.c:vlan_tci_to_pcp:
  515|  1.64k|{
  516|  1.64k|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|  1.64k|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|  1.64k|#define VLAN_PCP_SHIFT 13
  ------------------
  517|  1.64k|}
meta-flow.c:mpls_lse_to_label:
  568|    586|{
  569|    586|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|    586|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|    586|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|    586|}
meta-flow.c:mpls_lse_to_tc:
  576|    516|{
  577|    516|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|    516|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|    516|#define MPLS_TC_SHIFT       9
  ------------------
  578|    516|}
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|    640|{
  585|    640|    return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  545|    640|#define MPLS_TTL_MASK       0x000000ff
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  546|    640|#define MPLS_TTL_SHIFT      0
  ------------------
  586|    640|}
meta-flow.c:ip_is_cidr:
  664|  1.56k|{
  665|       |    uint32_t x = ~ntohl(netmask);
  666|  1.56k|    return !(x & (x + 1));
  667|  1.56k|}
meta-flow.c:dl_type_is_ip_any:
 1256|  4.25k|{
 1257|  4.25k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 2.14k, False: 2.10k]
  ------------------
 1258|  2.10k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 1.97k, False: 137]
  ------------------
 1259|  4.25k|}
nx-match.c:pt_ns:
 1570|  1.33k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  1.33k|}
nx-match.c:pt_ns_type_be:
 1577|    226|{
 1578|    226|    return be32_to_be16(packet_type);
 1579|    226|}
nx-match.c:vlan_tci_to_pcp:
  515|     21|{
  516|     21|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|     21|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|     21|#define VLAN_PCP_SHIFT 13
  ------------------
  517|     21|}
nx-match.c:eth_type_mpls:
  423|  4.90k|{
  424|  4.90k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 29, False: 4.87k]
  ------------------
  425|  4.87k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 44, False: 4.83k]
  ------------------
  426|  4.90k|}
nx-match.c:mpls_lse_to_tc:
  576|      2|{
  577|      2|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|      2|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|      2|#define MPLS_TC_SHIFT       9
  ------------------
  578|      2|}
nx-match.c:mpls_lse_to_bos:
  624|      2|{
  625|       |    return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
  626|      2|}
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|      2|{
  569|      2|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|      2|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|      2|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|      2|}
nx-match.c:dl_type_is_ip_any:
 1256|  4.90k|{
 1257|  4.90k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 265, False: 4.64k]
  ------------------
 1258|  4.64k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 353, False: 4.28k]
  ------------------
 1259|  4.90k|}
ofp-actions.c:eth_type_vlan:
  429|  1.61k|{
  430|  1.61k|    return eth_type == htons(ETH_TYPE_VLAN_8021Q) ||
  ------------------
  |  Branch (430:12): [True: 1.20k, False: 406]
  ------------------
  431|    406|        eth_type == htons(ETH_TYPE_VLAN_8021AD);
  ------------------
  |  Branch (431:9): [True: 384, False: 22]
  ------------------
  432|  1.61k|}
ofp-actions.c:eth_type_mpls:
  423|  6.75k|{
  424|  6.75k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 1.04k, False: 5.70k]
  ------------------
  425|  5.70k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 2.03k, False: 3.66k]
  ------------------
  426|  6.75k|}
ofp-actions.c:ipv6_mask_is_any:
 1193|  5.49k|static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
 1194|  5.49k|    return ipv6_addr_equals(mask, &in6addr_any);
 1195|  5.49k|}
ofp-actions.c:ipv6_addr_equals:
 1184|  5.49k|{
 1185|  5.49k|#ifdef IN6_ARE_ADDR_EQUAL
 1186|  5.49k|    return IN6_ARE_ADDR_EQUAL(a, b);
 1187|       |#else
 1188|       |    return !memcmp(a, b, sizeof(*a));
 1189|       |#endif
 1190|  5.49k|}
ofp-actions.c:pt_ns:
 1570|  16.6k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  16.6k|}
ofp-actions.c:pt_ns_type_be:
 1577|  12.3k|{
 1578|  12.3k|    return be32_to_be16(packet_type);
 1579|  12.3k|}
ofp-actions.c:dl_type_is_ip_any:
 1256|  28.6k|{
 1257|  28.6k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 12.9k, False: 15.6k]
  ------------------
 1258|  15.6k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 9.23k, False: 6.42k]
  ------------------
 1259|  28.6k|}
ofp-actions.c:pt_ns_type:
 1584|  1.01k|{
 1585|       |    return ntohs(pt_ns_type_be(packet_type));
 1586|  1.01k|}
ofp-actions.c:vlan_tci_to_vid:
  507|  1.50k|{
  508|  1.50k|    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  494|  1.50k|#define VLAN_VID_MASK 0x0fff
  ------------------
                  return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  495|  1.50k|#define VLAN_VID_SHIFT 0
  ------------------
  509|  1.50k|}
ofp-actions.c:vlan_tci_to_pcp:
  515|  1.50k|{
  516|  1.50k|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|  1.50k|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|  1.50k|#define VLAN_PCP_SHIFT 13
  ------------------
  517|  1.50k|}

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|   200k|{
  237|   200k|    return shash_find__(sh, name, strlen(name), hash_name(name));
  238|   200k|}
shash_find_len:
  244|   165k|{
  245|   165k|    return shash_find__(sh, name, len, hash_bytes(name, len, 0));
  246|   165k|}
shash_find_data:
  250|   199k|{
  251|   199k|    struct shash_node *node = shash_find(sh, name);
  252|   199k|    return node ? node->data : NULL;
  ------------------
  |  Branch (252:12): [True: 127k, False: 72.6k]
  ------------------
  253|   199k|}
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|   200k|{
   29|   200k|    return hash_string(name, 0);
   30|   200k|}
shash.c:shash_find__:
  222|   365k|{
  223|   365k|    struct shash_node *node;
  224|       |
  225|   365k|    HMAP_FOR_EACH_WITH_HASH (node, node, hash, &sh->map) {
  ------------------
  |  |  138|   365k|    for (INIT_MULTIVAR(NODE, MEMBER, hmap_first_with_hash(HMAP, HASH),        \
  |  |  ------------------
  |  |  |  |  171|   365k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   365k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|   365k|                       struct hmap_node);                                     \
  |  |  140|   365k|         CONDITION_MULTIVAR(NODE, MEMBER, ITER_VAR(NODE) != NULL);            \
  |  |  ------------------
  |  |  |  |  185|   365k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 244k, False: 121k]
  |  |  |  |  |  Branch (185:6): [True: 244k, False: 121k]
  |  |  |  |  ------------------
  |  |  |  |  186|   365k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|   244k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|   244k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|   244k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   365k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |  141|   365k|         UPDATE_MULTIVAR(NODE, hmap_next_with_hash(ITER_VAR(NODE))))
  |  |  ------------------
  |  |  |  |  193|    282|    (ITER_VAR(VAR) = NEXT_ITER)
  |  |  |  |  ------------------
  |  |  |  |  |  |  162|    282|#define ITER_VAR(NAME) NAME ## __iterator__
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  226|   244k|        if (!strncmp(node->name, name, name_len) && !node->name[name_len]) {
  ------------------
  |  Branch (226:13): [True: 244k, False: 282]
  |  Branch (226:53): [True: 244k, False: 0]
  ------------------
  227|   244k|            return node;
  228|   244k|        }
  229|   244k|    }
  230|   121k|    return NULL;
  231|   365k|}

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

tun_metadata_read:
  223|  76.9k|{
  224|  76.9k|    const struct tun_table *map = tnl->metadata.tab;
  225|  76.9k|    unsigned int idx = mf->id - MFF_TUN_METADATA0;
  226|  76.9k|    const struct tun_metadata_loc *loc;
  227|       |
  228|  76.9k|    if (!map) {
  ------------------
  |  Branch (228:9): [True: 76.9k, False: 0]
  ------------------
  229|  76.9k|        memset(value->tun_metadata, 0, mf->n_bytes);
  230|  76.9k|        return;
  231|  76.9k|    }
  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: 9.80k, False: 29.2k]
  ------------------
  367|  9.80k|        return;
  368|  9.80k|    }
  369|       |
  370|  29.2k|    data_offset = mf->n_bytes - loc->len;
  371|       |
  372|  29.2k|    if (!value) {
  ------------------
  |  Branch (372:9): [True: 0, False: 29.2k]
  ------------------
  373|      0|        memset(data.tun_metadata, 0, loc->len);
  374|  29.2k|    } else if (!mask) {
  ------------------
  |  Branch (374:16): [True: 14.6k, False: 14.6k]
  ------------------
  375|  14.6k|        memcpy(data.tun_metadata, value->tun_metadata + data_offset, loc->len);
  376|  14.6k|    } else {
  377|  14.6k|        int i;
  378|  43.2k|        for (i = 0; i < loc->len; i++) {
  ------------------
  |  Branch (378:21): [True: 28.6k, False: 14.6k]
  ------------------
  379|  28.6k|            data.tun_metadata[i] = value->tun_metadata[data_offset + i] &
  380|  28.6k|                                   mask->tun_metadata[data_offset + i];
  381|  28.6k|        }
  382|  14.6k|    }
  383|  29.2k|    memcpy_to_metadata(&match->flow.tunnel.metadata, data.tun_metadata,
  384|  29.2k|                       loc, idx);
  385|       |
  386|  29.2k|    if (!value) {
  ------------------
  |  Branch (386:9): [True: 0, False: 29.2k]
  ------------------
  387|      0|        memset(data.tun_metadata, 0, loc->len);
  388|  29.2k|    } else if (!mask) {
  ------------------
  |  Branch (388:16): [True: 14.6k, False: 14.6k]
  ------------------
  389|  14.6k|        memset(data.tun_metadata, 0xff, loc->len);
  390|  14.6k|    } else {
  391|  14.6k|        memcpy(data.tun_metadata, mask->tun_metadata + data_offset, loc->len);
  392|  14.6k|    }
  393|  29.2k|    memcpy_to_metadata(&match->wc.masks.tunnel.metadata, data.tun_metadata,
  394|  29.2k|                       loc, idx);
  395|  29.2k|}
tun_metadata_to_nx_match:
  879|  4.90k|{
  880|  4.90k|    int i;
  881|       |
  882|  4.90k|    ULLONG_FOR_EACH_1 (i, match->wc.masks.tunnel.metadata.present.map) {
  ------------------
  |  |  285|  4.90k|    for (uint64_t map__ = (MAP);                    \
  |  |  286|  5.35k|         map__ && (((IDX) = raw_ctz(map__)), true); \
  |  |  ------------------
  |  |  |  Branch (286:10): [True: 452, False: 4.90k]
  |  |  |  Branch (286:19): [True: 452, False: 0]
  |  |  ------------------
  |  |  287|  4.90k|         map__ = zero_rightmost_1bit(map__))
  ------------------
  883|    452|        const struct tun_metadata_loc *loc;
  884|    452|        bool is_masked;
  885|    452|        union mf_value opts;
  886|    452|        union mf_value mask_opts;
  887|       |
  888|    452|        loc = metadata_loc_from_match_read(match->flow.tunnel.metadata.tab,
  889|    452|                                           match, i, &match->wc.masks.tunnel,
  890|    452|                                           &is_masked);
  891|    452|        memcpy_from_metadata(opts.tun_metadata, &match->flow.tunnel.metadata,
  892|    452|                             loc);
  893|    452|        memcpy_from_metadata(mask_opts.tun_metadata,
  894|    452|                             &match->wc.masks.tunnel.metadata, loc);
  895|    452|        nxm_put_entry_raw(b, MFF_TUN_METADATA0 + i, oxm, opts.tun_metadata,
  896|    452|                          is_masked ? mask_opts.tun_metadata : NULL, loc->len);
  ------------------
  |  Branch (896:27): [True: 239, False: 213]
  ------------------
  897|    452|    }
  898|  4.90k|}
tun_metadata_allocation_clone:
  947|  10.7k|{
  948|  10.7k|    return src && src->valid ? xmemdup(src, sizeof *src) : NULL;
  ------------------
  |  Branch (948:12): [True: 10.7k, False: 0]
  |  Branch (948:19): [True: 360, False: 10.3k]
  ------------------
  949|  10.7k|}
tun_metadata_allocation_copy:
  954|  21.1k|{
  955|  21.1k|    if (src && src->valid) {
  ------------------
  |  Branch (955:9): [True: 719, False: 20.4k]
  |  Branch (955:16): [True: 719, False: 0]
  ------------------
  956|    719|        *dst = *src;
  957|  20.4k|    } else {
  958|  20.4k|        memset(dst, 0, sizeof *dst);
  959|  20.4k|    }
  960|  21.1k|}
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: 841, False: 38.2k]
  ------------------
  289|    841|        *err_str = NULL;
  290|    841|    }
  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: 335, False: 38.7k]
  ------------------
  301|    335|        if (err_str) {
  ------------------
  |  Branch (301:13): [True: 1, False: 334]
  ------------------
  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|    335|        return NULL;
  309|    335|    }
  310|       |
  311|  38.7k|    if (ULLONG_GET(match->wc.masks.tunnel.metadata.present.map, idx)) {
  ------------------
  |  |  293|  38.7k|#define ULLONG_GET(MAP, OFFSET) !!((MAP) & (1ULL << (OFFSET)))
  |  |  ------------------
  |  |  |  Branch (293:33): [True: 9.47k, False: 29.2k]
  |  |  ------------------
  ------------------
  312|  9.47k|        if (err_str) {
  ------------------
  |  Branch (312:13): [True: 187, False: 9.28k]
  ------------------
  313|    187|            *err_str = xasprintf("field %s set multiple times", name);
  314|    187|        }
  315|       |
  316|  9.47k|        return NULL;
  317|  9.47k|    }
  318|       |
  319|  29.2k|    match->tun_md.entry[idx].loc.len = field_len;
  320|  29.2k|    match->tun_md.entry[idx].loc.c.offset = match->tun_md.alloc_offset;
  321|  29.2k|    match->tun_md.entry[idx].loc.c.len = field_len;
  322|  29.2k|    match->tun_md.entry[idx].loc.c.next = NULL;
  323|  29.2k|    match->tun_md.entry[idx].masked = masked;
  324|  29.2k|    match->tun_md.alloc_offset += field_len;
  325|  29.2k|    match->tun_md.valid = true;
  326|       |
  327|  29.2k|    return &match->tun_md.entry[idx].loc;
  328|  38.7k|}
tun-metadata.c:memcpy_to_metadata:
  445|  58.5k|{
  446|  58.5k|    const struct tun_metadata_loc_chain *chain = &loc->c;
  447|  58.5k|    int addr = 0;
  448|       |
  449|   117k|    while (chain) {
  ------------------
  |  Branch (449:12): [True: 58.5k, False: 58.5k]
  ------------------
  450|  58.5k|        memcpy(dst->opts.u8 + chain->offset, (uint8_t *)src + addr,
  451|  58.5k|               chain->len);
  452|  58.5k|        addr += chain->len;
  453|  58.5k|        chain = chain->next;
  454|  58.5k|    }
  455|       |
  456|  58.5k|    ULLONG_SET1(dst->present.map, idx);
  ------------------
  |  |  290|  58.5k|#define ULLONG_SET1(MAP, OFFSET) ((MAP) |= 1ULL << (OFFSET))
  ------------------
  457|  58.5k|}
tun-metadata.c:memcpy_from_metadata:
  462|    904|{
  463|    904|    const struct tun_metadata_loc_chain *chain = &loc->c;
  464|    904|    int addr = 0;
  465|       |
  466|  1.80k|    while (chain) {
  ------------------
  |  Branch (466:12): [True: 904, False: 904]
  ------------------
  467|    904|        memcpy((uint8_t *)dst + addr, src->opts.u8 + chain->offset,
  468|    904|               chain->len);
  469|    904|        addr += chain->len;
  470|    904|        chain = chain->next;
  471|    904|    }
  472|    904|}
tun-metadata.c:metadata_loc_from_match_read:
  857|    452|{
  858|    452|    union mf_value mask_opts;
  859|       |
  860|    452|    if (match->tun_md.valid) {
  ------------------
  |  Branch (860:9): [True: 452, False: 0]
  ------------------
  861|    452|        *is_masked = match->tun_md.entry[idx].masked;
  862|    452|        return &match->tun_md.entry[idx].loc;
  863|    452|    }
  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|    452|}

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

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

json.c:uc_is_leading_surrogate:
   34|  40.9k|{
   35|  40.9k|    return c >= 0xd800 && c <= 0xdbff;
  ------------------
  |  Branch (35:12): [True: 29.9k, False: 10.9k]
  |  Branch (35:27): [True: 19.3k, False: 10.5k]
  ------------------
   36|  40.9k|}
json.c:uc_is_trailing_surrogate:
   41|  17.9k|{
   42|  17.9k|    return c >= 0xdc00 && c <= 0xdfff;
  ------------------
  |  Branch (42:12): [True: 17.7k, False: 211]
  |  Branch (42:27): [True: 17.7k, False: 3]
  ------------------
   43|  17.9k|}

xmalloc__:
  137|   250k|{
  138|   250k|    void *p = malloc(size ? size : 1);
  ------------------
  |  Branch (138:22): [True: 250k, False: 0]
  ------------------
  139|   250k|    if (p == NULL) {
  ------------------
  |  Branch (139:9): [True: 0, False: 250k]
  ------------------
  140|      0|        out_of_memory();
  141|      0|    }
  142|   250k|    return p;
  143|   250k|}
xrealloc__:
  147|   433k|{
  148|   433k|    p = realloc(p, size ? size : 1);
  ------------------
  |  Branch (148:20): [True: 433k, False: 0]
  ------------------
  149|   433k|    if (p == NULL) {
  ------------------
  |  Branch (149:9): [True: 0, False: 433k]
  ------------------
  150|      0|        out_of_memory();
  151|      0|    }
  152|   433k|    return p;
  153|   433k|}
xmalloc:
  171|   250k|{
  172|   250k|    COVERAGE_INC(util_xalloc);
  ------------------
  |  |   83|   250k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|   250k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  173|   250k|    return xmalloc__(size);
  174|   250k|}
xrealloc:
  178|   433k|{
  179|   433k|    COVERAGE_INC(util_xalloc);
  ------------------
  |  |   83|   433k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|   433k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  180|   433k|    return xrealloc__(p, size);
  181|   433k|}
xmemdup:
  185|    360|{
  186|    360|    void *p = xmalloc(size);
  187|    360|    nullable_memcpy(p, p_, size);
  188|    360|    return p;
  189|    360|}
xmemdup0:
  193|   142k|{
  194|   142k|    char *p = xmalloc(length + 1);
  195|   142k|    memcpy(p, p_, length);
  196|   142k|    p[length] = '\0';
  197|   142k|    return p;
  198|   142k|}
xstrdup:
  202|   142k|{
  203|   142k|    return xmemdup0(s, strlen(s));
  204|   142k|}
xvasprintf:
  220|  61.7k|{
  221|  61.7k|    va_list args2;
  222|  61.7k|    size_t needed;
  223|  61.7k|    char *s;
  224|       |
  225|  61.7k|    ovs_assert(format);
  ------------------
  |  |   62|  61.7k|#define ovs_assert ovs_ignore
  ------------------
  226|       |
  227|  61.7k|    va_copy(args2, args);
  228|  61.7k|    needed = vsnprintf(NULL, 0, format, args);
  229|       |
  230|  61.7k|    s = xmalloc(needed + 1);
  231|       |
  232|  61.7k|    vsnprintf(s, needed + 1, format, args2);
  233|  61.7k|    va_end(args2);
  234|       |
  235|  61.7k|    return s;
  236|  61.7k|}
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|  61.5k|{
  367|  61.5k|    va_list args;
  368|  61.5k|    char *s;
  369|       |
  370|  61.5k|    va_start(args, format);
  371|  61.5k|    s = xvasprintf(format, args);
  372|  61.5k|    va_end(args);
  373|       |
  374|  61.5k|    return s;
  375|  61.5k|}
ovs_strlcpy:
  381|  4.98k|{
  382|  4.98k|    if (size > 0) {
  ------------------
  |  Branch (382:9): [True: 4.98k, False: 0]
  ------------------
  383|  4.98k|        size_t len = strnlen(src, size - 1);
  384|  4.98k|        memcpy(dst, src, len);
  385|  4.98k|        dst[len] = '\0';
  386|  4.98k|    }
  387|  4.98k|}
str_to_int:
  809|  27.1k|{
  810|  27.1k|    long long ll;
  811|  27.1k|    bool ok = str_to_llong(s, base, &ll);
  812|       |
  813|  27.1k|    if (!ok || ll < INT_MIN || ll > INT_MAX) {
  ------------------
  |  Branch (813:9): [True: 434, False: 26.6k]
  |  Branch (813:16): [True: 61, False: 26.6k]
  |  Branch (813:32): [True: 1, False: 26.6k]
  ------------------
  814|    496|        *i = 0;
  815|    496|        return false;
  816|    496|    }
  817|  26.6k|    *i = ll;
  818|       |    return true;
  819|  27.1k|}
str_to_llong:
  837|   259k|{
  838|   259k|    char *tail;
  839|   259k|    bool ok = str_to_llong_with_tail(s, &tail, base, x);
  840|   259k|    if (*tail != '\0') {
  ------------------
  |  Branch (840:9): [True: 18.5k, False: 241k]
  ------------------
  841|  18.5k|        *x = 0;
  842|  18.5k|        return false;
  843|  18.5k|    }
  844|   241k|    return ok;
  845|   259k|}
str_to_llong_with_tail:
  849|   259k|{
  850|   259k|    int save_errno = errno;
  851|   259k|    errno = 0;
  852|   259k|    *x = strtoll(s, tail, base);
  853|   259k|    if (errno == EINVAL || errno == ERANGE || *tail == s) {
  ------------------
  |  Branch (853:9): [True: 0, False: 259k]
  |  Branch (853:28): [True: 2, False: 259k]
  |  Branch (853:47): [True: 18.5k, False: 241k]
  ------------------
  854|  18.5k|        errno = save_errno;
  855|  18.5k|        *x = 0;
  856|  18.5k|        return false;
  857|   241k|    } else {
  858|   241k|        errno = save_errno;
  859|       |        return true;
  860|   241k|    }
  861|   259k|}
str_to_uint:
  865|   232k|{
  866|   232k|    long long ll;
  867|   232k|    bool ok = str_to_llong(s, base, &ll);
  868|   232k|    if (!ok || ll < 0 || ll > UINT_MAX) {
  ------------------
  |  Branch (868:9): [True: 18.2k, False: 214k]
  |  Branch (868:16): [True: 27, False: 214k]
  |  Branch (868:26): [True: 22, False: 214k]
  ------------------
  869|  18.2k|        *u = 0;
  870|  18.2k|        return false;
  871|   214k|    } else {
  872|   214k|        *u = ll;
  873|       |        return true;
  874|   214k|    }
  875|   232k|}
str_to_ullong:
  879|  7.29k|{
  880|  7.29k|    int save_errno = errno;
  881|  7.29k|    char *tail;
  882|       |
  883|  7.29k|    errno = 0;
  884|  7.29k|    *x = strtoull(s, &tail, base);
  885|  7.29k|    if (errno == EINVAL || errno == ERANGE || tail == s || *tail != '\0') {
  ------------------
  |  Branch (885:9): [True: 0, False: 7.29k]
  |  Branch (885:28): [True: 1, False: 7.29k]
  |  Branch (885:47): [True: 597, False: 6.69k]
  |  Branch (885:60): [True: 11, False: 6.68k]
  ------------------
  886|    609|        errno = save_errno;
  887|    609|        *x = 0;
  888|    609|        return false;
  889|  6.68k|    } else {
  890|  6.68k|        errno = save_errno;
  891|       |        return true;
  892|  6.68k|    }
  893|  7.29k|}
hexit_value:
  937|  3.82M|{
  938|  3.82M|    static const signed char tbl[UCHAR_MAX + 1] = {
  939|  3.82M|#define TBL(x)                                  \
  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  943|  3.82M|         : -1)
  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  946|  3.82M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  947|  3.82M|        TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.82M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.82M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.82M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.82M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.82M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.82M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.82M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.82M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.82M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.82M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.82M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  948|  3.82M|    };
  949|       |
  950|  3.82M|    return tbl[c];
  951|  3.82M|}
hexits_value:
  959|  1.48M|{
  960|  1.48M|    uintmax_t value;
  961|  1.48M|    size_t i;
  962|       |
  963|  1.48M|    value = 0;
  964|  4.38M|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (964:17): [True: 2.91M, False: 1.46M]
  ------------------
  965|  2.91M|        int hexit = hexit_value(s[i]);
  966|  2.91M|        if (hexit < 0) {
  ------------------
  |  Branch (966:13): [True: 14.8k, False: 2.89M]
  ------------------
  967|  14.8k|            *ok = false;
  968|  14.8k|            return UINTMAX_MAX;
  969|  14.8k|        }
  970|  2.89M|        value = (value << 4) + hexit;
  971|  2.89M|    }
  972|  1.46M|    *ok = true;
  973|  1.46M|    return value;
  974|  1.48M|}
parse_int_string:
  988|   241k|{
  989|   241k|    unsigned long long int integer;
  990|   241k|    int i;
  991|       |
  992|   241k|    if (!strncmp(s, "0x", 2) || !strncmp(s, "0X", 2)) {
  ------------------
  |  Branch (992:9): [True: 6.95k, False: 234k]
  |  Branch (992:33): [True: 2.57k, False: 231k]
  ------------------
  993|  9.52k|        uint8_t *hexit_str;
  994|  9.52k|        int len = 0;
  995|  9.52k|        int val_idx;
  996|  9.52k|        int err = 0;
  997|       |
  998|  9.52k|        s += 2;
  999|  9.52k|        hexit_str = xmalloc(field_width * 2);
 1000|       |
 1001|   161k|        for (;;) {
 1002|   161k|            uint8_t hexit;
 1003|   161k|            bool ok;
 1004|       |
 1005|   161k|            s += strspn(s, " \t\r\n");
 1006|   161k|            hexit = hexits_value(s, 1, &ok);
 1007|   161k|            if (!ok) {
  ------------------
  |  Branch (1007:17): [True: 9.52k, False: 152k]
  ------------------
 1008|  9.52k|                *tail = CONST_CAST(char *, s);
  ------------------
  |  |   85|  9.52k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  9.52k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  9.52k|     (TYPE) (POINTER))
  ------------------
 1009|  9.52k|                break;
 1010|  9.52k|            }
 1011|       |
 1012|   152k|            if (hexit != 0 || len) {
  ------------------
  |  Branch (1012:17): [True: 108k, False: 43.5k]
  |  Branch (1012:31): [True: 38.7k, False: 4.81k]
  ------------------
 1013|   147k|                if (DIV_ROUND_UP(len + 1, 2) > field_width) {
  ------------------
  |  |  300|   147k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  |  Branch (1013:21): [True: 4, False: 147k]
  ------------------
 1014|      4|                    err = ERANGE;
 1015|      4|                    goto free;
 1016|      4|                }
 1017|       |
 1018|   147k|                hexit_str[len] = hexit;
 1019|   147k|                len++;
 1020|   147k|            }
 1021|   152k|            s++;
 1022|   152k|        }
 1023|       |
 1024|  9.52k|        val_idx = field_width;
 1025|  85.9k|        for (i = len - 1; i >= 0; i -= 2) {
  ------------------
  |  Branch (1025:27): [True: 76.4k, False: 9.52k]
  ------------------
 1026|  76.4k|            val_idx--;
 1027|  76.4k|            valuep[val_idx] = hexit_str[i];
 1028|  76.4k|            if (i > 0) {
  ------------------
  |  Branch (1028:17): [True: 70.7k, False: 5.68k]
  ------------------
 1029|  70.7k|                valuep[val_idx] += hexit_str[i - 1] << 4;
 1030|  70.7k|            }
 1031|  76.4k|        }
 1032|       |
 1033|  9.52k|        memset(valuep, 0, val_idx);
 1034|       |
 1035|  9.52k|free:
 1036|  9.52k|        free(hexit_str);
 1037|  9.52k|        return err;
 1038|  9.52k|    }
 1039|       |
 1040|   241k|    errno = 0;
 1041|   231k|    integer = strtoull(s, tail, 0);
 1042|   231k|    if (errno || s == *tail) {
  ------------------
  |  Branch (1042:9): [True: 2, False: 231k]
  |  Branch (1042:18): [True: 676, False: 230k]
  ------------------
 1043|    678|        return errno ? errno : EINVAL;
  ------------------
  |  Branch (1043:16): [True: 2, False: 676]
  ------------------
 1044|    678|    }
 1045|       |
 1046|  6.80M|    for (i = field_width - 1; i >= 0; i--) {
  ------------------
  |  Branch (1046:31): [True: 6.57M, False: 230k]
  ------------------
 1047|  6.57M|        valuep[i] = integer;
 1048|  6.57M|        integer >>= 8;
 1049|  6.57M|    }
 1050|   230k|    if (integer) {
  ------------------
  |  Branch (1050:9): [True: 52, False: 230k]
  ------------------
 1051|     52|        return ERANGE;
 1052|     52|    }
 1053|       |
 1054|   230k|    return 0;
 1055|   230k|}
ovs_ignore:
 1265|  12.2M|void ovs_ignore(bool x OVS_UNUSED) { }
is_all_byte:
 1356|   717k|{
 1357|   717k|    const uint8_t *p = p_;
 1358|   717k|    size_t i;
 1359|       |
 1360|  10.9M|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1360:17): [True: 10.4M, False: 515k]
  ------------------
 1361|  10.4M|        if (p[i] != byte) {
  ------------------
  |  Branch (1361:13): [True: 202k, False: 10.2M]
  ------------------
 1362|   202k|            return false;
 1363|   202k|        }
 1364|  10.4M|    }
 1365|   515k|    return true;
 1366|   717k|}
is_all_zeros:
 1371|   465k|{
 1372|   465k|    return is_all_byte(p, n, 0);
 1373|   465k|}
is_all_ones:
 1378|   251k|{
 1379|   251k|    return is_all_byte(p, n, 0xff);
 1380|   251k|}
bitwise_copy:
 1414|   229k|{
 1415|   229k|    const uint8_t *src = src_;
 1416|   229k|    uint8_t *dst = dst_;
 1417|       |
 1418|   229k|    src += src_len - (src_ofs / 8 + 1);
 1419|   229k|    src_ofs %= 8;
 1420|       |
 1421|   229k|    dst += dst_len - (dst_ofs / 8 + 1);
 1422|   229k|    dst_ofs %= 8;
 1423|       |
 1424|   229k|    if (src_ofs == 0 && dst_ofs == 0) {
  ------------------
  |  Branch (1424:9): [True: 123k, False: 106k]
  |  Branch (1424:25): [True: 85.5k, False: 37.7k]
  ------------------
 1425|  85.5k|        unsigned int n_bytes = n_bits / 8;
 1426|  85.5k|        if (n_bytes) {
  ------------------
  |  Branch (1426:13): [True: 45.3k, False: 40.2k]
  ------------------
 1427|  45.3k|            dst -= n_bytes - 1;
 1428|  45.3k|            src -= n_bytes - 1;
 1429|  45.3k|            memcpy(dst, src, n_bytes);
 1430|       |
 1431|  45.3k|            n_bits %= 8;
 1432|  45.3k|            src--;
 1433|  45.3k|            dst--;
 1434|  45.3k|        }
 1435|  85.5k|        if (n_bits) {
  ------------------
  |  Branch (1435:13): [True: 41.7k, False: 43.7k]
  ------------------
 1436|  41.7k|            uint8_t mask = (1 << n_bits) - 1;
 1437|  41.7k|            *dst = (*dst & ~mask) | (*src & mask);
 1438|  41.7k|        }
 1439|   144k|    } else {
 1440|   303k|        while (n_bits > 0) {
  ------------------
  |  Branch (1440:16): [True: 159k, False: 144k]
  ------------------
 1441|   159k|            unsigned int max_copy = 8 - MAX(src_ofs, dst_ofs);
  ------------------
  |  |   95|   159k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 111k, False: 47.9k]
  |  |  ------------------
  ------------------
 1442|   159k|            unsigned int chunk = MIN(n_bits, max_copy);
  ------------------
  |  |   91|   159k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 134k, False: 25.5k]
  |  |  ------------------
  ------------------
 1443|   159k|            uint8_t mask = ((1 << chunk) - 1) << dst_ofs;
 1444|       |
 1445|   159k|            *dst &= ~mask;
 1446|   159k|            *dst |= ((*src >> src_ofs) << dst_ofs) & mask;
 1447|       |
 1448|   159k|            src_ofs += chunk;
 1449|   159k|            if (src_ofs == 8) {
  ------------------
  |  Branch (1449:17): [True: 16.1k, False: 143k]
  ------------------
 1450|  16.1k|                src--;
 1451|  16.1k|                src_ofs = 0;
 1452|  16.1k|            }
 1453|   159k|            dst_ofs += chunk;
 1454|   159k|            if (dst_ofs == 8) {
  ------------------
  |  Branch (1454:17): [True: 9.40k, False: 150k]
  ------------------
 1455|  9.40k|                dst--;
 1456|  9.40k|                dst_ofs = 0;
 1457|  9.40k|            }
 1458|   159k|            n_bits -= chunk;
 1459|   159k|        }
 1460|   144k|    }
 1461|   229k|}
bitwise_one:
 1526|   101k|{
 1527|   101k|    uint8_t *dst = dst_;
 1528|       |
 1529|   101k|    if (!n_bits) {
  ------------------
  |  Branch (1529:9): [True: 0, False: 101k]
  ------------------
 1530|      0|        return;
 1531|      0|    }
 1532|       |
 1533|   101k|    dst += dst_len - (dst_ofs / 8 + 1);
 1534|   101k|    dst_ofs %= 8;
 1535|       |
 1536|   101k|    if (dst_ofs) {
  ------------------
  |  Branch (1536:9): [True: 37.7k, False: 64.1k]
  ------------------
 1537|  37.7k|        unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
  ------------------
  |  |   91|  37.7k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 33.2k, False: 4.53k]
  |  |  ------------------
  ------------------
 1538|       |
 1539|  37.7k|        *dst |= ((1 << chunk) - 1) << dst_ofs;
 1540|       |
 1541|  37.7k|        n_bits -= chunk;
 1542|  37.7k|        if (!n_bits) {
  ------------------
  |  Branch (1542:13): [True: 37.1k, False: 605]
  ------------------
 1543|  37.1k|            return;
 1544|  37.1k|        }
 1545|       |
 1546|    605|        dst--;
 1547|    605|    }
 1548|       |
 1549|  3.02M|    while (n_bits >= 8) {
  ------------------
  |  Branch (1549:12): [True: 2.96M, False: 64.7k]
  ------------------
 1550|  2.96M|        *dst-- = 0xff;
 1551|  2.96M|        n_bits -= 8;
 1552|  2.96M|    }
 1553|       |
 1554|  64.7k|    if (n_bits) {
  ------------------
  |  Branch (1554:9): [True: 24.2k, False: 40.5k]
  ------------------
 1555|  24.2k|        *dst |= (1 << n_bits) - 1;
 1556|  24.2k|    }
 1557|  64.7k|}
bitwise_is_all_zeros:
 1575|  75.0k|{
 1576|  75.0k|    const uint8_t *p = p_;
 1577|       |
 1578|  75.0k|    if (!n_bits) {
  ------------------
  |  Branch (1578:9): [True: 12.4k, False: 62.5k]
  ------------------
 1579|  12.4k|        return true;
 1580|  12.4k|    }
 1581|       |
 1582|  62.5k|    p += len - (ofs / 8 + 1);
 1583|  62.5k|    ofs %= 8;
 1584|       |
 1585|  62.5k|    if (ofs) {
  ------------------
  |  Branch (1585:9): [True: 61.6k, False: 888]
  ------------------
 1586|  61.6k|        unsigned int chunk = MIN(n_bits, 8 - ofs);
  ------------------
  |  |   91|  61.6k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 0, False: 61.6k]
  |  |  ------------------
  ------------------
 1587|       |
 1588|  61.6k|        if (*p & (((1 << chunk) - 1) << ofs)) {
  ------------------
  |  Branch (1588:13): [True: 131, False: 61.5k]
  ------------------
 1589|    131|            return false;
 1590|    131|        }
 1591|       |
 1592|  61.5k|        n_bits -= chunk;
 1593|  61.5k|        if (!n_bits) {
  ------------------
  |  Branch (1593:13): [True: 11.7k, False: 49.7k]
  ------------------
 1594|  11.7k|            return true;
 1595|  11.7k|        }
 1596|       |
 1597|  49.7k|        p--;
 1598|  49.7k|    }
 1599|       |
 1600|  2.19M|    while (n_bits >= 8) {
  ------------------
  |  Branch (1600:12): [True: 2.14M, False: 50.6k]
  ------------------
 1601|  2.14M|        if (*p) {
  ------------------
  |  Branch (1601:13): [True: 14, False: 2.14M]
  ------------------
 1602|     14|            return false;
 1603|     14|        }
 1604|  2.14M|        n_bits -= 8;
 1605|  2.14M|        p--;
 1606|  2.14M|    }
 1607|       |
 1608|  50.6k|    if (n_bits && *p & ((1 << n_bits) - 1)) {
  ------------------
  |  Branch (1608:9): [True: 0, False: 50.6k]
  |  Branch (1608:19): [True: 0, False: 0]
  ------------------
 1609|      0|        return false;
 1610|      0|    }
 1611|       |
 1612|  50.6k|    return true;
 1613|  50.6k|}
bitwise_scan:
 1630|   265k|{
 1631|   265k|    unsigned int ofs;
 1632|       |
 1633|  1.12M|    for (ofs = start; ofs < end; ofs++) {
  ------------------
  |  Branch (1633:23): [True: 1.11M, False: 14.3k]
  ------------------
 1634|  1.11M|        if (bitwise_get_bit(p, len, ofs) == target) {
  ------------------
  |  Branch (1634:13): [True: 250k, False: 860k]
  ------------------
 1635|   250k|            break;
 1636|   250k|        }
 1637|  1.11M|    }
 1638|   265k|    return ofs;
 1639|   265k|}
bitwise_get:
 1742|   127k|{
 1743|   127k|    ovs_be64 value = htonll(0);
 1744|       |
 1745|   127k|    bitwise_copy(src, src_len, src_ofs,
 1746|   127k|                 &value, sizeof value, 0,
 1747|   127k|                 n_bits);
 1748|   127k|    return ntohll(value);
 1749|   127k|}
bitwise_get_bit:
 1765|  1.11M|{
 1766|  1.11M|    const uint8_t *src = src_;
 1767|       |
 1768|  1.11M|    return (src[len - (ofs / 8 + 1)] & (1u << (ofs % 8))) != 0;
 1769|  1.11M|}
ovs_scan:
 2291|   132k|{
 2292|   132k|    va_list args;
 2293|   132k|    bool res;
 2294|       |
 2295|   132k|    va_start(args, format);
 2296|   132k|    res = ovs_scan__(s, NULL, format, &args);
 2297|       |    va_end(args);
 2298|   132k|    return res;
 2299|   132k|}
ovs_scan_len:
 2307|   136k|{
 2308|   136k|    va_list args;
 2309|   136k|    bool success;
 2310|   136k|    int n1;
 2311|       |
 2312|   136k|    va_start(args, format);
 2313|   136k|    success = ovs_scan__(s + *n, &n1, format, &args);
 2314|   136k|    va_end(args);
 2315|   136k|    if (success) {
  ------------------
  |  Branch (2315:9): [True: 68.9k, False: 68.0k]
  ------------------
 2316|  68.9k|        *n = *n + n1;
 2317|  68.9k|    }
 2318|   136k|    return success;
 2319|   136k|}
util.c:ovs_scan__:
 2111|   268k|{
 2112|   268k|    const char *const start = s;
 2113|   268k|    bool ok = false;
 2114|   268k|    const char *p;
 2115|       |
 2116|   268k|    p = format;
 2117|   764k|    while (*p != '\0') {
  ------------------
  |  Branch (2117:12): [True: 626k, False: 137k]
  ------------------
 2118|   626k|        struct scan_spec spec;
 2119|   626k|        unsigned char c = *p++;
 2120|   626k|        bool discard;
 2121|       |
 2122|   626k|        if (isspace(c)) {
  ------------------
  |  Branch (2122:13): [True: 8.34k, False: 618k]
  ------------------
 2123|  8.34k|            s = skip_spaces(s);
 2124|  8.34k|            continue;
 2125|   618k|        } else if (c != '%') {
  ------------------
  |  Branch (2125:20): [True: 309k, False: 309k]
  ------------------
 2126|   309k|            if (*s != c) {
  ------------------
  |  Branch (2126:17): [True: 88.8k, False: 220k]
  ------------------
 2127|  88.8k|                goto exit;
 2128|  88.8k|            }
 2129|   220k|            s++;
 2130|   220k|            continue;
 2131|   309k|        } else if (*p == '%') {
  ------------------
  |  Branch (2131:20): [True: 0, False: 309k]
  ------------------
 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|   309k|        discard = *p == '*';
 2141|   309k|        p += discard;
 2142|       |
 2143|       |        /* Parse field width. */
 2144|   309k|        spec.width = 0;
 2145|   441k|        while (*p >= '0' && *p <= '9') {
  ------------------
  |  Branch (2145:16): [True: 441k, False: 0]
  |  Branch (2145:29): [True: 132k, False: 309k]
  ------------------
 2146|   132k|            spec.width = spec.width * 10 + (*p++ - '0');
 2147|   132k|        }
 2148|   309k|        if (spec.width == 0) {
  ------------------
  |  Branch (2148:13): [True: 242k, False: 66.1k]
  ------------------
 2149|   242k|            spec.width = UINT_MAX;
 2150|   242k|        }
 2151|       |
 2152|       |        /* Parse type modifier. */
 2153|   309k|        switch (*p) {
 2154|   100k|        case 'h':
  ------------------
  |  Branch (2154:9): [True: 100k, False: 208k]
  ------------------
 2155|   100k|            if (p[1] == 'h') {
  ------------------
  |  Branch (2155:17): [True: 98.6k, False: 2.02k]
  ------------------
 2156|  98.6k|                spec.type = SCAN_CHAR;
 2157|  98.6k|                p += 2;
 2158|  98.6k|            } else {
 2159|  2.02k|                spec.type = SCAN_SHORT;
 2160|  2.02k|                p++;
 2161|  2.02k|            }
 2162|   100k|            break;
 2163|       |
 2164|      0|        case 'j':
  ------------------
  |  Branch (2164:9): [True: 0, False: 309k]
  ------------------
 2165|      0|            spec.type = SCAN_INTMAX_T;
 2166|      0|            p++;
 2167|      0|            break;
 2168|       |
 2169|  6.47k|        case 'l':
  ------------------
  |  Branch (2169:9): [True: 6.47k, False: 302k]
  ------------------
 2170|  6.47k|            if (p[1] == 'l') {
  ------------------
  |  Branch (2170:17): [True: 6.47k, False: 0]
  ------------------
 2171|  6.47k|                spec.type = SCAN_LLONG;
 2172|  6.47k|                p += 2;
 2173|  6.47k|            } else {
 2174|      0|                spec.type = SCAN_LONG;
 2175|      0|                p++;
 2176|      0|            }
 2177|  6.47k|            break;
 2178|       |
 2179|      0|        case 'L':
  ------------------
  |  Branch (2179:9): [True: 0, False: 309k]
  ------------------
 2180|      0|        case 'q':
  ------------------
  |  Branch (2180:9): [True: 0, False: 309k]
  ------------------
 2181|      0|            spec.type = SCAN_LLONG;
 2182|      0|            p++;
 2183|      0|            break;
 2184|       |
 2185|      0|        case 't':
  ------------------
  |  Branch (2185:9): [True: 0, False: 309k]
  ------------------
 2186|      0|            spec.type = SCAN_PTRDIFF_T;
 2187|      0|            p++;
 2188|      0|            break;
 2189|       |
 2190|      0|        case 'z':
  ------------------
  |  Branch (2190:9): [True: 0, False: 309k]
  ------------------
 2191|      0|            spec.type = SCAN_SIZE_T;
 2192|      0|            p++;
 2193|      0|            break;
 2194|       |
 2195|   202k|        default:
  ------------------
  |  Branch (2195:9): [True: 202k, False: 107k]
  ------------------
 2196|   202k|            spec.type = SCAN_INT;
 2197|   202k|            break;
 2198|   309k|        }
 2199|       |
 2200|   309k|        if (discard) {
  ------------------
  |  Branch (2200:13): [True: 0, False: 309k]
  ------------------
 2201|      0|            spec.type = SCAN_DISCARD;
 2202|      0|        }
 2203|       |
 2204|   309k|        c = *p++;
 2205|   309k|        if (c != 'c' && c != 'n' && c != '[') {
  ------------------
  |  Branch (2205:13): [True: 309k, False: 0]
  |  Branch (2205:25): [True: 301k, False: 7.79k]
  |  Branch (2205:37): [True: 235k, False: 66.1k]
  ------------------
 2206|   235k|            s = skip_spaces(s);
 2207|   235k|        }
 2208|   309k|        switch (c) {
  ------------------
  |  Branch (2208:17): [True: 309k, False: 0]
  ------------------
 2209|   122k|        case 'd':
  ------------------
  |  Branch (2209:9): [True: 122k, False: 186k]
  ------------------
 2210|   122k|            s = scan_int(s, &spec, 10, args);
 2211|   122k|            break;
 2212|       |
 2213|  12.2k|        case 'i':
  ------------------
  |  Branch (2213:9): [True: 12.2k, False: 296k]
  ------------------
 2214|  12.2k|            s = scan_int(s, &spec, 0, args);
 2215|  12.2k|            break;
 2216|       |
 2217|      0|        case 'o':
  ------------------
  |  Branch (2217:9): [True: 0, False: 309k]
  ------------------
 2218|      0|            s = scan_int(s, &spec, 8, args);
 2219|      0|            break;
 2220|       |
 2221|  83.6k|        case 'u':
  ------------------
  |  Branch (2221:9): [True: 83.6k, False: 225k]
  ------------------
 2222|  83.6k|            s = scan_int(s, &spec, 10, args);
 2223|  83.6k|            break;
 2224|       |
 2225|  16.9k|        case 'x':
  ------------------
  |  Branch (2225:9): [True: 16.9k, False: 292k]
  ------------------
 2226|  16.9k|        case 'X':
  ------------------
  |  Branch (2226:9): [True: 0, False: 309k]
  ------------------
 2227|  16.9k|            s = scan_int(s, &spec, 16, args);
 2228|  16.9k|            break;
 2229|       |
 2230|      0|        case 'e':
  ------------------
  |  Branch (2230:9): [True: 0, False: 309k]
  ------------------
 2231|      0|        case 'f':
  ------------------
  |  Branch (2231:9): [True: 0, False: 309k]
  ------------------
 2232|      0|        case 'g':
  ------------------
  |  Branch (2232:9): [True: 0, False: 309k]
  ------------------
 2233|      0|        case 'E':
  ------------------
  |  Branch (2233:9): [True: 0, False: 309k]
  ------------------
 2234|      0|        case 'G':
  ------------------
  |  Branch (2234:9): [True: 0, False: 309k]
  ------------------
 2235|      0|            s = scan_float(s, &spec, args);
 2236|      0|            break;
 2237|       |
 2238|      0|        case 's':
  ------------------
  |  Branch (2238:9): [True: 0, False: 309k]
  ------------------
 2239|      0|            s = scan_string(s, &spec, args);
 2240|      0|            break;
 2241|       |
 2242|  66.1k|        case '[':
  ------------------
  |  Branch (2242:9): [True: 66.1k, False: 242k]
  ------------------
 2243|  66.1k|            s = scan_set(s, &spec, &p, args);
 2244|  66.1k|            break;
 2245|       |
 2246|      0|        case 'c':
  ------------------
  |  Branch (2246:9): [True: 0, False: 309k]
  ------------------
 2247|      0|            s = scan_chars(s, &spec, args);
 2248|      0|            break;
 2249|       |
 2250|  7.79k|        case 'n':
  ------------------
  |  Branch (2250:9): [True: 7.79k, False: 301k]
  ------------------
 2251|  7.79k|            if (spec.type != SCAN_DISCARD) {
  ------------------
  |  Branch (2251:17): [True: 7.79k, False: 0]
  ------------------
 2252|  7.79k|                *va_arg(*args, int *) = s - start;
 2253|  7.79k|            }
 2254|  7.79k|            break;
 2255|   309k|        }
 2256|       |
 2257|   309k|        if (!s) {
  ------------------
  |  Branch (2257:13): [True: 42.4k, False: 266k]
  ------------------
 2258|  42.4k|            goto exit;
 2259|  42.4k|        }
 2260|   309k|    }
 2261|   137k|    if (n) {
  ------------------
  |  Branch (2261:9): [True: 68.9k, False: 68.7k]
  ------------------
 2262|  68.9k|        *n = s - start;
 2263|  68.9k|    }
 2264|       |
 2265|   137k|    ok = true;
 2266|   268k|exit:
 2267|   268k|    return ok;
 2268|   137k|}
util.c:skip_spaces:
 1868|   243k|{
 1869|   243k|    while (isspace((unsigned char) *s)) {
  ------------------
  |  Branch (1869:12): [True: 884, False: 243k]
  ------------------
 1870|    884|        s++;
 1871|    884|    }
 1872|   243k|    return s;
 1873|   243k|}
util.c:scan_int:
 1877|   235k|{
 1878|   235k|    const char *start = s;
 1879|   235k|    uintmax_t value;
 1880|   235k|    bool negative;
 1881|   235k|    int n_digits;
 1882|       |
 1883|   235k|    negative = *s == '-';
 1884|   235k|    s += *s == '-' || *s == '+';
  ------------------
  |  Branch (1884:10): [True: 3.58k, False: 231k]
  |  Branch (1884:23): [True: 710, False: 230k]
  ------------------
 1885|       |
 1886|   235k|    if ((!base || base == 16) && *s == '0' && (s[1] == 'x' || s[1] == 'X')) {
  ------------------
  |  Branch (1886:10): [True: 12.2k, False: 222k]
  |  Branch (1886:19): [True: 16.9k, False: 205k]
  |  Branch (1886:34): [True: 9.73k, False: 19.5k]
  |  Branch (1886:48): [True: 622, False: 9.11k]
  |  Branch (1886:63): [True: 720, False: 8.39k]
  ------------------
 1887|  1.34k|        base = 16;
 1888|  1.34k|        s += 2;
 1889|   233k|    } else if (!base) {
  ------------------
  |  Branch (1889:16): [True: 11.3k, False: 222k]
  ------------------
 1890|  11.3k|        base = *s == '0' ? 8 : 10;
  ------------------
  |  Branch (1890:16): [True: 5.11k, False: 6.28k]
  ------------------
 1891|  11.3k|    }
 1892|       |
 1893|   235k|    if (s - start >= spec->width) {
  ------------------
  |  Branch (1893:9): [True: 0, False: 235k]
  ------------------
 1894|      0|        return NULL;
 1895|      0|    }
 1896|       |
 1897|   235k|    value = 0;
 1898|   235k|    n_digits = 0;
 1899|   909k|    while (s - start < spec->width) {
  ------------------
  |  Branch (1899:12): [True: 909k, False: 0]
  ------------------
 1900|   909k|        int digit = hexit_value(*s);
 1901|       |
 1902|   909k|        if (digit < 0 || digit >= base) {
  ------------------
  |  Branch (1902:13): [True: 233k, False: 676k]
  |  Branch (1902:26): [True: 1.96k, False: 674k]
  ------------------
 1903|   235k|            break;
 1904|   235k|        }
 1905|   674k|        value = value * base + digit;
 1906|   674k|        n_digits++;
 1907|   674k|        s++;
 1908|   674k|    }
 1909|   235k|    if (!n_digits) {
  ------------------
  |  Branch (1909:9): [True: 38.8k, False: 196k]
  ------------------
 1910|  38.8k|        return NULL;
 1911|  38.8k|    }
 1912|       |
 1913|   196k|    if (negative) {
  ------------------
  |  Branch (1913:9): [True: 3.01k, False: 193k]
  ------------------
 1914|  3.01k|        value = -value;
 1915|  3.01k|    }
 1916|       |
 1917|   196k|    switch (spec->type) {
  ------------------
  |  Branch (1917:13): [True: 196k, False: 0]
  ------------------
 1918|      0|    case SCAN_DISCARD:
  ------------------
  |  Branch (1918:5): [True: 0, False: 196k]
  ------------------
 1919|      0|        break;
 1920|  63.2k|    case SCAN_CHAR:
  ------------------
  |  Branch (1920:5): [True: 63.2k, False: 133k]
  ------------------
 1921|  63.2k|        *va_arg(*args, char *) = value;
 1922|  63.2k|        break;
 1923|  2.01k|    case SCAN_SHORT:
  ------------------
  |  Branch (1923:5): [True: 2.01k, False: 194k]
  ------------------
 1924|  2.01k|        *va_arg(*args, short int *) = value;
 1925|  2.01k|        break;
 1926|   126k|    case SCAN_INT:
  ------------------
  |  Branch (1926:5): [True: 126k, False: 69.9k]
  ------------------
 1927|   126k|        *va_arg(*args, int *) = value;
 1928|   126k|        break;
 1929|      0|    case SCAN_LONG:
  ------------------
  |  Branch (1929:5): [True: 0, False: 196k]
  ------------------
 1930|      0|        *va_arg(*args, long int *) = value;
 1931|      0|        break;
 1932|  4.70k|    case SCAN_LLONG:
  ------------------
  |  Branch (1932:5): [True: 4.70k, False: 191k]
  ------------------
 1933|  4.70k|        *va_arg(*args, long long int *) = value;
 1934|  4.70k|        break;
 1935|      0|    case SCAN_INTMAX_T:
  ------------------
  |  Branch (1935:5): [True: 0, False: 196k]
  ------------------
 1936|      0|        *va_arg(*args, intmax_t *) = value;
 1937|      0|        break;
 1938|      0|    case SCAN_PTRDIFF_T:
  ------------------
  |  Branch (1938:5): [True: 0, False: 196k]
  ------------------
 1939|      0|        *va_arg(*args, ptrdiff_t *) = value;
 1940|      0|        break;
 1941|      0|    case SCAN_SIZE_T:
  ------------------
  |  Branch (1941:5): [True: 0, False: 196k]
  ------------------
 1942|      0|        *va_arg(*args, size_t *) = value;
 1943|      0|        break;
 1944|   196k|    }
 1945|   196k|    return s;
 1946|   196k|}
util.c:scan_output_string:
 2016|  62.6k|{
 2017|  62.6k|    if (spec->type != SCAN_DISCARD) {
  ------------------
  |  Branch (2017:9): [True: 62.6k, False: 0]
  ------------------
 2018|       |        char *out = va_arg(*args, char *);
 2019|  62.6k|        memcpy(out, s, n);
 2020|  62.6k|        out[n] = '\0';
 2021|  62.6k|    }
 2022|  62.6k|}
util.c:scan_set:
 2072|  66.1k|{
 2073|  66.1k|    unsigned long set[BITMAP_N_LONGS(UCHAR_MAX + 1)];
 2074|  66.1k|    bool complemented;
 2075|  66.1k|    unsigned int n;
 2076|       |
 2077|       |    /* Parse the scan set. */
 2078|  66.1k|    memset(set, 0, sizeof set);
 2079|  66.1k|    *pp = parse_scanset(*pp, set, &complemented);
 2080|       |
 2081|       |    /* Parse the data. */
 2082|  66.1k|    n = 0;
 2083|   579k|    while (s[n]
  ------------------
  |  Branch (2083:12): [True: 520k, False: 58.5k]
  ------------------
 2084|   520k|           && bitmap_is_set(set, (unsigned char) s[n]) == !complemented
  ------------------
  |  Branch (2084:15): [True: 512k, False: 7.59k]
  ------------------
 2085|   512k|           && n < spec->width) {
  ------------------
  |  Branch (2085:15): [True: 512k, False: 1]
  ------------------
 2086|   512k|        n++;
 2087|   512k|    }
 2088|  66.1k|    if (!n) {
  ------------------
  |  Branch (2088:9): [True: 3.55k, False: 62.6k]
  ------------------
 2089|  3.55k|        return NULL;
 2090|  3.55k|    }
 2091|  62.6k|    scan_output_string(spec, s, n, args);
 2092|  62.6k|    return s + n;
 2093|  66.1k|}
util.c:parse_scanset:
 2044|  66.1k|{
 2045|  66.1k|    const uint8_t *p = (const uint8_t *) p_;
 2046|       |
 2047|  66.1k|    *complemented = *p == '^';
 2048|  66.1k|    p += *complemented;
 2049|       |
 2050|  66.1k|    if (*p == ']') {
  ------------------
  |  Branch (2050:9): [True: 0, False: 66.1k]
  ------------------
 2051|      0|        bitmap_set1(set, ']');
 2052|      0|        p++;
 2053|      0|    }
 2054|       |
 2055|  1.65M|    while (*p && *p != ']') {
  ------------------
  |  Branch (2055:12): [True: 1.65M, False: 0]
  |  Branch (2055:18): [True: 1.58M, False: 66.1k]
  ------------------
 2056|  1.58M|        if (p[1] == '-' && p[2] != ']' && p[2] > *p) {
  ------------------
  |  Branch (2056:13): [True: 0, False: 1.58M]
  |  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.58M|        } else {
 2060|  1.58M|            bitmap_set1(set, *p++);
 2061|  1.58M|        }
 2062|  1.58M|    }
 2063|  66.1k|    if (*p == ']') {
  ------------------
  |  Branch (2063:9): [True: 66.1k, False: 0]
  ------------------
 2064|  66.1k|        p++;
 2065|  66.1k|    }
 2066|  66.1k|    return (const char *) p;
 2067|  66.1k|}

match.c:ovs_u128_and:
  515|  8.33k|{
  516|  8.33k|    ovs_u128 dst;
  517|       |
  518|  8.33k|    dst.u64.hi = a.u64.hi & b.u64.hi;
  519|  8.33k|    dst.u64.lo = a.u64.lo & b.u64.lo;
  520|       |
  521|  8.33k|    return dst;
  522|  8.33k|}
ofpbuf.c:nullable_memset:
  198|   652k|{
  199|   652k|    if (n) {
  ------------------
  |  Branch (199:9): [True: 629k, False: 22.6k]
  ------------------
  200|   629k|        memset(dst, c, n);
  201|   629k|    }
  202|   652k|}
packets.c:ctz32:
  284|  10.7k|{
  285|  10.7k|    return n ? raw_ctz(n) : 32;
  ------------------
  |  Branch (285:12): [True: 72, False: 10.6k]
  ------------------
  286|  10.7k|}
packets.c:raw_ctz:
  261|     72|{
  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|     72|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 72, False: 0]
  |  Branch (265:54): [True: 72, False: 0]
  ------------------
  266|     72|            ? __builtin_ctz(n)
  267|     72|            : __builtin_ctzll(n));
  268|     72|}
packets.c:be32_prefix_mask:
  414|    965|{
  415|       |    return htonl((uint64_t)UINT32_MAX << (32 - plen));
  416|    965|}
tun-metadata.c:raw_ctz:
  261|    452|{
  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|    452|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 0, False: 452]
  |  Branch (265:54): [True: 0, False: 0]
  ------------------
  266|    452|            ? __builtin_ctz(n)
  267|    452|            : __builtin_ctzll(n));
  268|    452|}
tun-metadata.c:zero_rightmost_1bit:
  390|    452|{
  391|    452|    return x & (x - 1);
  392|    452|}
util.c:nullable_memcpy:
  188|    360|{
  189|    360|    if (n) {
  ------------------
  |  Branch (189:9): [True: 360, False: 0]
  ------------------
  190|    360|        memcpy(dst, src, n);
  191|    360|    }
  192|    360|}
flow.c:rightmost_1bit:
  382|    229|{
  383|    229|    return x & -x;
  384|    229|}
flow.c:count_1bits:
  332|  21.4k|{
  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|  21.4k|    const uint64_t h55 = UINT64_C(0x5555555555555555);
  341|  21.4k|    const uint64_t h33 = UINT64_C(0x3333333333333333);
  342|  21.4k|    const uint64_t h0F = UINT64_C(0x0F0F0F0F0F0F0F0F);
  343|       |    const uint64_t h01 = UINT64_C(0x0101010101010101);
  344|  21.4k|    x -= (x >> 1) & h55;               /* Count of each 2 bits in-place. */
  345|  21.4k|    x = (x & h33) + ((x >> 2) & h33);  /* Count of each 4 bits in-place. */
  346|  21.4k|    x = (x + (x >> 4)) & h0F;          /* Count of each 8 bits in-place. */
  347|  21.4k|    return (x * h01) >> 56;            /* Sum of all bytes. */
  348|  21.4k|#endif
  349|  21.4k|}
flow.c:raw_ctz:
  261|  67.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|  67.0k|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 0, False: 67.0k]
  |  Branch (265:54): [True: 0, False: 0]
  ------------------
  266|  67.0k|            ? __builtin_ctz(n)
  267|  67.0k|            : __builtin_ctzll(n));
  268|  67.0k|}
flow.c:zero_rightmost_1bit:
  390|  67.0k|{
  391|  67.0k|    return x & (x - 1);
  392|  67.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|    467|{
 1001|    467|    return module->min_level >= level;
 1002|    467|}
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|    467|{
 1331|    467|    if (!module->honor_rate_limits) {
  ------------------
  |  Branch (1331:9): [True: 0, False: 467]
  ------------------
 1332|      0|        return false;
 1333|      0|    }
 1334|       |
 1335|    467|    if (!vlog_is_enabled(module, level)) {
  ------------------
  |  Branch (1335:9): [True: 467, False: 0]
  ------------------
 1336|    467|        return true;
 1337|    467|    }
 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|  24.2k|{
   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|  24.2k|    const char *stream = (const char *) data;
   93|  24.2k|    if (size < 3 || stream[size - 1] != '\0' || strchr(&stream[1], '\n') ||
  ------------------
  |  Branch (93:9): [True: 2, False: 24.2k]
  |  Branch (93:21): [True: 11, False: 24.2k]
  |  Branch (93:49): [True: 1, False: 24.2k]
  ------------------
   94|  24.2k|        strlen(&stream[1]) != size - 2) {
  ------------------
  |  Branch (94:9): [True: 21, False: 24.1k]
  ------------------
   95|     35|        return 0;
   96|     35|    }
   97|       |
   98|       |    /* Disable logging to avoid write to disk. */
   99|  24.1k|    static bool isInit = false;
  100|  24.1k|    if (!isInit) {
  ------------------
  |  Branch (100:9): [True: 1, False: 24.1k]
  ------------------
  101|      1|        vlog_set_verbosity("off");
  102|      1|        isInit = true;
  103|      1|    }
  104|       |
  105|       |    /* Decide test parameters using first byte of fuzzed input. */
  106|  24.1k|    int command = (stream[0] % OFPFC_DELETE_STRICT) + 1;
  107|       |
  108|       |    /* Fuzz extended match parsing. */
  109|  24.1k|    const char *input = &stream[1];
  110|  24.1k|    ofctl_parse_flow(input, command);
  111|       |
  112|  24.1k|    return 0;
  113|  24.2k|}
ofctl_parse_target.c:ofctl_parse_flow:
   57|  24.1k|{
   58|  24.1k|    enum ofputil_protocol usable_protocols;
   59|  24.1k|    struct ofputil_flow_mod fm;
   60|  24.1k|    char *error;
   61|       |
   62|  24.1k|    error = parse_ofp_flow_mod_str(&fm, input, NULL, NULL,
   63|  24.1k|                                   command, &usable_protocols);
   64|  24.1k|    if (error) {
  ------------------
  |  Branch (64:9): [True: 13.4k, False: 10.7k]
  ------------------
   65|  13.4k|        printf("Error encountered: %s\n", error);
   66|  13.4k|        free(error);
   67|  13.4k|    } else {
   68|  10.7k|        ofctl_parse_flows__(&fm, 1, usable_protocols);
   69|  10.7k|    }
   70|  24.1k|}
ofctl_parse_target.c:ofctl_parse_flows__:
   14|  10.7k|{
   15|  10.7k|    enum ofputil_protocol protocol = 0;
   16|  10.7k|    char *usable_s;
   17|  10.7k|    size_t i;
   18|       |
   19|  10.7k|    usable_s = ofputil_protocols_to_string(usable_protocols);
   20|  10.7k|    printf("usable protocols: %s\n", usable_s);
   21|  10.7k|    free(usable_s);
   22|       |
   23|  10.7k|    if (!(usable_protocols & OFPUTIL_P_ANY)) {
  ------------------
  |  |  100|  10.7k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  |  Branch (23:9): [True: 225, False: 10.4k]
  ------------------
   24|    225|        printf("no usable protocol\n");
   25|    225|        goto free;
   26|    225|    }
   27|  23.4k|    for (i = 0; i < sizeof(enum ofputil_protocol) * CHAR_BIT; i++) {
  ------------------
  |  Branch (27:17): [True: 23.4k, False: 0]
  ------------------
   28|  23.4k|        protocol = 1u << i;
   29|  23.4k|        if (protocol & usable_protocols & OFPUTIL_P_ANY) {
  ------------------
  |  |  100|  23.4k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  |  Branch (29:13): [True: 10.4k, False: 12.9k]
  ------------------
   30|  10.4k|            break;
   31|  10.4k|        }
   32|  23.4k|    }
   33|  10.4k|    ovs_assert(is_pow2(protocol));
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
   34|       |
   35|  10.4k|    printf("chosen protocol: %s\n", ofputil_protocol_to_string(protocol));
   36|       |
   37|  20.9k|    for (i = 0; i < n_fms; i++) {
  ------------------
  |  Branch (37:17): [True: 10.4k, False: 10.4k]
  ------------------
   38|  10.4k|        struct ofputil_flow_mod *fm = &fms[i];
   39|  10.4k|        struct ofpbuf *msg;
   40|       |
   41|  10.4k|        msg = ofputil_encode_flow_mod(fm, protocol);
   42|  10.4k|        ofpbuf_delete(msg);
   43|  10.4k|    }
   44|       |
   45|  10.7k|free:
   46|  21.4k|    for (i = 0; i < n_fms; i++) {
  ------------------
  |  Branch (46:17): [True: 10.7k, False: 10.7k]
  ------------------
   47|  10.7k|        struct ofputil_flow_mod *fm = &fms[i];
   48|  10.7k|        free(CONST_CAST(struct ofpact *, fm->ofpacts));
  ------------------
  |  |   85|  10.7k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  10.7k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  10.7k|     (TYPE) (POINTER))
  ------------------
   49|  10.7k|        minimatch_destroy(&fm->match);
   50|  10.7k|    }
   51|  10.7k|}

