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

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|   186k|{
  360|   186k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   186k|}
nx-match.c:hmap_next_with_hash__:
  348|   186k|{
  349|   524k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 340k, False: 183k]
  |  Branch (349:28): [True: 338k, False: 2.70k]
  ------------------
  350|   338k|        node = node->next;
  351|   338k|    }
  352|   186k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   186k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   186k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   186k|     (TYPE) (POINTER))
  ------------------
  353|   186k|}
nx-match.c:hmap_next_with_hash:
  395|    214|{
  396|    214|    return hmap_next_with_hash__(node->next, node->hash);
  397|    214|}
ofp-actions.c:hmap_first_with_hash:
  359|   345k|{
  360|   345k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   345k|}
ofp-actions.c:hmap_next_with_hash__:
  348|   345k|{
  349|   649k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 649k, False: 0]
  |  Branch (349:28): [True: 304k, False: 345k]
  ------------------
  350|   304k|        node = node->next;
  351|   304k|    }
  352|   345k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   345k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   345k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   345k|     (TYPE) (POINTER))
  ------------------
  353|   345k|}
ofp-actions.c:hmap_insert_at:
  306|    384|{
  307|    384|    hmap_insert_fast(hmap, node, hash);
  308|    384|    if (hmap->n / 2 > hmap->mask) {
  ------------------
  |  Branch (308:9): [True: 7, False: 377]
  ------------------
  309|      7|        hmap_expand_at(hmap, where);
  310|      7|    }
  311|    384|}
ofp-actions.c:hmap_insert_fast:
  289|    384|{
  290|    384|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|    384|    node->hash = hash;
  292|    384|    node->next = *bucket;
  293|    384|    *bucket = node;
  294|    384|    hmap->n++;
  295|    384|}
shash.c:hmap_insert_at:
  306|    228|{
  307|    228|    hmap_insert_fast(hmap, node, hash);
  308|    228|    if (hmap->n / 2 > hmap->mask) {
  ------------------
  |  Branch (308:9): [True: 6, False: 222]
  ------------------
  309|      6|        hmap_expand_at(hmap, where);
  310|      6|    }
  311|    228|}
shash.c:hmap_insert_fast:
  289|    228|{
  290|    228|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|    228|    node->hash = hash;
  292|    228|    node->next = *bucket;
  293|    228|    *bucket = node;
  294|    228|    hmap->n++;
  295|    228|}
shash.c:hmap_first_with_hash:
  359|   381k|{
  360|   381k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   381k|}
shash.c:hmap_next_with_hash__:
  348|   382k|{
  349|   908k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 775k, False: 133k]
  |  Branch (349:28): [True: 526k, False: 248k]
  ------------------
  350|   526k|        node = node->next;
  351|   526k|    }
  352|   382k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   382k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   382k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   382k|     (TYPE) (POINTER))
  ------------------
  353|   382k|}
shash.c:hmap_next_with_hash:
  395|    276|{
  396|    276|    return hmap_next_with_hash__(node->next, node->hash);
  397|    276|}

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

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

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

ofp-actions.c:ofpact_next:
  212|   824k|{
  213|   824k|    return ALIGNED_CAST(struct ofpact *,
  ------------------
  |  |  434|   824k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  214|   824k|                        (uint8_t *) ofpact + OFPACT_ALIGN(ofpact->len));
  215|   824k|}
ofp-actions.c:ofpact_get_CLONE:
 1289|  12.5k|    {                                                                   \
 1290|  12.5k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  12.5k|#define ovs_assert ovs_ignore
  ------------------
 1291|  12.5k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  12.5k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  12.5k|    }                                                                   \
ofp-actions.c:ofpact_get_CT:
 1289|  18.3k|    {                                                                   \
 1290|  18.3k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  18.3k|#define ovs_assert ovs_ignore
  ------------------
 1291|  18.3k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  18.3k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  18.3k|    }                                                                   \
ofp-actions.c:ofpact_get_WRITE_ACTIONS:
 1289|    116|    {                                                                   \
 1290|    116|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    116|#define ovs_assert ovs_ignore
  ------------------
 1291|    116|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    116|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    116|    }                                                                   \
ofp-actions.c:ofpact_put_SET_FIELD:
 1303|  46.3k|    {                                                                   \
 1304|  46.3k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  46.3k|                                            sizeof(struct STRUCT));     \
 1306|  46.3k|    }                                                                   \
ofp-actions.c:ofpact_finish_SET_FIELD:
 1317|  46.3k|    {                                                                   \
 1318|  46.3k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  46.3k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  46.3k|#define ovs_assert ovs_ignore
  ------------------
 1320|  46.3k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  46.3k|    }
ofp-actions.c:ofpact_end:
  221|   754k|{
  222|   754k|    return ofpacts
  ------------------
  |  Branch (222:12): [True: 750k, False: 3.83k]
  ------------------
  223|   754k|           ? ALIGNED_CAST(struct ofpact *, (uint8_t *) ofpacts + ofpacts_len)
  ------------------
  |  |  434|   750k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  224|       |           : NULL;
  225|   754k|}
ofp-actions.c:ofpact_put_METER:
 1303|    594|    {                                                                   \
 1304|    594|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    594|                                            sizeof(struct STRUCT));     \
 1306|    594|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT:
 1303|   134k|    {                                                                   \
 1304|   134k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|   134k|                                            sizeof(struct STRUCT));     \
 1306|   134k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_VLAN_VID:
 1303|  1.86k|    {                                                                   \
 1304|  1.86k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.86k|                                            sizeof(struct STRUCT));     \
 1306|  1.86k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_VLAN_PCP:
 1303|  1.63k|    {                                                                   \
 1304|  1.63k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.63k|                                            sizeof(struct STRUCT));     \
 1306|  1.63k|    }                                                                   \
ofp-actions.c:ofpact_put_PUSH_VLAN:
 1303|  1.27k|    {                                                                   \
 1304|  1.27k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.27k|                                            sizeof(struct STRUCT));     \
 1306|  1.27k|    }                                                                   \
ofp-actions.c:ofpact_put_STRIP_VLAN:
 1303|  2.64k|    {                                                                   \
 1304|  2.64k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.64k|                                            sizeof(struct STRUCT));     \
 1306|  2.64k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_ETH_SRC:
 1303|    459|    {                                                                   \
 1304|    459|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    459|                                            sizeof(struct STRUCT));     \
 1306|    459|    }                                                                   \
ofp-actions.c:ofpact_put_SET_ETH_DST:
 1303|    640|    {                                                                   \
 1304|    640|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    640|                                            sizeof(struct STRUCT));     \
 1306|    640|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IPV4_SRC:
 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_IPV4_DST:
 1303|    749|    {                                                                   \
 1304|    749|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    749|                                            sizeof(struct STRUCT));     \
 1306|    749|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_DSCP:
 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_IP_ECN:
 1303|  1.56k|    {                                                                   \
 1304|  1.56k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.56k|                                            sizeof(struct STRUCT));     \
 1306|  1.56k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_L4_SRC_PORT:
 1303|  2.11k|    {                                                                   \
 1304|  2.11k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.11k|                                            sizeof(struct STRUCT));     \
 1306|  2.11k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_L4_DST_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_ENQUEUE:
 1303|  1.21k|    {                                                                   \
 1304|  1.21k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.21k|                                            sizeof(struct STRUCT));     \
 1306|  1.21k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_LABEL:
 1303|  2.72k|    {                                                                   \
 1304|  2.72k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.72k|                                            sizeof(struct STRUCT));     \
 1306|  2.72k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_TC:
 1303|  1.30k|    {                                                                   \
 1304|  1.30k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.30k|                                            sizeof(struct STRUCT));     \
 1306|  1.30k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_TTL:
 1303|    882|    {                                                                   \
 1304|    882|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    882|                                            sizeof(struct STRUCT));     \
 1306|    882|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_MPLS_TTL:
 1303|  2.87k|    {                                                                   \
 1304|  2.87k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.87k|                                            sizeof(struct STRUCT));     \
 1306|  2.87k|    }                                                                   \
ofp-actions.c:ofpact_put_PUSH_MPLS:
 1303|    624|    {                                                                   \
 1304|    624|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    624|                                            sizeof(struct STRUCT));     \
 1306|    624|    }                                                                   \
ofp-actions.c:ofpact_put_POP_MPLS:
 1303|  2.12k|    {                                                                   \
 1304|  2.12k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.12k|                                            sizeof(struct STRUCT));     \
 1306|  2.12k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_QUEUE:
 1303|    212|    {                                                                   \
 1304|    212|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    212|                                            sizeof(struct STRUCT));     \
 1306|    212|    }                                                                   \
ofp-actions.c:ofpact_put_GROUP:
 1303|    235|    {                                                                   \
 1304|    235|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    235|                                            sizeof(struct STRUCT));     \
 1306|    235|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_TTL:
 1303|  2.12k|    {                                                                   \
 1304|  2.12k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.12k|                                            sizeof(struct STRUCT));     \
 1306|  2.12k|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_TTL:
 1303|  2.85k|    {                                                                   \
 1304|  2.85k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.85k|                                            sizeof(struct STRUCT));     \
 1306|  2.85k|    }                                                                   \
ofp-actions.c:ofpact_finish_DEC_TTL:
 1317|  2.85k|    {                                                                   \
 1318|  2.85k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.85k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.85k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.85k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.85k|    }
ofp-actions.c:ofpact_put_REG_MOVE:
 1303|    431|    {                                                                   \
 1304|    431|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    431|                                            sizeof(struct STRUCT));     \
 1306|    431|    }                                                                   \
ofp-actions.c:ofpact_put_RESUBMIT:
 1303|  1.64k|    {                                                                   \
 1304|  1.64k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.64k|                                            sizeof(struct STRUCT));     \
 1306|  1.64k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_TUNNEL:
 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_POP_QUEUE:
 1303|    784|    {                                                                   \
 1304|    784|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    784|                                            sizeof(struct STRUCT));     \
 1306|    784|    }                                                                   \
ofp-actions.c:ofpact_put_NOTE:
 1303|  2.30k|    {                                                                   \
 1304|  2.30k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.30k|                                            sizeof(struct STRUCT));     \
 1306|  2.30k|    }                                                                   \
ofp-actions.c:ofpact_finish_NOTE:
 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_MULTIPATH:
 1303|  2.68k|    {                                                                   \
 1304|  2.68k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.68k|                                            sizeof(struct STRUCT));     \
 1306|  2.68k|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT_REG:
 1303|    720|    {                                                                   \
 1304|    720|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    720|                                            sizeof(struct STRUCT));     \
 1306|    720|    }                                                                   \
ofp-actions.c:ofpact_put_EXIT:
 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_FIN_TIMEOUT:
 1303|  1.39k|    {                                                                   \
 1304|  1.39k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.39k|                                            sizeof(struct STRUCT));     \
 1306|  1.39k|    }                                                                   \
ofp-actions.c:ofpact_put_CONTROLLER:
 1303|  8.23k|    {                                                                   \
 1304|  8.23k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  8.23k|                                            sizeof(struct STRUCT));     \
 1306|  8.23k|    }                                                                   \
ofp-actions.c:ofpact_finish_CONTROLLER:
 1317|  8.22k|    {                                                                   \
 1318|  8.22k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  8.22k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  8.22k|#define ovs_assert ovs_ignore
  ------------------
 1320|  8.22k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  8.22k|    }
ofp-actions.c:ofpact_put_STACK_PUSH:
 1303|    509|    {                                                                   \
 1304|    509|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    509|                                            sizeof(struct STRUCT));     \
 1306|    509|    }                                                                   \
ofp-actions.c:ofpact_put_STACK_POP:
 1303|  2.16k|    {                                                                   \
 1304|  2.16k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.16k|                                            sizeof(struct STRUCT));     \
 1306|  2.16k|    }                                                                   \
ofp-actions.c:ofpact_put_SAMPLE:
 1303|  2.06k|    {                                                                   \
 1304|  2.06k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.06k|                                            sizeof(struct STRUCT));     \
 1306|  2.06k|    }                                                                   \
ofp-actions.c:ofpact_put_CONJUNCTION:
 1303|    534|    {                                                                   \
 1304|    534|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    534|                                            sizeof(struct STRUCT));     \
 1306|    534|    }                                                                   \
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|  10.1k|    {                                                                   \
 1290|  10.1k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  10.1k|#define ovs_assert ovs_ignore
  ------------------
 1291|  10.1k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  10.1k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  10.1k|    }                                                                   \
ofp-actions.c:ofpact_put_NAT:
 1303|  75.3k|    {                                                                   \
 1304|  75.3k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  75.3k|                                            sizeof(struct STRUCT));     \
 1306|  75.3k|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT_TRUNC:
 1303|  1.00k|    {                                                                   \
 1304|  1.00k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.00k|                                            sizeof(struct STRUCT));     \
 1306|  1.00k|    }                                                                   \
ofp-actions.c:ofpact_put_CLONE:
 1303|  8.92k|    {                                                                   \
 1304|  8.92k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  8.92k|                                            sizeof(struct STRUCT));     \
 1306|  8.92k|    }                                                                   \
ofp-actions.c:ofpact_finish_CLONE:
 1317|  8.92k|    {                                                                   \
 1318|  8.92k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  8.92k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  8.92k|#define ovs_assert ovs_ignore
  ------------------
 1320|  8.92k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  8.92k|    }
ofp-actions.c:ofpact_put_CT_CLEAR:
 1303|  2.63k|    {                                                                   \
 1304|  2.63k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.63k|                                            sizeof(struct STRUCT));     \
 1306|  2.63k|    }                                                                   \
ofp-actions.c:ofpact_put_ENCAP:
 1303|  2.32k|    {                                                                   \
 1304|  2.32k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.32k|                                            sizeof(struct STRUCT));     \
 1306|  2.32k|    }                                                                   \
ofp-actions.c:ofpact_finish_ENCAP:
 1317|  2.11k|    {                                                                   \
 1318|  2.11k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.11k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.11k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.11k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.11k|    }
ofp-actions.c:ofpact_put_DECAP:
 1303|  2.38k|    {                                                                   \
 1304|  2.38k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.38k|                                            sizeof(struct STRUCT));     \
 1306|  2.38k|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_NSH_TTL:
 1303|  1.23k|    {                                                                   \
 1304|  1.23k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.23k|                                            sizeof(struct STRUCT));     \
 1306|  1.23k|    }                                                                   \
ofp-actions.c:ofpact_put_CHECK_PKT_LARGER:
 1303|    528|    {                                                                   \
 1304|    528|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    528|                                            sizeof(struct STRUCT));     \
 1306|    528|    }                                                                   \
ofp-actions.c:ofpact_put_DELETE_FIELD:
 1303|    332|    {                                                                   \
 1304|    332|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    332|                                            sizeof(struct STRUCT));     \
 1306|    332|    }                                                                   \
ofp-actions.c:ofpact_put_DEBUG_SLOW:
 1303|  1.80k|    {                                                                   \
 1304|  1.80k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.80k|                                            sizeof(struct STRUCT));     \
 1306|  1.80k|    }                                                                   \
ofp-actions.c:ofpact_put_DEBUG_RECIRC:
 1303|  1.11k|    {                                                                   \
 1304|  1.11k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.11k|                                            sizeof(struct STRUCT));     \
 1306|  1.11k|    }                                                                   \
ofp-actions.c:ofpact_put_CLEAR_ACTIONS:
 1303|    254|    {                                                                   \
 1304|    254|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    254|                                            sizeof(struct STRUCT));     \
 1306|    254|    }                                                                   \
ofp-actions.c:ofpact_put_WRITE_METADATA:
 1303|    432|    {                                                                   \
 1304|    432|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    432|                                            sizeof(struct STRUCT));     \
 1306|    432|    }                                                                   \
ofp-actions.c:ofpact_put_GOTO_TABLE:
 1303|    214|    {                                                                   \
 1304|    214|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    214|                                            sizeof(struct STRUCT));     \
 1306|    214|    }                                                                   \
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|  14.5k|    {                                                                   \
 1290|  14.5k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  14.5k|#define ovs_assert ovs_ignore
  ------------------
 1291|  14.5k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  14.5k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  14.5k|    }                                                                   \
ofp-actions.c:ofpact_get_ENQUEUE:
 1289|  1.72k|    {                                                                   \
 1290|  1.72k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.72k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.72k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.72k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.72k|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT_REG:
 1289|    770|    {                                                                   \
 1290|    770|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    770|#define ovs_assert ovs_ignore
  ------------------
 1291|    770|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    770|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    770|    }                                                                   \
ofp-actions.c:ofpact_get_BUNDLE:
 1289|  3.05k|    {                                                                   \
 1290|  3.05k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.05k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.05k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.05k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.05k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_FIELD:
 1289|  53.1k|    {                                                                   \
 1290|  53.1k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  53.1k|#define ovs_assert ovs_ignore
  ------------------
 1291|  53.1k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  53.1k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  53.1k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_VLAN_VID:
 1289|  3.28k|    {                                                                   \
 1290|  3.28k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.28k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.28k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.28k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.28k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_VLAN_PCP:
 1289|  3.20k|    {                                                                   \
 1290|  3.20k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.20k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.20k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.20k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.20k|    }                                                                   \
ofp-actions.c:ofpact_get_STRIP_VLAN:
 1289|  4.17k|    {                                                                   \
 1290|  4.17k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.17k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.17k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.17k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.17k|    }                                                                   \
ofp-actions.c:ofpact_get_PUSH_VLAN:
 1289|  1.80k|    {                                                                   \
 1290|  1.80k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.80k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.80k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.80k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.80k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_ETH_SRC:
 1289|    898|    {                                                                   \
 1290|    898|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    898|#define ovs_assert ovs_ignore
  ------------------
 1291|    898|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    898|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    898|    }                                                                   \
ofp-actions.c:ofpact_get_SET_ETH_DST:
 1289|    964|    {                                                                   \
 1290|    964|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    964|#define ovs_assert ovs_ignore
  ------------------
 1291|    964|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    964|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    964|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IPV4_SRC:
 1289|  1.68k|    {                                                                   \
 1290|  1.68k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.68k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.68k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.68k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.68k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IPV4_DST:
 1289|  1.47k|    {                                                                   \
 1290|  1.47k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.47k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.47k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.47k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.47k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_DSCP:
 1289|  2.45k|    {                                                                   \
 1290|  2.45k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.45k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.45k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.45k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.45k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_ECN:
 1289|  2.73k|    {                                                                   \
 1290|  2.73k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.73k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.73k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.73k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.73k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_TTL:
 1289|  3.74k|    {                                                                   \
 1290|  3.74k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.74k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.74k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.74k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.74k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_L4_SRC_PORT:
 1289|  4.18k|    {                                                                   \
 1290|  4.18k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.18k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.18k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.18k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.18k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_L4_DST_PORT:
 1289|  4.17k|    {                                                                   \
 1290|  4.17k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.17k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.17k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.17k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.17k|    }                                                                   \
ofp-actions.c:ofpact_get_REG_MOVE:
 1289|    790|    {                                                                   \
 1290|    790|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    790|#define ovs_assert ovs_ignore
  ------------------
 1291|    790|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    790|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    790|    }                                                                   \
ofp-actions.c:ofpact_get_STACK_PUSH:
 1289|    962|    {                                                                   \
 1290|    962|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    962|#define ovs_assert ovs_ignore
  ------------------
 1291|    962|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    962|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    962|    }                                                                   \
ofp-actions.c:ofpact_get_STACK_POP:
 1289|  3.86k|    {                                                                   \
 1290|  3.86k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.86k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.86k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.86k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.86k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_TTL:
 1289|  5.35k|    {                                                                   \
 1290|  5.35k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.35k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.35k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.35k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.35k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_LABEL:
 1289|  5.39k|    {                                                                   \
 1290|  5.39k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.39k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.39k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.39k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.39k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_TC:
 1289|  2.43k|    {                                                                   \
 1290|  2.43k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.43k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.43k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.43k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.43k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_TTL:
 1289|  1.69k|    {                                                                   \
 1290|  1.69k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.69k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.69k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.69k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.69k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_MPLS_TTL:
 1289|  5.70k|    {                                                                   \
 1290|  5.70k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.70k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.70k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.70k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.70k|    }                                                                   \
ofp-actions.c:ofpact_get_PUSH_MPLS:
 1289|  1.14k|    {                                                                   \
 1290|  1.14k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.14k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.14k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.14k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.14k|    }                                                                   \
ofp-actions.c:ofpact_get_POP_MPLS:
 1289|  4.21k|    {                                                                   \
 1290|  4.21k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.21k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.21k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.21k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.21k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_NSH_TTL:
 1289|  1.14k|    {                                                                   \
 1290|  1.14k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.14k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.14k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.14k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.14k|    }                                                                   \
ofp-actions.c:ofpact_get_DELETE_FIELD:
 1289|    529|    {                                                                   \
 1290|    529|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    529|#define ovs_assert ovs_ignore
  ------------------
 1291|    529|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    529|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    529|    }                                                                   \
ofp-actions.c:ofpact_get_ENCAP:
 1289|  3.04k|    {                                                                   \
 1290|  3.04k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.04k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.04k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.04k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.04k|    }                                                                   \
ofp-actions.c:ofpact_get_DECAP:
 1289|  3.97k|    {                                                                   \
 1290|  3.97k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.97k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.97k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.97k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.97k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_TUNNEL:
 1289|  2.40k|    {                                                                   \
 1290|  2.40k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.40k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.40k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.40k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.40k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_QUEUE:
 1289|    402|    {                                                                   \
 1290|    402|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    402|#define ovs_assert ovs_ignore
  ------------------
 1291|    402|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    402|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    402|    }                                                                   \
ofp-actions.c:ofpact_get_POP_QUEUE:
 1289|  1.32k|    {                                                                   \
 1290|  1.32k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.32k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.32k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.32k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.32k|    }                                                                   \
ofp-actions.c:ofpact_get_FIN_TIMEOUT:
 1289|  2.24k|    {                                                                   \
 1290|  2.24k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.24k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.24k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.24k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.24k|    }                                                                   \
ofp-actions.c:ofpact_get_RESUBMIT:
 1289|  2.07k|    {                                                                   \
 1290|  2.07k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.07k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.07k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.07k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.07k|    }                                                                   \
ofp-actions.c:ofpact_get_LEARN:
 1289|  65.3k|    {                                                                   \
 1290|  65.3k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  65.3k|#define ovs_assert ovs_ignore
  ------------------
 1291|  65.3k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  65.3k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  65.3k|    }                                                                   \
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.45k|    {                                                                   \
 1290|  1.45k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.45k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.45k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.45k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.45k|    }                                                                   \
ofp-actions.c:ofpact_get_NOTE:
 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_EXIT:
 1289|  1.84k|    {                                                                   \
 1290|  1.84k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.84k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.84k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.84k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.84k|    }                                                                   \
ofp-actions.c:ofpact_get_SAMPLE:
 1289|  3.30k|    {                                                                   \
 1290|  3.30k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.30k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.30k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.30k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.30k|    }                                                                   \
ofp-actions.c:ofpact_ct_get_action_len:
  723|  17.8k|{
  724|       |    return oc->ofpact.len - offsetof(struct ofpact_conntrack, actions);
  725|  17.8k|}
ofp-actions.c:ofpact_get_CT_CLEAR:
 1289|  4.11k|    {                                                                   \
 1290|  4.11k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.11k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.11k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.11k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.11k|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT_TRUNC:
 1289|  1.87k|    {                                                                   \
 1290|  1.87k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.87k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.87k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.87k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.87k|    }                                                                   \
ofp-actions.c:ofpact_nest_get_action_len:
  673|  12.6k|{
  674|       |    return on->ofpact.len - offsetof(struct ofpact_nest, actions);
  675|  12.6k|}
ofp-actions.c:ofpact_get_CHECK_PKT_LARGER:
 1289|    814|    {                                                                   \
 1290|    814|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    814|#define ovs_assert ovs_ignore
  ------------------
 1291|    814|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    814|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    814|    }                                                                   \
ofp-actions.c:ofpact_get_DEBUG_RECIRC:
 1289|  1.69k|    {                                                                   \
 1290|  1.69k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.69k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.69k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.69k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.69k|    }                                                                   \
ofp-actions.c:ofpact_get_DEBUG_SLOW:
 1289|  3.54k|    {                                                                   \
 1290|  3.54k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.54k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.54k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.54k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.54k|    }                                                                   \
ofp-actions.c:ofpact_get_CLEAR_ACTIONS:
 1289|     16|    {                                                                   \
 1290|     16|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     16|#define ovs_assert ovs_ignore
  ------------------
 1291|     16|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     16|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     16|    }                                                                   \
ofp-actions.c:ofpact_get_WRITE_METADATA:
 1289|     22|    {                                                                   \
 1290|     22|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     22|#define ovs_assert ovs_ignore
  ------------------
 1291|     22|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     22|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     22|    }                                                                   \
ofp-actions.c:ofpact_get_GOTO_TABLE:
 1289|     18|    {                                                                   \
 1290|     18|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     18|#define ovs_assert ovs_ignore
  ------------------
 1291|     18|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     18|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     18|    }                                                                   \
ofp-actions.c:ofpact_learn_spec_end:
  894|  87.6k|{
  895|  87.6k|    return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  87.6k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  896|  87.6k|                        ofpact_next(&learn->ofpact));
  897|  87.6k|}
ofp-actions.c:ofpact_learn_spec_imm:
  850|  52.5k|{
  851|  52.5k|    return spec + 1;
  852|  52.5k|}
ofp-actions.c:ofpact_learn_spec_next:
  856|  55.1k|{
  857|  55.1k|    if (spec->src_type == NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  55.1k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (857:9): [True: 52.5k, False: 2.58k]
  ------------------
  858|  52.5k|        unsigned int n_bytes = OFPACT_ALIGN(DIV_ROUND_UP(spec->n_bits, 8));
  ------------------
  |  |  205|  52.5k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  52.5k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  52.5k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  859|  52.5k|        return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  52.5k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  860|  52.5k|                            (const uint8_t *)(spec + 1) + n_bytes);
  861|  52.5k|    }
  862|  2.58k|    return spec + 1;
  863|  55.1k|}
ofp-actions.c:ofpact_get_GROUP:
 1289|    442|    {                                                                   \
 1290|    442|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    442|#define ovs_assert ovs_ignore
  ------------------
 1291|    442|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    442|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    442|    }                                                                   \
ofp-actions.c:ofpact_get_METER:
 1289|    269|    {                                                                   \
 1290|    269|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    269|#define ovs_assert ovs_ignore
  ------------------
 1291|    269|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    269|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    269|    }                                                                   \
bundle.c:ofpact_put_BUNDLE:
 1303|  2.98k|    {                                                                   \
 1304|  2.98k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.98k|                                            sizeof(struct STRUCT));     \
 1306|  2.98k|    }                                                                   \
bundle.c:ofpact_finish_BUNDLE:
 1317|  2.98k|    {                                                                   \
 1318|  2.98k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.98k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.98k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.98k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.98k|    }
learn.c:ofpact_learn_spec_end:
  894|  88.1k|{
  895|  88.1k|    return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  88.1k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  896|  88.1k|                        ofpact_next(&learn->ofpact));
  897|  88.1k|}
learn.c:ofpact_next:
  212|  88.1k|{
  213|  88.1k|    return ALIGNED_CAST(struct ofpact *,
  ------------------
  |  |  434|  88.1k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  214|  88.1k|                        (uint8_t *) ofpact + OFPACT_ALIGN(ofpact->len));
  215|  88.1k|}
learn.c:ofpact_learn_spec_imm:
  850|  52.6k|{
  851|  52.6k|    return spec + 1;
  852|  52.6k|}
learn.c:ofpact_learn_spec_next:
  856|  55.4k|{
  857|  55.4k|    if (spec->src_type == NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  55.4k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (857:9): [True: 52.8k, False: 2.60k]
  ------------------
  858|  52.8k|        unsigned int n_bytes = OFPACT_ALIGN(DIV_ROUND_UP(spec->n_bits, 8));
  ------------------
  |  |  205|  52.8k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  52.8k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  52.8k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  859|  52.8k|        return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  52.8k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  860|  52.8k|                            (const uint8_t *)(spec + 1) + n_bytes);
  861|  52.8k|    }
  862|  2.60k|    return spec + 1;
  863|  55.4k|}
learn.c:ofpact_put_LEARN:
 1303|  34.9k|    {                                                                   \
 1304|  34.9k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  34.9k|                                            sizeof(struct STRUCT));     \
 1306|  34.9k|    }                                                                   \
learn.c:ofpact_finish_LEARN:
 1317|  34.0k|    {                                                                   \
 1318|  34.0k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  34.0k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  34.0k|#define ovs_assert ovs_ignore
  ------------------
 1320|  34.0k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  34.0k|    }
multipath.c:ofpact_init_MULTIPATH:
 1310|  2.68k|    {                                                                   \
 1311|  2.68k|        ofpact_init(&ofpact->ofpact, OFPACT_##ENUM,                     \
 1312|  2.68k|                    sizeof(struct STRUCT));                             \
 1313|  2.68k|    }                                                                   \

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

ofctl_parse_target.c:ofpbuf_delete:
  172|  9.82k|{
  173|  9.82k|    if (b) {
  ------------------
  |  Branch (173:9): [True: 9.82k, False: 0]
  ------------------
  174|  9.82k|        ofpbuf_uninit(b);
  175|  9.82k|        free(b);
  176|  9.82k|    }
  177|  9.82k|}
ofp-msgs.c:ofpbuf_at_assert:
  195|  9.82k|{
  196|  9.82k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  9.82k|#define ovs_assert ovs_ignore
  ------------------
  197|  9.82k|    ovs_assert(b->data);
  ------------------
  |  |   62|  9.82k|#define ovs_assert ovs_ignore
  ------------------
  198|  9.82k|    return (char *) b->data + offset;
  199|  9.82k|}
ofp-msgs.c:ofpbuf_tail:
  203|  9.82k|{
  204|  9.82k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  9.82k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 9.82k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  9.82k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 9.82k, False: 0]
  ------------------
  206|  9.82k|}
ofp-prop.c:ofpbuf_at_assert:
  195|  7.48k|{
  196|  7.48k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  7.48k|#define ovs_assert ovs_ignore
  ------------------
  197|  7.48k|    ovs_assert(b->data);
  ------------------
  |  |   62|  7.48k|#define ovs_assert ovs_ignore
  ------------------
  198|  7.48k|    return (char *) b->data + offset;
  199|  7.48k|}
ofpbuf.c:ofpbuf_tailroom:
  228|  3.40M|{
  229|  3.40M|    return (char*)ofpbuf_end(b) - (char*)ofpbuf_tail(b);
  230|  3.40M|}
ofpbuf.c:ofpbuf_end:
  211|  3.40M|{
  212|  3.40M|    ovs_assert(b->base || !b->allocated);
  ------------------
  |  |   62|  3.40M|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (212:16): [True: 3.39M, False: 9.82k]
  |  Branch (212:27): [True: 9.82k, False: 0]
  ------------------
  213|  3.40M|    return b->base ? (char *) b->base + b->allocated : NULL;
  ------------------
  |  Branch (213:12): [True: 3.39M, False: 9.82k]
  ------------------
  214|  3.40M|}
ofpbuf.c:ofpbuf_headroom:
  221|   887k|{
  222|   887k|    return (char*)b->data - (char*)b->base;
  223|   887k|}
ofpbuf.c:ofpbuf_tail:
  203|  6.80M|{
  204|  6.80M|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  6.80M|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 6.79M, False: 9.82k]
  |  Branch (204:27): [True: 9.82k, False: 0]
  ------------------
  205|  6.80M|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 6.79M, False: 9.82k]
  ------------------
  206|  6.80M|}
nx-match.c:ofpbuf_at:
  183|    497|{
  184|    497|    if (offset + size <= b->size) {
  ------------------
  |  Branch (184:9): [True: 497, False: 0]
  ------------------
  185|    497|        ovs_assert(b->data);
  ------------------
  |  |   62|    497|#define ovs_assert ovs_ignore
  ------------------
  186|    497|        return (char *) b->data + offset;
  187|    497|    }
  188|      0|    return NULL;
  189|    497|}
ofp-actions.c:ofpbuf_pull:
  258|  95.7k|{
  259|  95.7k|    ovs_assert(b->size >= size);
  ------------------
  |  |   62|  95.7k|#define ovs_assert ovs_ignore
  ------------------
  260|  95.7k|    void *data = b->data;
  261|       |
  262|  95.7k|    if (!size) {
  ------------------
  |  Branch (262:9): [True: 4.59k, False: 91.1k]
  ------------------
  263|  4.59k|        return data;
  264|  4.59k|    }
  265|       |
  266|  91.1k|    b->data = (char*)b->data + size;
  267|  91.1k|    b->size = b->size - size;
  268|  91.1k|    return data;
  269|  95.7k|}
ofp-actions.c:ofpbuf_at_assert:
  195|  66.6k|{
  196|  66.6k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  66.6k|#define ovs_assert ovs_ignore
  ------------------
  197|  66.6k|    ovs_assert(b->data);
  ------------------
  |  |   62|  66.6k|#define ovs_assert ovs_ignore
  ------------------
  198|  66.6k|    return (char *) b->data + offset;
  199|  66.6k|}
ofp-actions.c:ofpbuf_at:
  183|  20.3k|{
  184|  20.3k|    if (offset + size <= b->size) {
  ------------------
  |  Branch (184:9): [True: 20.3k, False: 0]
  ------------------
  185|  20.3k|        ovs_assert(b->data);
  ------------------
  |  |   62|  20.3k|#define ovs_assert ovs_ignore
  ------------------
  186|  20.3k|        return (char *) b->data + offset;
  187|  20.3k|    }
  188|      0|    return NULL;
  189|  20.3k|}
ofp-actions.c:ofpbuf_tail:
  203|   153k|{
  204|   153k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|   153k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 153k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|   153k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 153k, False: 0]
  ------------------
  206|   153k|}
ofp-actions.c:ofpbuf_oversized:
  291|  34.8k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  34.8k|}
ofp-actions.c:ofpbuf_truncate:
  297|  10.2k|{
  298|  10.2k|    ovs_assert(b->size >= new_size);
  ------------------
  |  |   62|  10.2k|#define ovs_assert ovs_ignore
  ------------------
  299|  10.2k|    b->size = new_size;
  300|  10.2k|}
bundle.c:ofpbuf_oversized:
  291|  2.98k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  2.98k|}
bundle.c:ofpbuf_tail:
  203|  2.98k|{
  204|  2.98k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  2.98k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 2.98k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  2.98k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 2.98k, False: 0]
  ------------------
  206|  2.98k|}
learn.c:ofpbuf_oversized:
  291|  34.0k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  34.0k|}
learn.c:ofpbuf_tail:
  203|  34.0k|{
  204|  34.0k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  34.0k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 34.0k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  34.0k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 34.0k, False: 0]
  ------------------
  206|  34.0k|}

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

ofctl_parse_target.c:is_pow2:
  399|  9.82k|{
  400|  9.82k|    return IS_POW2(x);
  ------------------
  |  |  312|  9.82k|#define IS_POW2(X) ((X) && !((X) & ((X) - 1)))
  |  |  ------------------
  |  |  |  Branch (312:21): [True: 9.82k, False: 0]
  |  |  |  Branch (312:28): [True: 9.82k, False: 0]
  |  |  ------------------
  ------------------
  401|  9.82k|}
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|   521k|{
   91|   521k|    return (*bitmap_unit__(bitmap, offset) & bitmap_bit__(offset)) != 0;
   92|   521k|}

bundle_check:
  111|  1.53k|{
  112|  1.53k|    static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
  ------------------
  |  |  110|  1.53k|        {                                                                 \
  |  |  111|  1.53k|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|  6.12k|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 1.53k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|  1.53k|            0,                              /* first_dropped */           \
  |  |  113|  1.53k|            0,                              /* last_dropped */            \
  |  |  114|  1.53k|            0,                              /* n_dropped */               \
  |  |  115|  1.53k|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|  1.53k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|  1.53k|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|  1.53k|        }
  ------------------
  113|  1.53k|    size_t i;
  114|       |
  115|  1.53k|    if (bundle->dst.field) {
  ------------------
  |  Branch (115:9): [True: 6, False: 1.52k]
  ------------------
  116|      6|        enum ofperr error = mf_check_dst(&bundle->dst, match);
  117|      6|        if (error) {
  ------------------
  |  Branch (117:13): [True: 1, False: 5]
  ------------------
  118|      1|            return error;
  119|      1|        }
  120|      6|    }
  121|       |
  122|  51.5k|    for (i = 0; i < bundle->n_members; i++) {
  ------------------
  |  Branch (122:17): [True: 50.0k, False: 1.52k]
  ------------------
  123|  50.0k|        ofp_port_t ofp_port = bundle->members[i];
  124|       |
  125|  50.0k|        if (ofp_port != OFPP_NONE) {
  ------------------
  |  |   47|  50.0k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  50.0k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (125:13): [True: 49.8k, False: 238]
  ------------------
  126|  49.8k|            enum ofperr error = ofpact_check_output_port(ofp_port, max_ports);
  127|  49.8k|            if (error) {
  ------------------
  |  Branch (127:17): [True: 4, False: 49.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|  49.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|  50.0k|        if (ofp_port == OFPP_CONTROLLER) {
  ------------------
  |  |   45|  50.0k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  50.0k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (135:13): [True: 1, False: 50.0k]
  ------------------
  136|      1|            VLOG_WARN_RL(&rl, "unsupported controller member");
  ------------------
  |  |  224|      1|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      1|    do {                                                                \
  |  |  |  |  288|      1|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      1|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 1]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      1|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 1]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  137|      1|            return OFPERR_OFPBAC_BAD_OUT_PORT;
  138|      1|        }
  139|  50.0k|    }
  140|       |
  141|  1.52k|    return 0;
  142|  1.53k|}
bundle_parse:
  248|  3.09k|{
  249|  3.09k|    char *fields, *basis, *algorithm, *member_type, *member_delim;
  250|  3.09k|    char *tokstr, *save_ptr;
  251|  3.09k|    char *error;
  252|       |
  253|  3.09k|    save_ptr = NULL;
  254|  3.09k|    tokstr = xstrdup(s);
  255|  3.09k|    fields = strtok_r(tokstr, ", ", &save_ptr);
  256|  3.09k|    basis = strtok_r(NULL, ", ", &save_ptr);
  257|  3.09k|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  258|  3.09k|    member_type = strtok_r(NULL, ", ", &save_ptr);
  259|  3.09k|    member_delim = strtok_r(NULL, ": ", &save_ptr);
  260|       |
  261|  3.09k|    error = bundle_parse__(s, port_map,
  262|  3.09k|                           &save_ptr, fields, basis, algorithm, member_type,
  263|  3.09k|                           NULL, member_delim, ofpacts);
  264|  3.09k|    free(tokstr);
  265|       |
  266|  3.09k|    return error;
  267|  3.09k|}
bundle_parse_load:
  277|     15|{
  278|     15|    char *fields, *basis, *algorithm, *member_type, *dst, *member_delim;
  279|     15|    char *tokstr, *save_ptr;
  280|     15|    char *error;
  281|       |
  282|     15|    save_ptr = NULL;
  283|     15|    tokstr = xstrdup(s);
  284|     15|    fields = strtok_r(tokstr, ", ", &save_ptr);
  285|     15|    basis = strtok_r(NULL, ", ", &save_ptr);
  286|     15|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  287|     15|    member_type = strtok_r(NULL, ", ", &save_ptr);
  288|     15|    dst = strtok_r(NULL, ", ", &save_ptr);
  289|     15|    member_delim = strtok_r(NULL, ": ", &save_ptr);
  290|       |
  291|     15|    error = bundle_parse__(s, port_map,
  292|     15|                           &save_ptr, fields, basis, algorithm, member_type,
  293|     15|                           dst, member_delim, ofpacts);
  294|       |
  295|     15|    free(tokstr);
  296|       |
  297|     15|    return error;
  298|     15|}
bundle.c:bundle_parse__:
  155|  3.10k|{
  156|  3.10k|    struct ofpact_bundle *bundle;
  157|       |
  158|  3.10k|    if (!member_delim) {
  ------------------
  |  Branch (158:9): [True: 5, False: 3.10k]
  ------------------
  159|      5|        return xasprintf("%s: not enough arguments to bundle action", s);
  160|      5|    }
  161|       |
  162|  3.10k|    if (strcasecmp(member_delim, "members")
  ------------------
  |  Branch (162:9): [True: 2.98k, False: 114]
  ------------------
  163|  2.98k|        && strcasecmp(member_delim, "slaves")) {
  ------------------
  |  Branch (163:12): [True: 112, False: 2.87k]
  ------------------
  164|    112|        return xasprintf("%s: missing member delimiter, expected `members', "
  165|    112|                         "got `%s'", s, member_delim);
  166|    112|    }
  167|       |
  168|  2.98k|    bundle = ofpact_put_BUNDLE(ofpacts);
  169|       |
  170|  80.5k|    for (;;) {
  171|  80.5k|        ofp_port_t member_port;
  172|  80.5k|        char *member;
  173|       |
  174|  80.5k|        member = strtok_r(NULL, ", []", save_ptr);
  175|  80.5k|        if (!member || bundle->n_members >= BUNDLE_MAX_MEMBERS) {
  ------------------
  |  |   43|  77.5k|#define BUNDLE_MAX_MEMBERS 2048
  ------------------
  |  Branch (175:13): [True: 2.96k, False: 77.5k]
  |  Branch (175:24): [True: 18, False: 77.5k]
  ------------------
  176|  2.98k|            break;
  177|  2.98k|        }
  178|       |
  179|  77.5k|        if (!ofputil_port_from_string(member, port_map, &member_port)) {
  ------------------
  |  Branch (179:13): [True: 3, False: 77.5k]
  ------------------
  180|      3|            return xasprintf("%s: bad port number", member);
  181|      3|        }
  182|  77.5k|        ofpbuf_put(ofpacts, &member_port, sizeof member_port);
  183|       |
  184|  77.5k|        bundle = ofpacts->header;
  185|  77.5k|        bundle->n_members++;
  186|  77.5k|    }
  187|       |
  188|  2.98k|    if (ofpbuf_oversized(ofpacts)) {
  ------------------
  |  Branch (188:9): [True: 0, False: 2.98k]
  ------------------
  189|      0|        return xasprintf("input too big");
  190|      0|    }
  191|       |
  192|  2.98k|    ofpact_finish_BUNDLE(ofpacts, &bundle);
  193|  2.98k|    bundle->basis = atoi(basis);
  194|       |
  195|  2.98k|    if (!strcasecmp(fields, "eth_src")) {
  ------------------
  |  Branch (195:9): [True: 77, False: 2.90k]
  ------------------
  196|     77|        bundle->fields = NX_HASH_FIELDS_ETH_SRC;
  197|  2.90k|    } else if (!strcasecmp(fields, "symmetric_l4")) {
  ------------------
  |  Branch (197:16): [True: 592, False: 2.31k]
  ------------------
  198|    592|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
  199|  2.31k|    } else if (!strcasecmp(fields, "symmetric_l3l4")) {
  ------------------
  |  Branch (199:16): [True: 216, False: 2.10k]
  ------------------
  200|    216|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
  201|  2.10k|    } else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
  ------------------
  |  Branch (201:16): [True: 812, False: 1.28k]
  ------------------
  202|    812|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
  203|  1.28k|    } else if (!strcasecmp(fields, "nw_src")) {
  ------------------
  |  Branch (203:16): [True: 167, False: 1.12k]
  ------------------
  204|    167|        bundle->fields = NX_HASH_FIELDS_NW_SRC;
  205|  1.12k|    } else if (!strcasecmp(fields, "nw_dst")) {
  ------------------
  |  Branch (205:16): [True: 385, False: 736]
  ------------------
  206|    385|        bundle->fields = NX_HASH_FIELDS_NW_DST;
  207|    736|    } else if (!strcasecmp(fields, "symmetric_l3")) {
  ------------------
  |  Branch (207:16): [True: 476, False: 260]
  ------------------
  208|    476|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
  209|    476|    } else {
  210|    260|        return xasprintf("%s: unknown fields `%s'", s, fields);
  211|    260|    }
  212|       |
  213|  2.72k|    if (!strcasecmp(algorithm, "active_backup")) {
  ------------------
  |  Branch (213:9): [True: 886, False: 1.83k]
  ------------------
  214|    886|        bundle->algorithm = NX_BD_ALG_ACTIVE_BACKUP;
  215|  1.83k|    } else if (!strcasecmp(algorithm, "hrw")) {
  ------------------
  |  Branch (215:16): [True: 1.75k, False: 83]
  ------------------
  216|  1.75k|        bundle->algorithm = NX_BD_ALG_HRW;
  217|  1.75k|    } else {
  218|     83|        return xasprintf("%s: unknown algorithm `%s'", s, algorithm);
  219|     83|    }
  220|       |
  221|  2.64k|    if (strcasecmp(member_type, "ofport")) {
  ------------------
  |  Branch (221:9): [True: 53, False: 2.58k]
  ------------------
  222|     53|        return xasprintf("%s: unknown member_type `%s'", s, member_type);
  223|     53|    }
  224|       |
  225|  2.58k|    if (dst) {
  ------------------
  |  Branch (225:9): [True: 8, False: 2.58k]
  ------------------
  226|      8|        char *error = mf_parse_subfield(&bundle->dst, dst);
  227|      8|        if (error) {
  ------------------
  |  Branch (227:13): [True: 1, False: 7]
  ------------------
  228|      1|            return error;
  229|      1|        }
  230|       |
  231|      7|        if (!mf_nxm_header(bundle->dst.field->id)) {
  ------------------
  |  Branch (231:13): [True: 1, False: 6]
  ------------------
  232|      1|            return xasprintf("%s: experimenter OXM field '%s' not supported",
  233|      1|                             s, dst);
  234|      1|        }
  235|      7|    }
  236|       |
  237|  2.58k|    return NULL;
  238|  2.58k|}

ofp-flow.c:htonll:
   29|  11.2k|{
   30|  11.2k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 11.2k]
  ------------------
   31|  11.2k|}
ofp-flow.c:be32_to_be16:
  135|    132|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-match.c:be32_to_be16:
  135|    104|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-parse.c:htonll:
   29|  2.74k|{
   30|  2.74k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 2.74k]
  ------------------
   31|  2.74k|}
util.c:htonll:
   29|   114k|{
   30|   114k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 114k]
  ------------------
   31|   114k|}
util.c:ntohll:
   35|   114k|{
   36|   114k|    return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
  ------------------
  |  Branch (36:12): [True: 0, False: 114k]
  ------------------
   37|   114k|}
flow.c:be32_to_be16:
  135|     88|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
meta-flow.c:be32_to_be16:
  135|  6.48k|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
meta-flow.c:hton128:
   48|  21.5k|{
   49|  21.5k|    ovs_be128 dst;
   50|       |
   51|  21.5k|    dst.be64.hi = htonll(src.u64.hi);
   52|  21.5k|    dst.be64.lo = htonll(src.u64.lo);
   53|  21.5k|    return dst;
   54|  21.5k|}
meta-flow.c:htonll:
   29|  59.9k|{
   30|  59.9k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 59.9k]
  ------------------
   31|  59.9k|}
meta-flow.c:ntoh128:
   58|  16.5k|{
   59|  16.5k|    ovs_u128 dst;
   60|       |
   61|  16.5k|    dst.u64.hi = ntohll(src.be64.hi);
   62|  16.5k|    dst.u64.lo = ntohll(src.be64.lo);
   63|  16.5k|    return dst;
   64|  16.5k|}
meta-flow.c:ntohll:
   35|  52.3k|{
   36|  52.3k|    return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
  ------------------
  |  Branch (36:12): [True: 0, False: 52.3k]
  ------------------
   37|  52.3k|}
nx-match.c:be32_to_be16:
  135|    215|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
nx-match.c:hton128:
   48|  8.99k|{
   49|  8.99k|    ovs_be128 dst;
   50|       |
   51|  8.99k|    dst.be64.hi = htonll(src.u64.hi);
   52|  8.99k|    dst.be64.lo = htonll(src.u64.lo);
   53|  8.99k|    return dst;
   54|  8.99k|}
nx-match.c:htonll:
   29|  43.5k|{
   30|  43.5k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 43.5k]
  ------------------
   31|  43.5k|}
ofp-actions.c:be32_to_be16:
  135|  13.7k|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-actions.c:htonll:
   29|   122k|{
   30|   122k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 122k]
  ------------------
   31|   122k|}
learn.c:htonll:
   29|  4.08k|{
   30|  4.08k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 4.08k]
  ------------------
   31|  4.08k|}

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|   668k|        {                                                               \
   73|   668k|            *counter_##COUNTER##_get() += n;                            \
   74|   668k|        }                                                               \
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.0k|        {                                                               \
   73|  10.0k|            *counter_##COUNTER##_get() += n;                            \
   74|  10.0k|        }                                                               \
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|  24.3k|{
   31|       |    ds->string = NULL;
   32|  24.3k|    ds->length = 0;
   33|  24.3k|    ds->allocated = 0;
   34|  24.3k|}
ds_clear:
   40|  4.34k|{
   41|  4.34k|    ds->length = 0;
   42|  4.34k|}
ds_reserve:
   60|  26.0k|{
   61|  26.0k|    if (min_length > ds->allocated || !ds->string) {
  ------------------
  |  Branch (61:9): [True: 20.5k, False: 5.51k]
  |  Branch (61:39): [True: 6, False: 5.51k]
  ------------------
   62|  20.5k|        ds->allocated += MAX(min_length, ds->allocated);
  ------------------
  |  |   95|  20.5k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 20.5k, False: 6]
  |  |  ------------------
  ------------------
   63|  20.5k|        ds->allocated = MAX(8, ds->allocated);
  ------------------
  |  |   95|  20.5k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 10.6k, False: 9.86k]
  |  |  ------------------
  ------------------
   64|  20.5k|        ds->string = xrealloc(ds->string, ds->allocated + 1);
   65|  20.5k|    }
   66|  26.0k|}
ds_put_uninit:
   73|  20.9k|{
   74|  20.9k|    ds_reserve(ds, ds->length + n);
   75|  20.9k|    ds->length += n;
   76|  20.9k|    ds->string[ds->length] = '\0';
   77|  20.9k|    return &ds->string[ds->length - n];
   78|  20.9k|}
ds_put_char__:
   82|  1.33k|{
   83|  1.33k|    *ds_put_uninit(ds, 1) = c;
   84|  1.33k|}
ds_put_utf8:
   89|  25.8k|{
   90|  25.8k|    if (uc <= 0x7f) {
  ------------------
  |  Branch (90:9): [True: 8.17k, False: 17.6k]
  ------------------
   91|  8.17k|        ds_put_char(ds, uc);
   92|  17.6k|    } else if (uc <= 0x7ff) {
  ------------------
  |  Branch (92:16): [True: 7.62k, False: 10.0k]
  ------------------
   93|  7.62k|        ds_put_char(ds, 0xc0 | (uc >> 6));
   94|  7.62k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
   95|  10.0k|    } else if (uc <= 0xffff) {
  ------------------
  |  Branch (95:16): [True: 8.13k, False: 1.88k]
  ------------------
   96|  8.13k|        ds_put_char(ds, 0xe0 | (uc >> 12));
   97|  8.13k|        ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
   98|  8.13k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
   99|  8.13k|    } else if (uc <= 0x10ffff) {
  ------------------
  |  Branch (99:16): [True: 1.88k, False: 0]
  ------------------
  100|  1.88k|        ds_put_char(ds, 0xf0 | (uc >> 18));
  101|  1.88k|        ds_put_char(ds, 0x80 | ((uc >> 12) & 0x3f));
  102|  1.88k|        ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
  103|  1.88k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
  104|  1.88k|    } else {
  105|       |        /* Invalid code point.  Insert the Unicode general substitute
  106|       |         * REPLACEMENT CHARACTER. */
  107|      0|        ds_put_utf8(ds, 0xfffd);
  108|      0|    }
  109|  25.8k|}
ds_put_cstr:
  125|  19.6k|{
  126|  19.6k|    size_t s_len = strlen(s);
  127|  19.6k|    memcpy(ds_put_uninit(ds, s_len), s, s_len);
  128|  19.6k|}
ds_put_format:
  139|  1.15k|{
  140|  1.15k|    va_list args;
  141|       |
  142|  1.15k|    va_start(args, format);
  143|  1.15k|    ds_put_format_valist(ds, format, args);
  144|       |    va_end(args);
  145|  1.15k|}
ds_put_format_valist:
  149|  1.15k|{
  150|  1.15k|    va_list args;
  151|  1.15k|    size_t available;
  152|  1.15k|    int needed;
  153|       |
  154|  1.15k|    va_copy(args, args_);
  155|  1.15k|    available = ds->string ? ds->allocated - ds->length + 1 : 0;
  ------------------
  |  Branch (155:17): [True: 1.07k, False: 80]
  ------------------
  156|  1.15k|    needed = vsnprintf(ds->string
  ------------------
  |  Branch (156:24): [True: 1.07k, False: 80]
  ------------------
  157|  1.15k|                       ? &ds->string[ds->length]
  158|  1.15k|                       : NULL,
  159|  1.15k|                       available, format, args);
  160|  1.15k|    va_end(args);
  161|       |
  162|  1.15k|    if (needed < available) {
  ------------------
  |  Branch (162:9): [True: 655, False: 504]
  ------------------
  163|    655|        ds->length += needed;
  164|    655|    } else {
  165|    504|        ds_reserve(ds, ds->length + needed);
  166|       |
  167|    504|        va_copy(args, args_);
  168|    504|        available = ds->allocated - ds->length + 1;
  169|    504|        needed = vsnprintf(&ds->string[ds->length],
  170|    504|                           available, format, args);
  171|    504|        va_end(args);
  172|       |
  173|    504|        ovs_assert(needed < available);
  ------------------
  |  |   62|    504|#define ovs_assert ovs_ignore
  ------------------
  174|    504|        ds->length += needed;
  175|    504|    }
  176|  1.15k|}
ds_cstr:
  343|  14.5k|{
  344|  14.5k|    if (!ds->string) {
  ------------------
  |  Branch (344:9): [True: 0, False: 14.5k]
  ------------------
  345|      0|        ds_reserve(ds, 0);
  346|      0|    }
  347|  14.5k|    ds->string[ds->length] = '\0';
  348|  14.5k|    return ds->string;
  349|  14.5k|}
ds_steal_cstr:
  362|  9.82k|{
  363|  9.82k|    char *s = ds_cstr(ds);
  364|  9.82k|    ds_init(ds);
  365|  9.82k|    return s;
  366|  9.82k|}
ds_destroy:
  370|    139|{
  371|    139|    free(ds->string);
  372|    139|}
ds_put_hex:
  385|     26|{
  386|     26|    const uint8_t *buf = buf_;
  387|     26|    bool printed = false;
  388|     26|    int i;
  389|       |
  390|    784|    for (i = 0; i < size; i++) {
  ------------------
  |  Branch (390:17): [True: 758, False: 26]
  ------------------
  391|    758|        uint8_t val = buf[i];
  392|    758|        if (val || printed) {
  ------------------
  |  Branch (392:13): [True: 99, False: 659]
  |  Branch (392:20): [True: 159, False: 500]
  ------------------
  393|    258|            if (!printed) {
  ------------------
  |  Branch (393:17): [True: 26, False: 232]
  ------------------
  394|     26|                ds_put_format(ds, "0x%"PRIx8, val);
  395|    232|            } else {
  396|    232|                ds_put_format(ds, "%02"PRIx8, val);
  397|    232|            }
  398|    258|            printed = true;
  399|    258|        }
  400|    758|    }
  401|     26|    if (!printed) {
  ------------------
  |  Branch (401:9): [True: 0, False: 26]
  ------------------
  402|      0|        ds_put_char(ds, '0');
  403|      0|    }
  404|     26|}
ds_chomp:
  505|     26|{
  506|     26|    if (ds->length > 0 && ds->string[ds->length - 1] == (char) c) {
  ------------------
  |  Branch (506:9): [True: 26, False: 0]
  |  Branch (506:27): [True: 26, False: 0]
  ------------------
  507|     26|        ds->string[--ds->length] = '\0';
  508|     26|        return true;
  509|     26|    } else {
  510|       |        return false;
  511|      0|    }
  512|     26|}

flow_zero_wildcards:
 1288|    429|{
 1289|    429|    uint64_t *flow_u64 = (uint64_t *) flow;
 1290|    429|    const uint64_t *wc_u64 = (const uint64_t *) &wildcards->masks;
 1291|    429|    size_t i;
 1292|       |
 1293|  39.8k|    for (i = 0; i < FLOW_U64S; i++) {
  ------------------
  |  |  165|  39.8k|#define FLOW_U64S (sizeof(struct flow) / sizeof(uint64_t))
  ------------------
  |  Branch (1293:17): [True: 39.4k, False: 429]
  ------------------
 1294|  39.4k|        flow_u64[i] &= wc_u64[i];
 1295|  39.4k|    }
 1296|    429|}
ct_state_to_string:
 1416|  8.78k|{
 1417|  8.78k|    switch (state) {
 1418|      0|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
 1419|      0|        CS_STATES
  ------------------
  |  |  926|  1.41k|    CS_STATE(NEW,         0, "new")             \
  |  |  ------------------
  |  |  |  | 1418|  1.41k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.41k, False: 7.36k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  927|  1.41k|    CS_STATE(ESTABLISHED, 1, "est")             \
  |  |  ------------------
  |  |  |  | 1418|  1.29k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.29k, False: 7.49k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  928|  1.29k|    CS_STATE(RELATED,     2, "rel")             \
  |  |  ------------------
  |  |  |  | 1418|    975|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 975, False: 7.80k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  929|    975|    CS_STATE(REPLY_DIR,   3, "rpl")             \
  |  |  ------------------
  |  |  |  | 1418|    760|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 760, False: 8.02k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  930|    760|    CS_STATE(INVALID,     4, "inv")             \
  |  |  ------------------
  |  |  |  | 1418|    637|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 637, False: 8.14k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  931|    637|    CS_STATE(TRACKED,     5, "trk")             \
  |  |  ------------------
  |  |  |  | 1418|    541|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 541, False: 8.24k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  932|    541|    CS_STATE(SRC_NAT,     6, "snat")            \
  |  |  ------------------
  |  |  |  | 1418|    225|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 225, False: 8.55k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  933|    225|    CS_STATE(DST_NAT,     7, "dnat")
  |  |  ------------------
  |  |  |  | 1418|    225|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 225, False: 8.55k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1420|      0|#undef CS_STATE
 1421|  2.71k|    default:
  ------------------
  |  Branch (1421:5): [True: 2.71k, False: 6.07k]
  ------------------
 1422|       |        return NULL;
 1423|  8.78k|    }
 1424|  8.78k|}
flow_tun_flag_to_string:
 1539|    801|{
 1540|    801|    switch (flags) {
 1541|     21|    case FLOW_TNL_F_DONT_FRAGMENT:
  ------------------
  |  |   61|     21|#define FLOW_TNL_F_DONT_FRAGMENT (1 << 1)
  ------------------
  |  Branch (1541:5): [True: 21, False: 780]
  ------------------
 1542|     21|        return "df";
 1543|     22|    case FLOW_TNL_F_CSUM:
  ------------------
  |  |   62|     22|#define FLOW_TNL_F_CSUM (1 << 2)
  ------------------
  |  Branch (1543:5): [True: 22, False: 779]
  ------------------
 1544|     22|        return "csum";
 1545|     22|    case FLOW_TNL_F_KEY:
  ------------------
  |  |   63|     22|#define FLOW_TNL_F_KEY (1 << 3)
  ------------------
  |  Branch (1545:5): [True: 22, False: 779]
  ------------------
 1546|     22|        return "key";
 1547|    378|    case FLOW_TNL_F_OAM:
  ------------------
  |  |   56|    378|#define FLOW_TNL_F_OAM (1 << 0)
  ------------------
  |  Branch (1547:5): [True: 378, False: 423]
  ------------------
 1548|    378|        return "oam";
 1549|    358|    default:
  ------------------
  |  Branch (1549:5): [True: 358, False: 443]
  ------------------
 1550|       |        return NULL;
 1551|    801|    }
 1552|    801|}
format_flags:
 1557|     26|{
 1558|     26|    uint32_t bad = 0;
 1559|       |
 1560|     26|    if (!flags) {
  ------------------
  |  Branch (1560:9): [True: 0, False: 26]
  ------------------
 1561|      0|        ds_put_char(ds, '0');
 1562|      0|        return;
 1563|      0|    }
 1564|    209|    while (flags) {
  ------------------
  |  Branch (1564:12): [True: 183, False: 26]
  ------------------
 1565|    183|        uint32_t bit = rightmost_1bit(flags);
 1566|    183|        const char *s;
 1567|       |
 1568|    183|        s = bit_to_string(bit);
 1569|    183|        if (s) {
  ------------------
  |  Branch (1569:13): [True: 90, False: 93]
  ------------------
 1570|     90|            ds_put_format(ds, "%s%c", s, del);
 1571|     93|        } else {
 1572|     93|            bad |= bit;
 1573|     93|        }
 1574|       |
 1575|    183|        flags &= ~bit;
 1576|    183|    }
 1577|       |
 1578|     26|    if (bad) {
  ------------------
  |  Branch (1578:9): [True: 20, False: 6]
  ------------------
 1579|     20|        ds_put_format(ds, "0x%"PRIx32"%c", bad, del);
 1580|     20|    }
 1581|     26|    ds_chomp(ds, del);
 1582|     26|}
format_flags_masked:
 1588|     27|{
 1589|     27|    if (name) {
  ------------------
  |  Branch (1589:9): [True: 0, False: 27]
  ------------------
 1590|      0|        ds_put_format(ds, "%s%s=%s", colors.param, name, colors.end);
 1591|      0|    }
 1592|       |
 1593|     27|    if (mask == max_mask) {
  ------------------
  |  Branch (1593:9): [True: 26, False: 1]
  ------------------
 1594|     26|        format_flags(ds, bit_to_string, flags, '|');
 1595|     26|        return;
 1596|     26|    }
 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: 3, False: 29]
  ------------------
 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|     44|{
 1634|     44|    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: 44]
  |  Branch (1634:35): [True: 0, False: 0]
  ------------------
 1635|      0|        ds_put_cstr(s, "eth");
 1636|     44|    } else {
 1637|     44|        ds_put_cstr(s, "packet_type=(");
 1638|     44|        put_u16_masked(s, pt_ns(value), pt_ns(mask));
 1639|     44|        ds_put_char(s, ',');
 1640|     44|        put_u16_masked(s, pt_ns_type(value), pt_ns_type(mask));
 1641|     44|        ds_put_char(s, ')');
 1642|     44|    }
 1643|     44|}
parse_flags:
 1664|  3.13k|{
 1665|  3.13k|    uint32_t result = 0;
 1666|  3.13k|    int n;
 1667|       |
 1668|       |    /* Parse masked flags in numeric format? */
 1669|  3.13k|    if (res_mask && ovs_scan(s, "%"SCNi32"/%"SCNi32"%n",
  ------------------
  |  Branch (1669:9): [True: 3.13k, False: 0]
  |  Branch (1669:21): [True: 935, False: 2.20k]
  ------------------
 1670|  3.13k|                             res_flags, res_mask, &n) && n > 0) {
  ------------------
  |  Branch (1670:58): [True: 935, False: 0]
  ------------------
 1671|    935|        if (*res_flags & ~allowed || *res_mask & ~allowed) {
  ------------------
  |  Branch (1671:13): [True: 21, False: 914]
  |  Branch (1671:38): [True: 25, False: 889]
  ------------------
 1672|     46|            goto unknown;
 1673|     46|        }
 1674|    889|        return n;
 1675|    935|    }
 1676|       |
 1677|  2.20k|    n = 0;
 1678|       |
 1679|  2.20k|    if (res_mask && (*s == '+' || *s == '-')) {
  ------------------
  |  Branch (1679:9): [True: 2.20k, False: 0]
  |  Branch (1679:22): [True: 353, False: 1.85k]
  |  Branch (1679:35): [True: 430, False: 1.42k]
  ------------------
 1680|    783|        uint32_t flags = 0, mask = 0;
 1681|       |
 1682|       |        /* Parse masked flags. */
 1683|  2.28k|        while (s[0] != end) {
  ------------------
  |  Branch (1683:16): [True: 1.57k, False: 707]
  ------------------
 1684|  1.57k|            bool set;
 1685|  1.57k|            uint32_t bit;
 1686|  1.57k|            size_t len;
 1687|       |
 1688|  1.57k|            if (s[0] == '+') {
  ------------------
  |  Branch (1688:17): [True: 691, False: 884]
  ------------------
 1689|    691|                set = true;
 1690|    884|            } else if (s[0] == '-') {
  ------------------
  |  Branch (1690:24): [True: 884, False: 0]
  ------------------
 1691|    884|                set = false;
 1692|    884|            } 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.57k|            s++;
 1701|  1.57k|            n++;
 1702|       |
 1703|  12.2k|            for (bit = 1; bit; bit <<= 1) {
  ------------------
  |  Branch (1703:27): [True: 12.2k, False: 65]
  ------------------
 1704|  12.2k|                const char *fname = bit_to_string(bit);
 1705|       |
 1706|  12.2k|                if (!fname) {
  ------------------
  |  Branch (1706:21): [True: 1.50k, False: 10.7k]
  ------------------
 1707|  1.50k|                    continue;
 1708|  1.50k|                }
 1709|       |
 1710|  10.7k|                len = strlen(fname);
 1711|  10.7k|                if (strncmp(s, fname, len) ||
  ------------------
  |  Branch (1711:21): [True: 9.20k, False: 1.52k]
  ------------------
 1712|  9.21k|                    (s[len] != '+' && s[len] != '-' && s[len] != end)) {
  ------------------
  |  Branch (1712:22): [True: 1.18k, False: 343]
  |  Branch (1712:39): [True: 723, False: 457]
  |  Branch (1712:56): [True: 13, False: 710]
  ------------------
 1713|  9.21k|                    continue;
 1714|  9.21k|                }
 1715|       |
 1716|  1.51k|                if (mask & bit) {
  ------------------
  |  Branch (1716:21): [True: 10, False: 1.50k]
  ------------------
 1717|       |                    /* bit already set. */
 1718|     10|                    if (res_string) {
  ------------------
  |  Branch (1718:25): [True: 10, False: 0]
  ------------------
 1719|     10|                        *res_string = xasprintf("%s: Each %s flag can be "
 1720|     10|                                                "specified only once", s,
 1721|     10|                                                field_name);
 1722|     10|                    }
 1723|     10|                    return -EINVAL;
 1724|     10|                }
 1725|  1.50k|                if (!(bit & allowed)) {
  ------------------
  |  Branch (1725:21): [True: 1, False: 1.49k]
  ------------------
 1726|      1|                    goto unknown;
 1727|      1|                }
 1728|  1.49k|                if (set) {
  ------------------
  |  Branch (1728:21): [True: 667, False: 832]
  ------------------
 1729|    667|                   flags |= bit;
 1730|    667|                }
 1731|  1.49k|                mask |= bit;
 1732|  1.49k|                break;
 1733|  1.50k|            }
 1734|       |
 1735|  1.56k|            if (!bit) {
  ------------------
  |  Branch (1735:17): [True: 65, False: 1.49k]
  ------------------
 1736|     65|                goto unknown;
 1737|     65|            }
 1738|  1.49k|            s += len;
 1739|  1.49k|            n += len;
 1740|  1.49k|        }
 1741|       |
 1742|    707|        *res_flags = flags;
 1743|    707|        *res_mask = mask;
 1744|    707|        return n;
 1745|    783|    }
 1746|       |
 1747|       |    /* Parse unmasked flags.  If a flag is present, it is set, otherwise
 1748|       |     * it is not set. */
 1749|  5.68k|    while (s[n] != end) {
  ------------------
  |  Branch (1749:12): [True: 4.40k, False: 1.27k]
  ------------------
 1750|  4.40k|        unsigned long long int flags;
 1751|  4.40k|        uint32_t bit;
 1752|  4.40k|        int n0;
 1753|       |
 1754|  4.40k|        if (ovs_scan(&s[n], "%lli%n", &flags, &n0)) {
  ------------------
  |  Branch (1754:13): [True: 3.11k, False: 1.28k]
  ------------------
 1755|  3.11k|            if (flags & ~allowed) {
  ------------------
  |  Branch (1755:17): [True: 31, False: 3.08k]
  ------------------
 1756|     31|                goto unknown;
 1757|     31|            }
 1758|  3.08k|            n += n0 + (s[n + n0] == '|');
 1759|  3.08k|            result |= flags;
 1760|  3.08k|            continue;
 1761|  3.11k|        }
 1762|       |
 1763|  9.58k|        for (bit = 1; bit; bit <<= 1) {
  ------------------
  |  Branch (1763:23): [True: 9.47k, False: 108]
  ------------------
 1764|  9.47k|            const char *name = bit_to_string(bit);
 1765|  9.47k|            size_t len;
 1766|       |
 1767|  9.47k|            if (!name) {
  ------------------
  |  Branch (1767:17): [True: 2.48k, False: 6.99k]
  ------------------
 1768|  2.48k|                continue;
 1769|  2.48k|            }
 1770|       |
 1771|  6.99k|            len = strlen(name);
 1772|  6.99k|            if (!strncmp(s + n, name, len) &&
  ------------------
  |  Branch (1772:17): [True: 1.19k, False: 5.80k]
  ------------------
 1773|  1.19k|                (s[n + len] == '|' || s[n + len] == end)) {
  ------------------
  |  Branch (1773:18): [True: 753, False: 439]
  |  Branch (1773:39): [True: 423, False: 16]
  ------------------
 1774|  1.17k|                if (!(bit & allowed)) {
  ------------------
  |  Branch (1774:21): [True: 2, False: 1.17k]
  ------------------
 1775|      2|                    goto unknown;
 1776|      2|                }
 1777|  1.17k|                result |= bit;
 1778|  1.17k|                n += len + (s[n + len] == '|');
 1779|  1.17k|                break;
 1780|  1.17k|            }
 1781|  6.99k|        }
 1782|       |
 1783|  1.28k|        if (!bit) {
  ------------------
  |  Branch (1783:13): [True: 108, False: 1.17k]
  ------------------
 1784|    108|            goto unknown;
 1785|    108|        }
 1786|  1.28k|    }
 1787|       |
 1788|  1.27k|    *res_flags = result;
 1789|  1.27k|    if (res_mask) {
  ------------------
  |  Branch (1789:9): [True: 1.27k, False: 0]
  ------------------
 1790|  1.27k|        *res_mask = UINT32_MAX;
 1791|  1.27k|    }
 1792|  1.27k|    if (res_string) {
  ------------------
  |  Branch (1792:9): [True: 1.27k, False: 0]
  ------------------
 1793|  1.27k|        *res_string = NULL;
 1794|  1.27k|    }
 1795|  1.27k|    return n;
 1796|       |
 1797|    253|unknown:
 1798|    253|    if (res_string) {
  ------------------
  |  Branch (1798:9): [True: 253, False: 0]
  ------------------
 1799|    253|        *res_string = xasprintf("%s: unknown %s flag(s)", s, field_name);
 1800|    253|    }
 1801|       |    return -EINVAL;
 1802|  1.42k|}
flow_wildcards_init_catchall:
 1885|  32.7k|{
 1886|  32.7k|    memset(&wc->masks, 0, sizeof wc->masks);
 1887|  32.7k|}
flow_wildcards_equal:
 2230|  10.0k|{
 2231|  10.0k|    return flow_equal(&a->masks, &b->masks);
 2232|  10.0k|}
flow_wildcards_set_reg_mask:
 2275|  41.0k|{
 2276|  41.0k|    wc->masks.regs[idx] = mask;
 2277|  41.0k|}
flow_wildcards_set_xreg_mask:
 2283|  21.3k|{
 2284|  21.3k|    flow_set_xreg(&wc->masks, idx, mask);
 2285|  21.3k|}
flow_wildcards_set_xxreg_mask:
 2292|  16.2k|{
 2293|  16.2k|    flow_set_xxreg(&wc->masks, idx, mask);
 2294|  16.2k|}
flow_set_dl_vlan:
 2780|  1.04k|{
 2781|  1.04k|    if (vid == htons(OFP10_VLAN_NONE)) {
  ------------------
  |  Branch (2781:9): [True: 334, False: 707]
  ------------------
 2782|    334|        flow->vlans[id].tci = htons(0);
 2783|    707|    } else {
 2784|    707|        vid &= htons(VLAN_VID_MASK);
 2785|    707|        flow->vlans[id].tci &= ~htons(VLAN_VID_MASK);
 2786|       |        flow->vlans[id].tci |= htons(VLAN_CFI) | vid;
 2787|    707|    }
 2788|  1.04k|}
flow_set_vlan_vid:
 2805|    456|{
 2806|       |    ovs_be16 mask = htons(VLAN_VID_MASK | VLAN_CFI);
 2807|    456|    flow->vlans[0].tci &= ~mask;
 2808|    456|    flow->vlans[0].tci |= vid & mask;
 2809|    456|}
flow_set_vlan_pcp:
 2820|    698|{
 2821|    698|    pcp &= 0x07;
 2822|    698|    flow->vlans[id].tci &= ~htons(VLAN_PCP_MASK);
 2823|       |    flow->vlans[id].tci |= htons((pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
 2824|    698|}
flow_count_vlan_headers:
 2829|  2.27k|{
 2830|  2.27k|    int i;
 2831|       |
 2832|  4.19k|    for (i = 0; i < FLOW_MAX_VLAN_HEADERS; i++) {
  ------------------
  |  |   75|  4.19k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
  |  Branch (2832:17): [True: 3.67k, False: 517]
  ------------------
 2833|  3.67k|        if (!(flow->vlans[i].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (2833:13): [True: 1.76k, False: 1.91k]
  ------------------
 2834|  1.76k|            break;
 2835|  1.76k|        }
 2836|  3.67k|    }
 2837|  2.27k|    return i;
 2838|  2.27k|}
flow_pop_vlan:
 2860|  2.27k|{
 2861|  2.27k|    int n = flow_count_vlan_headers(flow);
 2862|  2.27k|    if (n > 1) {
  ------------------
  |  Branch (2862:9): [True: 517, False: 1.76k]
  ------------------
 2863|    517|        if (wc) {
  ------------------
  |  Branch (2863:13): [True: 0, False: 517]
  ------------------
 2864|      0|            memset(&wc->masks.vlans[1], 0xff,
 2865|      0|                   sizeof(union flow_vlan_hdr) * (n - 1));
 2866|      0|        }
 2867|    517|        memmove(&flow->vlans[0], &flow->vlans[1],
 2868|    517|                sizeof(union flow_vlan_hdr) * (n - 1));
 2869|    517|    }
 2870|  2.27k|    if (n > 0) {
  ------------------
  |  Branch (2870:9): [True: 1.39k, False: 882]
  ------------------
 2871|  1.39k|        memset(&flow->vlans[n - 1], 0, sizeof(union flow_vlan_hdr));
 2872|  1.39k|    }
 2873|  2.27k|}
flow_push_vlan_uninit:
 2877|    982|{
 2878|    982|    if (wc) {
  ------------------
  |  Branch (2878:9): [True: 0, False: 982]
  ------------------
 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|    982|    memmove(&flow->vlans[1], &flow->vlans[0],
 2885|    982|            sizeof(union flow_vlan_hdr) * (FLOW_MAX_VLAN_HEADERS - 1));
  ------------------
  |  |   75|    982|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
 2886|    982|    memset(&flow->vlans[0], 0, sizeof(union flow_vlan_hdr));
 2887|    982|}
flow_set_mpls_label:
 3076|    392|{
 3077|    392|    set_mpls_lse_label(&flow->mpls_lse[idx], label);
 3078|    392|}
flow_set_mpls_ttl:
 3084|    725|{
 3085|    725|    set_mpls_lse_ttl(&flow->mpls_lse[idx], ttl);
 3086|    725|}
flow_set_mpls_tc:
 3092|    800|{
 3093|    800|    set_mpls_lse_tc(&flow->mpls_lse[idx], tc);
 3094|    800|}
flow_set_mpls_bos:
 3099|    432|{
 3100|    432|    set_mpls_lse_bos(&flow->mpls_lse[idx], bos);
 3101|    432|}
miniflow_init:
 3474|  20.0k|{
 3475|  20.0k|    uint64_t *dst_u64 = miniflow_values(dst);
 3476|  20.0k|    size_t idx;
 3477|       |
 3478|  21.0k|    FLOWMAP_FOR_EACH_INDEX(idx, dst->map) {
  ------------------
  |  |  337|  20.0k|    for (struct flowmap_aux aux__ = FLOWMAP_AUX_INITIALIZER(MAP);   \
  |  |  ------------------
  |  |  |  |  331|  20.0k|#define FLOWMAP_AUX_INITIALIZER(FLOWMAP) { .unit = 0, .map = (FLOWMAP) }
  |  |  ------------------
  |  |  338|  41.0k|         flowmap_next_index(&aux__, &(IDX));)
  |  |  ------------------
  |  |  |  Branch (338:10): [True: 21.0k, False: 20.0k]
  |  |  ------------------
  ------------------
 3479|  21.0k|        *dst_u64++ = flow_u64_value(src, idx);
 3480|  21.0k|    }
 3481|  20.0k|}
miniflow_map_init:
 3486|  10.0k|{
 3487|       |    /* Initialize map, counting the number of nonzero elements. */
 3488|  10.0k|    flowmap_init(&flow->map);
 3489|   932k|    for (size_t i = 0; i < FLOW_U64S; i++) {
  ------------------
  |  |  165|   932k|#define FLOW_U64S (sizeof(struct flow) / sizeof(uint64_t))
  ------------------
  |  Branch (3489:24): [True: 922k, False: 10.0k]
  ------------------
 3490|   922k|        if (flow_u64_value(src, i)) {
  ------------------
  |  Branch (3490:13): [True: 10.5k, False: 912k]
  ------------------
 3491|  10.5k|            flowmap_set(&flow->map, i, 1);
 3492|  10.5k|        }
 3493|   922k|    }
 3494|  10.0k|}
miniflow_alloc:
 3501|  10.0k|{
 3502|  10.0k|    size_t n_values = miniflow_n_values(src);
 3503|  10.0k|    size_t data_size = MINIFLOW_VALUES_SIZE(n_values);
  ------------------
  |  |  527|  10.0k|#define MINIFLOW_VALUES_SIZE(COUNT) ((COUNT) * sizeof(uint64_t))
  ------------------
 3504|  10.0k|    struct miniflow *dst = xmalloc(n * (sizeof *src + data_size));
 3505|  10.0k|    size_t i;
 3506|       |
 3507|  10.0k|    COVERAGE_INC(miniflow_malloc);
  ------------------
  |  |   83|  10.0k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|  10.0k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
 3508|       |
 3509|  30.0k|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3509:17): [True: 20.0k, False: 10.0k]
  ------------------
 3510|  20.0k|        *dst = *src;   /* Copy maps. */
 3511|  20.0k|        dsts[i] = dst;
 3512|  20.0k|        dst += 1;      /* Just past the maps. */
 3513|  20.0k|        dst = (struct miniflow *)((uint64_t *)dst + n_values); /* Skip data. */
 3514|  20.0k|    }
 3515|  10.0k|    return data_size;
 3516|  10.0k|}
miniflow_expand:
 3547|  39.7k|{
 3548|  39.7k|    memset(dst, 0, sizeof *dst);
 3549|  39.7k|    flow_union_with_miniflow(dst, src);
 3550|  39.7k|}
minimask_init:
 3616|  10.0k|{
 3617|  10.0k|    miniflow_init(&mask->masks, &wc->masks);
 3618|  10.0k|}
minimask_expand:
 3660|  19.8k|{
 3661|  19.8k|    miniflow_expand(&mask->masks, &wc->masks);
 3662|  19.8k|}
flow.c:put_u16_masked:
 1615|     88|{
 1616|     88|    if (!mask) {
  ------------------
  |  Branch (1616:9): [True: 0, False: 88]
  ------------------
 1617|      0|        ds_put_char(s, '*');
 1618|     88|    } else {
 1619|     88|        if (value > 9) {
  ------------------
  |  Branch (1619:13): [True: 62, False: 26]
  ------------------
 1620|     62|            ds_put_format(s, "0x%"PRIx16, value);
 1621|     62|        } else {
 1622|     26|            ds_put_format(s, "%"PRIu16, value);
 1623|     26|        }
 1624|       |
 1625|     88|        if (mask != UINT16_MAX) {
  ------------------
  |  Branch (1625:13): [True: 0, False: 88]
  ------------------
 1626|       |            ds_put_format(s, "/0x%"PRIx16, mask);
 1627|      0|        }
 1628|     88|    }
 1629|     88|}

match.c:flow_set_xreg:
  149|  21.3k|{
  150|  21.3k|    flow->regs[idx * 2] = value >> 32;
  151|  21.3k|    flow->regs[idx * 2 + 1] = value;
  152|  21.3k|}
match.c:flow_set_xxreg:
  169|  16.2k|{
  170|  16.2k|    flow->regs[idx * 4] = value.u64.hi >> 32;
  171|  16.2k|    flow->regs[idx * 4 + 1] = value.u64.hi;
  172|  16.2k|    flow->regs[idx * 4 + 2] = value.u64.lo >> 32;
  173|  16.2k|    flow->regs[idx * 4 + 3] = value.u64.lo;
  174|  16.2k|}
match.c:u16_to_ofp:
  214|  1.56k|{
  215|  1.56k|    return OFP_PORT_C(port);
  ------------------
  |  |  157|  1.56k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|  1.56k|}
ofp-flow.c:ofp_to_u16:
  196|  9.12k|{
  197|  9.12k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  9.12k|}
ofp-match.c:ofp_to_u16:
  196|  5.13k|{
  197|  5.13k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  5.13k|}
ofp-port.c:ofp_to_u16:
  196|   324k|{
  197|   324k|    return (OVS_FORCE uint16_t) ofp_port;
  198|   324k|}
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|    982|{
  209|    982|    return (OVS_FORCE uint32_t) ofp11_port;
  210|    982|}
flow.c:miniflow_values:
  530|  20.0k|{
  531|  20.0k|    return (uint64_t *)(mf + 1);
  532|  20.0k|}
flow.c:flowmap_set:
  385|  10.5k|{
  386|  10.5k|    map_t n_bits_mask = (MAP_1 << n_bits) - 1;
  ------------------
  |  |  271|  10.5k|#define MAP_1 (map_t)1
  ------------------
  387|  10.5k|    size_t unit = idx / MAP_T_BITS;
  ------------------
  |  |  270|  10.5k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  388|       |
  389|  10.5k|    idx %= MAP_T_BITS;
  ------------------
  |  |  270|  10.5k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  390|       |
  391|  10.5k|    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|  10.5k|    if (unit + 1 < FLOWMAP_UNITS && idx + n_bits > MAP_T_BITS) {
  ------------------
  |  |  280|  10.5k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  ------------------
  |  |  |  |  300|  21.0k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
                  if (unit + 1 < FLOWMAP_UNITS && idx + n_bits > MAP_T_BITS) {
  ------------------
  |  |  270|  6.34k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  |  Branch (394:9): [True: 6.34k, False: 4.16k]
  |  Branch (394:37): [True: 0, False: 6.34k]
  ------------------
  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|  10.5k|}
flow.c:flowmap_init:
  343|  10.0k|{
  344|  10.0k|    memset(fm, 0, sizeof *fm);
  345|  10.0k|}
flow.c:flow_equal:
  184|  10.0k|{
  185|  10.0k|    return !flow_compare_3way(a, b);
  186|  10.0k|}
flow.c:flow_compare_3way:
  178|  10.0k|{
  179|  10.0k|    return memcmp(a, b, sizeof *a);
  180|  10.0k|}
flow.c:flow_set_xreg:
  149|  21.3k|{
  150|  21.3k|    flow->regs[idx * 2] = value >> 32;
  151|  21.3k|    flow->regs[idx * 2 + 1] = value;
  152|  21.3k|}
flow.c:flow_set_xxreg:
  169|  16.2k|{
  170|  16.2k|    flow->regs[idx * 4] = value.u64.hi >> 32;
  171|  16.2k|    flow->regs[idx * 4 + 1] = value.u64.hi;
  172|  16.2k|    flow->regs[idx * 4 + 2] = value.u64.lo >> 32;
  173|  16.2k|    flow->regs[idx * 4 + 3] = value.u64.lo;
  174|  16.2k|}
flow.c:miniflow_get_values:
  535|  39.7k|{
  536|  39.7k|    return (const uint64_t *)(mf + 1);
  537|  39.7k|}
flow.c:flowmap_next_index:
  479|  41.0k|{
  480|  61.1k|    for (;;) {
  481|  61.1k|        map_t *map = &aux->map.bits[aux->unit];
  482|  61.1k|        if (*map) {
  ------------------
  |  Branch (482:13): [True: 21.0k, False: 40.1k]
  ------------------
  483|  21.0k|            *idx = aux->unit * MAP_T_BITS + raw_ctz(*map);
  ------------------
  |  |  270|  21.0k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  484|  21.0k|            *map = zero_rightmost_1bit(*map);
  485|  21.0k|            return true;
  486|  21.0k|        }
  487|  40.1k|        if (++aux->unit >= FLOWMAP_UNITS) {
  ------------------
  |  |  280|  40.1k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  ------------------
  |  |  |  |  300|  40.1k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  |  Branch (487:13): [True: 20.0k, False: 20.0k]
  ------------------
  488|       |            return false;
  489|  20.0k|        }
  490|  40.1k|    }
  491|  41.0k|}
flow.c:flow_u64_value:
  557|   943k|{
  558|   943k|    return ((uint64_t *)flow)[index];
  559|   943k|}
flow.c:miniflow_n_values:
  568|  10.0k|{
  569|  10.0k|    return flowmap_n_1bits(flow->map);
  570|  10.0k|}
flow.c:flowmap_n_1bits:
  462|  10.0k|{
  463|  10.0k|    unsigned int n_1bits = 0;
  464|  10.0k|    size_t unit;
  465|       |
  466|  20.0k|    FLOWMAP_FOR_EACH_UNIT (unit) {
  ------------------
  |  |  320|  30.0k|    for ((UNIT) = 0; (UNIT) < FLOWMAP_UNITS; (UNIT)++)
  |  |  ------------------
  |  |  |  |  280|  30.0k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  30.0k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (320:22): [True: 20.0k, False: 10.0k]
  |  |  ------------------
  ------------------
  467|  20.0k|        n_1bits += count_1bits(fm.bits[unit]);
  468|  20.0k|    }
  469|  10.0k|    return n_1bits;
  470|  10.0k|}
flow.c:flow_union_with_miniflow:
  938|  39.7k|{
  939|  39.7k|    flow_union_with_miniflow_subset(dst, src, src->map);
  940|  39.7k|}
flow.c:flow_union_with_miniflow_subset:
  919|  39.7k|{
  920|  39.7k|    uint64_t *dst_u64 = (uint64_t *) dst;
  921|  39.7k|    const uint64_t *p = miniflow_get_values(src);
  922|  39.7k|    map_t map;
  923|       |
  924|  79.4k|    FLOWMAP_FOR_EACH_MAP (map, subset) {
  ------------------
  |  |  324|  39.7k|    for (size_t unit__ = 0;                                       \
  |  |  325|   119k|         unit__ < FLOWMAP_UNITS && ((MAP) = (FLOWMAP).bits[unit__], true); \
  |  |  ------------------
  |  |  |  |  280|   119k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|   238k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (325:10): [True: 79.4k, False: 39.7k]
  |  |  |  Branch (325:36): [True: 79.4k, False: 0]
  |  |  ------------------
  |  |  326|  79.4k|         unit__++)
  ------------------
  925|  79.4k|        size_t idx;
  926|       |
  927|  79.4k|        MAP_FOR_EACH_INDEX(idx, map) {
  ------------------
  |  |  278|  79.4k|    ULLONG_FOR_EACH_1(IDX, MAP)
  |  |  ------------------
  |  |  |  |  285|  79.4k|    for (uint64_t map__ = (MAP);                    \
  |  |  |  |  286|   121k|         map__ && (((IDX) = raw_ctz(map__)), true); \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (286:10): [True: 41.5k, False: 79.4k]
  |  |  |  |  |  Branch (286:19): [True: 41.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  287|  79.4k|         map__ = zero_rightmost_1bit(map__))
  |  |  ------------------
  ------------------
  928|  41.5k|            dst_u64[idx] |= *p++;
  929|  41.5k|        }
  930|       |        dst_u64 += MAP_T_BITS;
  ------------------
  |  |  270|  79.4k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  931|  79.4k|    }
  932|  39.7k|}
meta-flow.c:flow_get_xreg:
  143|  15.7k|{
  144|  15.7k|    return ((uint64_t) flow->regs[idx * 2] << 32) | flow->regs[idx * 2 + 1];
  145|  15.7k|}
meta-flow.c:flow_get_xxreg:
  156|  20.7k|{
  157|  20.7k|    ovs_u128 value;
  158|       |
  159|  20.7k|    value.u64.hi = (uint64_t) flow->regs[idx * 4] << 32;
  160|  20.7k|    value.u64.hi |= flow->regs[idx * 4 + 1];
  161|  20.7k|    value.u64.lo = (uint64_t) flow->regs[idx * 4 + 2] << 32;
  162|  20.7k|    value.u64.lo |= flow->regs[idx * 4 + 3];
  163|       |
  164|  20.7k|    return value;
  165|  20.7k|}
meta-flow.c:get_dl_type:
 1036|  95.3k|{
 1037|  95.3k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 87.6k, False: 7.66k]
  ------------------
 1038|  87.6k|        return flow->dl_type;
 1039|  87.6k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 6.48k, False: 1.18k]
  ------------------
 1040|  6.48k|        return pt_ns_type_be(flow->packet_type);
 1041|  6.48k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  1.18k|    }
 1044|  95.3k|}
meta-flow.c:is_ethernet:
 1028|  4.00k|{
 1029|  4.00k|    if (wc) {
  ------------------
  |  Branch (1029:9): [True: 0, False: 4.00k]
  ------------------
 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|  4.00k|}
meta-flow.c:is_vlan:
 1048|    464|{
 1049|    464|    if (!is_ethernet(flow, wc)) {
  ------------------
  |  Branch (1049:9): [True: 31, False: 433]
  ------------------
 1050|     31|        return false;
 1051|     31|    }
 1052|    433|    if (wc) {
  ------------------
  |  Branch (1052:9): [True: 0, False: 433]
  ------------------
 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|    464|}
meta-flow.c:is_ct_valid:
  954|    464|{
  955|       |    /* Matches are checked with 'mask' and without 'wc'. */
  956|    464|    if (mask && !wc) {
  ------------------
  |  Branch (956:9): [True: 463, False: 1]
  |  Branch (956:17): [True: 463, False: 0]
  ------------------
  957|       |        /* Must match at least one of the bits that implies a valid
  958|       |         * conntrack entry, or an explicit not-invalid. */
  959|    463|        return flow->ct_state & (CS_NEW | CS_ESTABLISHED | CS_RELATED
  ------------------
  |  Branch (959:16): [True: 266, False: 197]
  ------------------
  960|    463|                                 | CS_REPLY_DIR | CS_SRC_NAT | CS_DST_NAT)
  961|    197|            || (flow->ct_state & CS_TRACKED
  ------------------
  |  Branch (961:17): [True: 194, False: 3]
  ------------------
  962|    194|                && mask->masks.ct_state & CS_INVALID
  ------------------
  |  Branch (962:20): [True: 194, False: 0]
  ------------------
  963|    194|                && !(flow->ct_state & CS_INVALID));
  ------------------
  |  Branch (963:20): [True: 193, False: 1]
  ------------------
  964|    463|    }
  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|    464|}
meta-flow.c:is_tcp:
 1077|  1.29k|{
 1078|       |    return is_ip_proto(flow, IPPROTO_TCP, wc);
 1079|  1.29k|}
meta-flow.c:is_ip_proto:
 1065|  2.93k|{
 1066|  2.93k|    if (is_ip_any(flow)) {
  ------------------
  |  Branch (1066:9): [True: 2.84k, False: 86]
  ------------------
 1067|  2.84k|        if (wc) {
  ------------------
  |  Branch (1067:13): [True: 0, False: 2.84k]
  ------------------
 1068|      0|            WC_MASK_FIELD(wc, nw_proto);
  ------------------
  |  |  201|      0|    memset(&(WC)->masks.FIELD, 0xff, sizeof (WC)->masks.FIELD)
  ------------------
 1069|      0|        }
 1070|  2.84k|        return flow->nw_proto == ip_proto;
 1071|  2.84k|    }
 1072|     86|    return false;
 1073|  2.93k|}
meta-flow.c:is_udp:
 1083|  1.20k|{
 1084|       |    return is_ip_proto(flow, IPPROTO_UDP, wc);
 1085|  1.20k|}
meta-flow.c:is_sctp:
 1089|    431|{
 1090|       |    return is_ip_proto(flow, IPPROTO_SCTP, wc);
 1091|    431|}
meta-flow.c:is_icmpv4:
 1095|    320|{
 1096|    320|    if (get_dl_type(flow) == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (1096:9): [True: 305, False: 15]
  ------------------
 1097|    305|        if (wc) {
  ------------------
  |  Branch (1097:13): [True: 0, False: 305]
  ------------------
 1098|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1099|      0|        }
 1100|    305|        return flow->nw_proto == IPPROTO_ICMP;
 1101|    305|    }
 1102|     15|    return false;
 1103|    320|}
meta-flow.c:is_icmpv6:
 1107|  1.85k|{
 1108|  1.85k|    if (get_dl_type(flow) == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1108:9): [True: 1.80k, False: 50]
  ------------------
 1109|  1.80k|        if (wc) {
  ------------------
  |  Branch (1109:13): [True: 0, False: 1.80k]
  ------------------
 1110|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1111|      0|        }
 1112|  1.80k|        return flow->nw_proto == IPPROTO_ICMPV6;
 1113|  1.80k|    }
 1114|     50|    return false;
 1115|  1.85k|}
meta-flow.c:is_nd:
 1119|  1.29k|{
 1120|  1.29k|    if (is_icmpv6(flow, wc)) {
  ------------------
  |  Branch (1120:9): [True: 1.25k, False: 37]
  ------------------
 1121|  1.25k|        if (wc) {
  ------------------
  |  Branch (1121:13): [True: 0, False: 1.25k]
  ------------------
 1122|      0|            memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
 1123|      0|        }
 1124|  1.25k|        if (flow->tp_dst != htons(0)) {
  ------------------
  |  Branch (1124:13): [True: 13, False: 1.24k]
  ------------------
 1125|     13|            return false;
 1126|     13|        }
 1127|       |
 1128|  1.24k|        if (wc) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 1.24k]
  ------------------
 1129|      0|            memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
 1130|      0|        }
 1131|  1.24k|        return (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
  ------------------
  |  Branch (1131:17): [True: 580, False: 664]
  ------------------
 1132|    664|                flow->tp_src == htons(ND_NEIGHBOR_ADVERT));
  ------------------
  |  Branch (1132:17): [True: 615, False: 49]
  ------------------
 1133|  1.25k|    }
 1134|     37|    return false;
 1135|  1.29k|}
meta-flow.c:ofp_to_u16:
  196|  1.35k|{
  197|  1.35k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  1.35k|}
meta-flow.c:u16_to_ofp:
  214|    291|{
  215|    291|    return OFP_PORT_C(port);
  ------------------
  |  |  157|    291|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|    291|}
meta-flow.c:is_ip_any:
 1059|  3.66k|{
 1060|  3.66k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  3.66k|}
nx-match.c:get_dl_type:
 1036|  10.0k|{
 1037|  10.0k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 8.90k, False: 1.15k]
  ------------------
 1038|  8.90k|        return flow->dl_type;
 1039|  8.90k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 215, False: 944]
  ------------------
 1040|    215|        return pt_ns_type_be(flow->packet_type);
 1041|    944|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|    944|    }
 1044|  10.0k|}
nx-match.c:ofp_to_u16:
  196|     11|{
  197|     11|    return (OVS_FORCE uint16_t) ofp_port;
  198|     11|}
nx-match.c:is_ip_any:
 1059|  4.49k|{
 1060|  4.49k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  4.49k|}
nx-match.c:is_icmpv4:
 1095|    190|{
 1096|    190|    if (get_dl_type(flow) == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (1096:9): [True: 37, False: 153]
  ------------------
 1097|     37|        if (wc) {
  ------------------
  |  Branch (1097:13): [True: 0, False: 37]
  ------------------
 1098|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1099|      0|        }
 1100|     37|        return flow->nw_proto == IPPROTO_ICMP;
 1101|     37|    }
 1102|    153|    return false;
 1103|    190|}
nx-match.c:is_icmpv6:
 1107|    290|{
 1108|    290|    if (get_dl_type(flow) == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1108:9): [True: 289, False: 1]
  ------------------
 1109|    289|        if (wc) {
  ------------------
  |  Branch (1109:13): [True: 0, False: 289]
  ------------------
 1110|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1111|      0|        }
 1112|    289|        return flow->nw_proto == IPPROTO_ICMPV6;
 1113|    289|    }
 1114|      1|    return false;
 1115|    290|}
nx-match.c:is_nd:
 1119|    136|{
 1120|    136|    if (is_icmpv6(flow, wc)) {
  ------------------
  |  Branch (1120:9): [True: 136, False: 0]
  ------------------
 1121|    136|        if (wc) {
  ------------------
  |  Branch (1121:13): [True: 0, False: 136]
  ------------------
 1122|      0|            memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
 1123|      0|        }
 1124|    136|        if (flow->tp_dst != htons(0)) {
  ------------------
  |  Branch (1124:13): [True: 15, False: 121]
  ------------------
 1125|     15|            return false;
 1126|     15|        }
 1127|       |
 1128|    121|        if (wc) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 121]
  ------------------
 1129|      0|            memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
 1130|      0|        }
 1131|    121|        return (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
  ------------------
  |  Branch (1131:17): [True: 23, False: 98]
  ------------------
 1132|     98|                flow->tp_src == htons(ND_NEIGHBOR_ADVERT));
  ------------------
  |  Branch (1132:17): [True: 26, False: 72]
  ------------------
 1133|    136|    }
 1134|      0|    return false;
 1135|    136|}
ofp-actions.c:ofp_to_u16:
  196|   418k|{
  197|   418k|    return (OVS_FORCE uint16_t) ofp_port;
  198|   418k|}
ofp-actions.c:get_dl_type:
 1036|  38.6k|{
 1037|  38.6k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 21.7k, False: 16.8k]
  ------------------
 1038|  21.7k|        return flow->dl_type;
 1039|  21.7k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 12.7k, False: 4.16k]
  ------------------
 1040|  12.7k|        return pt_ns_type_be(flow->packet_type);
 1041|  12.7k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  4.16k|    }
 1044|  38.6k|}
ofp-actions.c:is_ip_any:
 1059|  12.9k|{
 1060|  12.9k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  12.9k|}
ofp-actions.c:is_ct_valid:
  954|    394|{
  955|       |    /* Matches are checked with 'mask' and without 'wc'. */
  956|    394|    if (mask && !wc) {
  ------------------
  |  Branch (956:9): [True: 394, False: 0]
  |  Branch (956:17): [True: 394, False: 0]
  ------------------
  957|       |        /* Must match at least one of the bits that implies a valid
  958|       |         * conntrack entry, or an explicit not-invalid. */
  959|    394|        return flow->ct_state & (CS_NEW | CS_ESTABLISHED | CS_RELATED
  ------------------
  |  Branch (959:16): [True: 197, False: 197]
  ------------------
  960|    394|                                 | 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|    394|    }
  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|    394|}

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

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

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

json_string_unescape:
 1078|  4.56k|{
 1079|  4.56k|    const char *end = in + in_len;
 1080|  4.56k|    bool ok = false;
 1081|  4.56k|    struct ds out;
 1082|       |
 1083|  4.56k|    ds_init(&out);
 1084|  4.56k|    ds_reserve(&out, in_len);
 1085|  13.2M|    while (in < end) {
  ------------------
  |  Branch (1085:12): [True: 13.2M, False: 223]
  ------------------
 1086|  13.2M|        if (*in == '"') {
  ------------------
  |  Branch (1086:13): [True: 590, False: 13.2M]
  ------------------
 1087|    590|            ds_clear(&out);
 1088|    590|            ds_put_cstr(&out, "quoted string may not include unescaped \"");
 1089|    590|            goto exit;
 1090|    590|        }
 1091|  13.2M|        if (*in != '\\') {
  ------------------
  |  Branch (1091:13): [True: 13.0M, False: 158k]
  ------------------
 1092|  13.0M|            ds_put_char(&out, *in++);
 1093|  13.0M|            continue;
 1094|  13.0M|        }
 1095|       |
 1096|   158k|        in++;
 1097|   158k|        if (in >= end) {
  ------------------
  |  Branch (1097:13): [True: 317, False: 158k]
  ------------------
 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|    317|            ds_clear(&out);
 1103|    317|            ds_put_cstr(&out, "quoted string may not end with backslash");
 1104|    317|            goto exit;
 1105|    317|        }
 1106|   158k|        switch (*in++) {
 1107|  24.9k|        case '"': case '\\': case '/':
  ------------------
  |  Branch (1107:9): [True: 6.22k, False: 151k]
  |  Branch (1107:19): [True: 10.1k, False: 147k]
  |  Branch (1107:30): [True: 8.54k, False: 149k]
  ------------------
 1108|  24.9k|            ds_put_char(&out, in[-1]);
 1109|  24.9k|            break;
 1110|       |
 1111|  75.7k|        case 'b':
  ------------------
  |  Branch (1111:9): [True: 75.7k, False: 82.3k]
  ------------------
 1112|  75.7k|            ds_put_char(&out, '\b');
 1113|  75.7k|            break;
 1114|       |
 1115|  17.3k|        case 'f':
  ------------------
  |  Branch (1115:9): [True: 17.3k, False: 140k]
  ------------------
 1116|  17.3k|            ds_put_char(&out, '\f');
 1117|  17.3k|            break;
 1118|       |
 1119|  5.57k|        case 'n':
  ------------------
  |  Branch (1119:9): [True: 5.57k, False: 152k]
  ------------------
 1120|  5.57k|            ds_put_char(&out, '\n');
 1121|  5.57k|            break;
 1122|       |
 1123|  2.45k|        case 'r':
  ------------------
  |  Branch (1123:9): [True: 2.45k, False: 155k]
  ------------------
 1124|  2.45k|            ds_put_char(&out, '\r');
 1125|  2.45k|            break;
 1126|       |
 1127|  2.74k|        case 't':
  ------------------
  |  Branch (1127:9): [True: 2.74k, False: 155k]
  ------------------
 1128|  2.74k|            ds_put_char(&out, '\t');
 1129|  2.74k|            break;
 1130|       |
 1131|  28.5k|        case 'u':
  ------------------
  |  Branch (1131:9): [True: 28.5k, False: 129k]
  ------------------
 1132|  28.5k|            in = json_lex_unicode(in, end, &out);
 1133|  28.5k|            if (!in) {
  ------------------
  |  Branch (1133:17): [True: 2.79k, False: 25.8k]
  ------------------
 1134|  2.79k|                goto exit;
 1135|  2.79k|            }
 1136|  25.8k|            break;
 1137|       |
 1138|  25.8k|        default:
  ------------------
  |  Branch (1138:9): [True: 644, False: 157k]
  ------------------
 1139|    644|            ds_clear(&out);
 1140|    644|            ds_put_format(&out, "bad escape \\%c", in[-1]);
 1141|    644|            goto exit;
 1142|   158k|        }
 1143|   158k|    }
 1144|    223|    ok = true;
 1145|       |
 1146|  4.56k|exit:
 1147|  4.56k|    *outp = ds_cstr(&out);
 1148|  4.56k|    return ok;
 1149|    223|}
json.c:json_lex_unicode:
 1036|  28.5k|{
 1037|  28.5k|    const char *error;
 1038|  28.5k|    int c0, c1;
 1039|       |
 1040|  28.5k|    error = json_lex_4hex(cp, end, &c0);
 1041|  28.5k|    if (error) {
  ------------------
  |  Branch (1041:9): [True: 1.06k, False: 27.5k]
  ------------------
 1042|  1.06k|        ds_clear(out);
 1043|  1.06k|        ds_put_cstr(out, error);
 1044|  1.06k|        return NULL;
 1045|  1.06k|    }
 1046|  27.5k|    cp += 4;
 1047|  27.5k|    if (!uc_is_leading_surrogate(c0)) {
  ------------------
  |  Branch (1047:9): [True: 23.9k, False: 3.60k]
  ------------------
 1048|  23.9k|        ds_put_utf8(out, c0);
 1049|  23.9k|        return cp;
 1050|  23.9k|    }
 1051|       |
 1052|  3.60k|    if (cp + 2 > end || *cp++ != '\\' || *cp++ != 'u') {
  ------------------
  |  Branch (1052:9): [True: 214, False: 3.39k]
  |  Branch (1052:25): [True: 230, False: 3.16k]
  |  Branch (1052:42): [True: 204, False: 2.96k]
  ------------------
 1053|    648|        ds_clear(out);
 1054|    648|        ds_put_cstr(out, "malformed escaped surrogate pair");
 1055|    648|        return NULL;
 1056|    648|    }
 1057|       |
 1058|  2.96k|    error = json_lex_4hex(cp, end, &c1);
 1059|  2.96k|    if (error) {
  ------------------
  |  Branch (1059:9): [True: 870, False: 2.09k]
  ------------------
 1060|    870|        ds_clear(out);
 1061|    870|        ds_put_cstr(out, error);
 1062|    870|        return NULL;
 1063|    870|    }
 1064|  2.09k|    cp += 4;
 1065|  2.09k|    if (!uc_is_trailing_surrogate(c1)) {
  ------------------
  |  Branch (1065:9): [True: 207, False: 1.88k]
  ------------------
 1066|    207|        ds_clear(out);
 1067|    207|        ds_put_cstr(out, "second half of escaped surrogate pair is not "
 1068|    207|                    "trailing surrogate");
 1069|    207|        return NULL;
 1070|    207|    }
 1071|       |
 1072|  1.88k|    ds_put_utf8(out, utf16_decode_surrogate_pair(c0, c1));
 1073|  1.88k|    return cp;
 1074|  2.09k|}
json.c:json_lex_4hex:
 1015|  31.5k|{
 1016|  31.5k|    unsigned int value;
 1017|  31.5k|    bool ok;
 1018|       |
 1019|  31.5k|    if (cp + 4 > end) {
  ------------------
  |  Branch (1019:9): [True: 679, False: 30.8k]
  ------------------
 1020|    679|        return "quoted string ends within \\u escape";
 1021|    679|    }
 1022|       |
 1023|  30.8k|    value = hexits_value(cp, 4, &ok);
 1024|  30.8k|    if (!ok) {
  ------------------
  |  Branch (1024:9): [True: 792, False: 30.0k]
  ------------------
 1025|    792|        return "malformed \\u escape";
 1026|    792|    }
 1027|  30.0k|    if (!value) {
  ------------------
  |  Branch (1027:9): [True: 465, False: 29.6k]
  ------------------
 1028|    465|        return "null bytes not supported in quoted strings";
 1029|    465|    }
 1030|  29.6k|    *valuep = value;
 1031|       |    return NULL;
 1032|  30.0k|}

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

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

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

multipath_check:
   38|    732|{
   39|    732|    return mf_check_dst(&mp->dst, match);
   40|    732|}
multipath_parse:
  223|  2.68k|{
  224|  2.68k|    char *s = xstrdup(s_);
  225|  2.68k|    char *error = multipath_parse__(mp, s_, s);
  226|  2.68k|    free(s);
  227|  2.68k|    return error;
  228|  2.68k|}
multipath.c:multipath_parse__:
  145|  2.68k|{
  146|  2.68k|    char *save_ptr = NULL;
  147|  2.68k|    char *fields, *basis, *algorithm, *n_links_str, *arg, *dst;
  148|  2.68k|    char *error;
  149|  2.68k|    int n_links;
  150|       |
  151|  2.68k|    fields = strtok_r(s, ", ", &save_ptr);
  152|  2.68k|    basis = strtok_r(NULL, ", ", &save_ptr);
  153|  2.68k|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  154|  2.68k|    n_links_str = strtok_r(NULL, ", ", &save_ptr);
  155|  2.68k|    arg = strtok_r(NULL, ", ", &save_ptr);
  156|  2.68k|    dst = strtok_r(NULL, ", ", &save_ptr);
  157|  2.68k|    if (!dst) {
  ------------------
  |  Branch (157:9): [True: 4, False: 2.68k]
  ------------------
  158|      4|        return xasprintf("%s: not enough arguments to multipath action", s_);
  159|      4|    }
  160|       |
  161|  2.68k|    ofpact_init_MULTIPATH(mp);
  162|  2.68k|    if (!strcasecmp(fields, "eth_src")) {
  ------------------
  |  Branch (162:9): [True: 277, False: 2.40k]
  ------------------
  163|    277|        mp->fields = NX_HASH_FIELDS_ETH_SRC;
  164|  2.40k|    } else if (!strcasecmp(fields, "symmetric_l4")) {
  ------------------
  |  Branch (164:16): [True: 360, False: 2.04k]
  ------------------
  165|    360|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
  166|  2.04k|    } else if (!strcasecmp(fields, "symmetric_l3l4")) {
  ------------------
  |  Branch (166:16): [True: 198, False: 1.84k]
  ------------------
  167|    198|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
  168|  1.84k|    } else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
  ------------------
  |  Branch (168:16): [True: 408, False: 1.43k]
  ------------------
  169|    408|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
  170|  1.43k|    } else if (!strcasecmp(fields, "nw_src")) {
  ------------------
  |  Branch (170:16): [True: 283, False: 1.15k]
  ------------------
  171|    283|        mp->fields = NX_HASH_FIELDS_NW_SRC;
  172|  1.15k|    } else if (!strcasecmp(fields, "nw_dst")) {
  ------------------
  |  Branch (172:16): [True: 483, False: 672]
  ------------------
  173|    483|        mp->fields = NX_HASH_FIELDS_NW_DST;
  174|    672|    } else if (!strcasecmp(fields, "symmetric_l3")) {
  ------------------
  |  Branch (174:16): [True: 445, False: 227]
  ------------------
  175|    445|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
  176|    445|    } else {
  177|    227|        return xasprintf("%s: unknown fields `%s'", s_, fields);
  178|    227|    }
  179|  2.45k|    mp->basis = atoi(basis);
  180|  2.45k|    if (!strcasecmp(algorithm, "modulo_n")) {
  ------------------
  |  Branch (180:9): [True: 225, False: 2.22k]
  ------------------
  181|    225|        mp->algorithm = NX_MP_ALG_MODULO_N;
  182|  2.22k|    } else if (!strcasecmp(algorithm, "hash_threshold")) {
  ------------------
  |  Branch (182:16): [True: 662, False: 1.56k]
  ------------------
  183|    662|        mp->algorithm = NX_MP_ALG_HASH_THRESHOLD;
  184|  1.56k|    } else if (!strcasecmp(algorithm, "hrw")) {
  ------------------
  |  Branch (184:16): [True: 675, False: 892]
  ------------------
  185|    675|        mp->algorithm = NX_MP_ALG_HRW;
  186|    892|    } else if (!strcasecmp(algorithm, "iter_hash")) {
  ------------------
  |  Branch (186:16): [True: 714, False: 178]
  ------------------
  187|    714|        mp->algorithm = NX_MP_ALG_ITER_HASH;
  188|    714|    } else {
  189|    178|        return xasprintf("%s: unknown algorithm `%s'", s_, algorithm);
  190|    178|    }
  191|  2.27k|    n_links = atoi(n_links_str);
  192|  2.27k|    if (n_links < 1 || n_links > 65536) {
  ------------------
  |  Branch (192:9): [True: 17, False: 2.25k]
  |  Branch (192:24): [True: 15, False: 2.24k]
  ------------------
  193|     32|        return xasprintf("%s: n_links %d is not in valid range 1 to 65536",
  194|     32|                         s_, n_links);
  195|     32|    }
  196|  2.24k|    mp->max_link = n_links - 1;
  197|  2.24k|    mp->arg = atoi(arg);
  198|       |
  199|  2.24k|    error = mf_parse_subfield(&mp->dst, dst);
  200|  2.24k|    if (error) {
  ------------------
  |  Branch (200:9): [True: 27, False: 2.21k]
  ------------------
  201|     27|        return error;
  202|     27|    }
  203|  2.21k|    if (!mf_nxm_header(mp->dst.field->id)) {
  ------------------
  |  Branch (203:9): [True: 1, False: 2.21k]
  ------------------
  204|      1|        return xasprintf("%s: experimenter OXM field '%s' not supported",
  205|      1|                         s_, dst);
  206|      1|    }
  207|  2.21k|    if (mp->dst.n_bits < 16 && n_links > (1u << mp->dst.n_bits)) {
  ------------------
  |  Branch (207:9): [True: 753, False: 1.46k]
  |  Branch (207:32): [True: 4, False: 749]
  ------------------
  208|      4|        return xasprintf("%s: %d-bit destination field has %u possible "
  209|      4|                         "values, less than specified n_links %d",
  210|      4|                         s_, mp->dst.n_bits, 1u << mp->dst.n_bits, n_links);
  211|      4|    }
  212|       |
  213|  2.21k|    return NULL;
  214|  2.21k|}

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

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

ofpact_put_set_field:
 3385|  46.3k|{
 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|  46.3k|    size_t total_size = 2 * ROUND_UP(field->n_bytes, OFPACT_ALIGNTO);
  ------------------
  |  |  303|  46.3k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  46.3k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 3392|  46.3k|    struct ofpact_set_field *sf = ofpact_put_SET_FIELD(ofpacts);
 3393|  46.3k|    sf->field = field;
 3394|       |
 3395|       |    /* Fill with all zeroes to make sure the padding is initialized. */
 3396|  46.3k|    ofpbuf_put_zeros(ofpacts, total_size);
 3397|  46.3k|    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|  46.3k|    if (value) {
  ------------------
  |  Branch (3401:9): [True: 45.8k, False: 581]
  ------------------
 3402|  45.8k|        memcpy(sf->value, value, field->n_bytes);
 3403|  45.8k|        if (mask) {
  ------------------
  |  Branch (3403:13): [True: 45.8k, False: 0]
  ------------------
 3404|  45.8k|            memcpy(ofpact_set_field_mask(sf), mask, field->n_bytes);
  ------------------
  |  |  563|  45.8k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  45.8k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  45.8k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  45.8k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3405|  45.8k|        } 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|  45.8k|    }
 3409|       |
 3410|       |    /* Update length. */
 3411|  46.3k|    ofpact_finish_SET_FIELD(ofpacts, &sf);
 3412|       |
 3413|  46.3k|    return sf;
 3414|  46.3k|}
ofpact_put_reg_load:
 3424|    581|{
 3425|    581|    struct ofpact_set_field *sf = ofpact_put_set_field(ofpacts, field, value,
 3426|    581|                                                       mask);
 3427|    581|    sf->ofpact.raw = NXAST_RAW_REG_LOAD;
 3428|       |
 3429|    581|    return sf;
 3430|    581|}
ovs_instruction_name_from_type:
 8363|     62|{
 8364|     62|    return type < ARRAY_SIZE(inst_info) ? inst_info[type].name : NULL;
  ------------------
  |  |  297|     62|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|     62|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|     62|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|     62|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     62|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|     62|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (8364:12): [True: 62, False: 0]
  ------------------
 8365|     62|}
ovs_instruction_type_from_ofpact_type:
 8382|   298k|{
 8383|   298k|    switch (type) {
 8384|    271|    case OFPACT_METER:
  ------------------
  |  Branch (8384:5): [True: 271, False: 298k]
  ------------------
 8385|    271|        return (version >= OFP15_VERSION
  ------------------
  |  Branch (8385:17): [True: 0, False: 271]
  ------------------
 8386|    271|                ? OVSINST_OFPIT11_APPLY_ACTIONS
 8387|    271|                : OVSINST_OFPIT13_METER);
 8388|     28|    case OFPACT_CLEAR_ACTIONS:
  ------------------
  |  Branch (8388:5): [True: 28, False: 298k]
  ------------------
 8389|     28|        return OVSINST_OFPIT11_CLEAR_ACTIONS;
 8390|    149|    case OFPACT_WRITE_ACTIONS:
  ------------------
  |  Branch (8390:5): [True: 149, False: 298k]
  ------------------
 8391|    149|        return OVSINST_OFPIT11_WRITE_ACTIONS;
 8392|     24|    case OFPACT_WRITE_METADATA:
  ------------------
  |  Branch (8392:5): [True: 24, False: 298k]
  ------------------
 8393|     24|        return OVSINST_OFPIT11_WRITE_METADATA;
 8394|     26|    case OFPACT_GOTO_TABLE:
  ------------------
  |  Branch (8394:5): [True: 26, False: 298k]
  ------------------
 8395|     26|        return OVSINST_OFPIT11_GOTO_TABLE;
 8396|   125k|    case OFPACT_OUTPUT:
  ------------------
  |  Branch (8396:5): [True: 125k, False: 173k]
  ------------------
 8397|   125k|    case OFPACT_GROUP:
  ------------------
  |  Branch (8397:5): [True: 221, False: 298k]
  ------------------
 8398|   132k|    case OFPACT_CLONE:
  ------------------
  |  Branch (8398:5): [True: 6.69k, False: 292k]
  ------------------
 8399|   141k|    case OFPACT_CONTROLLER:
  ------------------
  |  Branch (8399:5): [True: 9.05k, False: 289k]
  ------------------
 8400|   142k|    case OFPACT_ENQUEUE:
  ------------------
  |  Branch (8400:5): [True: 1.47k, False: 297k]
  ------------------
 8401|   143k|    case OFPACT_OUTPUT_REG:
  ------------------
  |  Branch (8401:5): [True: 467, False: 298k]
  ------------------
 8402|   144k|    case OFPACT_OUTPUT_TRUNC:
  ------------------
  |  Branch (8402:5): [True: 938, False: 297k]
  ------------------
 8403|   146k|    case OFPACT_BUNDLE:
  ------------------
  |  Branch (8403:5): [True: 2.52k, False: 296k]
  ------------------
 8404|   149k|    case OFPACT_SET_VLAN_VID:
  ------------------
  |  Branch (8404:5): [True: 2.47k, False: 296k]
  ------------------
 8405|   151k|    case OFPACT_SET_VLAN_PCP:
  ------------------
  |  Branch (8405:5): [True: 2.65k, False: 296k]
  ------------------
 8406|   154k|    case OFPACT_STRIP_VLAN:
  ------------------
  |  Branch (8406:5): [True: 2.98k, False: 295k]
  ------------------
 8407|   156k|    case OFPACT_PUSH_VLAN:
  ------------------
  |  Branch (8407:5): [True: 1.48k, False: 297k]
  ------------------
 8408|   156k|    case OFPACT_SET_ETH_SRC:
  ------------------
  |  Branch (8408:5): [True: 665, False: 298k]
  ------------------
 8409|   157k|    case OFPACT_SET_ETH_DST:
  ------------------
  |  Branch (8409:5): [True: 726, False: 298k]
  ------------------
 8410|   158k|    case OFPACT_SET_IPV4_SRC:
  ------------------
  |  Branch (8410:5): [True: 1.06k, False: 297k]
  ------------------
 8411|   159k|    case OFPACT_SET_IPV4_DST:
  ------------------
  |  Branch (8411:5): [True: 1.06k, False: 297k]
  ------------------
 8412|   161k|    case OFPACT_SET_IP_DSCP:
  ------------------
  |  Branch (8412:5): [True: 1.30k, False: 297k]
  ------------------
 8413|   163k|    case OFPACT_SET_IP_ECN:
  ------------------
  |  Branch (8413:5): [True: 2.16k, False: 296k]
  ------------------
 8414|   165k|    case OFPACT_SET_IP_TTL:
  ------------------
  |  Branch (8414:5): [True: 2.31k, False: 296k]
  ------------------
 8415|   167k|    case OFPACT_SET_L4_SRC_PORT:
  ------------------
  |  Branch (8415:5): [True: 2.32k, False: 296k]
  ------------------
 8416|   170k|    case OFPACT_SET_L4_DST_PORT:
  ------------------
  |  Branch (8416:5): [True: 2.49k, False: 296k]
  ------------------
 8417|   170k|    case OFPACT_REG_MOVE:
  ------------------
  |  Branch (8417:5): [True: 590, False: 298k]
  ------------------
 8418|   204k|    case OFPACT_SET_FIELD:
  ------------------
  |  Branch (8418:5): [True: 33.2k, False: 265k]
  ------------------
 8419|   204k|    case OFPACT_STACK_PUSH:
  ------------------
  |  Branch (8419:5): [True: 492, False: 298k]
  ------------------
 8420|   206k|    case OFPACT_STACK_POP:
  ------------------
  |  Branch (8420:5): [True: 2.02k, False: 296k]
  ------------------
 8421|   209k|    case OFPACT_DEC_TTL:
  ------------------
  |  Branch (8421:5): [True: 2.71k, False: 296k]
  ------------------
 8422|   213k|    case OFPACT_SET_MPLS_LABEL:
  ------------------
  |  Branch (8422:5): [True: 3.74k, False: 295k]
  ------------------
 8423|   214k|    case OFPACT_SET_MPLS_TC:
  ------------------
  |  Branch (8423:5): [True: 1.60k, False: 297k]
  ------------------
 8424|   215k|    case OFPACT_SET_MPLS_TTL:
  ------------------
  |  Branch (8424:5): [True: 848, False: 297k]
  ------------------
 8425|   218k|    case OFPACT_DEC_MPLS_TTL:
  ------------------
  |  Branch (8425:5): [True: 3.19k, False: 295k]
  ------------------
 8426|   219k|    case OFPACT_PUSH_MPLS:
  ------------------
  |  Branch (8426:5): [True: 634, False: 298k]
  ------------------
 8427|   221k|    case OFPACT_POP_MPLS:
  ------------------
  |  Branch (8427:5): [True: 2.11k, False: 296k]
  ------------------
 8428|   223k|    case OFPACT_SET_TUNNEL:
  ------------------
  |  Branch (8428:5): [True: 1.48k, False: 297k]
  ------------------
 8429|   223k|    case OFPACT_SET_QUEUE:
  ------------------
  |  Branch (8429:5): [True: 201, False: 298k]
  ------------------
 8430|   224k|    case OFPACT_POP_QUEUE:
  ------------------
  |  Branch (8430:5): [True: 711, False: 298k]
  ------------------
 8431|   225k|    case OFPACT_FIN_TIMEOUT:
  ------------------
  |  Branch (8431:5): [True: 1.12k, False: 297k]
  ------------------
 8432|   226k|    case OFPACT_RESUBMIT:
  ------------------
  |  Branch (8432:5): [True: 1.04k, False: 297k]
  ------------------
 8433|   260k|    case OFPACT_LEARN:
  ------------------
  |  Branch (8433:5): [True: 34.2k, False: 264k]
  ------------------
 8434|   260k|    case OFPACT_CONJUNCTION:
  ------------------
  |  Branch (8434:5): [True: 0, False: 298k]
  ------------------
 8435|   261k|    case OFPACT_MULTIPATH:
  ------------------
  |  Branch (8435:5): [True: 866, False: 297k]
  ------------------
 8436|   263k|    case OFPACT_NOTE:
  ------------------
  |  Branch (8436:5): [True: 2.19k, False: 296k]
  ------------------
 8437|   264k|    case OFPACT_EXIT:
  ------------------
  |  Branch (8437:5): [True: 1.01k, False: 297k]
  ------------------
 8438|   264k|    case OFPACT_UNROLL_XLATE:
  ------------------
  |  Branch (8438:5): [True: 0, False: 298k]
  ------------------
 8439|   266k|    case OFPACT_SAMPLE:
  ------------------
  |  Branch (8439:5): [True: 1.65k, False: 297k]
  ------------------
 8440|   267k|    case OFPACT_DEBUG_RECIRC:
  ------------------
  |  Branch (8440:5): [True: 888, False: 297k]
  ------------------
 8441|   268k|    case OFPACT_DEBUG_SLOW:
  ------------------
  |  Branch (8441:5): [True: 1.78k, False: 296k]
  ------------------
 8442|   278k|    case OFPACT_CT:
  ------------------
  |  Branch (8442:5): [True: 9.52k, False: 289k]
  ------------------
 8443|   281k|    case OFPACT_CT_CLEAR:
  ------------------
  |  Branch (8443:5): [True: 3.54k, False: 295k]
  ------------------
 8444|   291k|    case OFPACT_NAT:
  ------------------
  |  Branch (8444:5): [True: 9.90k, False: 288k]
  ------------------
 8445|   294k|    case OFPACT_ENCAP:
  ------------------
  |  Branch (8445:5): [True: 2.57k, False: 296k]
  ------------------
 8446|   296k|    case OFPACT_DECAP:
  ------------------
  |  Branch (8446:5): [True: 2.21k, False: 296k]
  ------------------
 8447|   297k|    case OFPACT_DEC_NSH_TTL:
  ------------------
  |  Branch (8447:5): [True: 791, False: 297k]
  ------------------
 8448|   297k|    case OFPACT_CHECK_PKT_LARGER:
  ------------------
  |  Branch (8448:5): [True: 483, False: 298k]
  ------------------
 8449|   298k|    case OFPACT_DELETE_FIELD:
  ------------------
  |  Branch (8449:5): [True: 327, False: 298k]
  ------------------
 8450|   298k|    default:
  ------------------
  |  Branch (8450:5): [True: 0, False: 298k]
  ------------------
 8451|   298k|        return OVSINST_OFPIT11_APPLY_ACTIONS;
 8452|   298k|    }
 8453|   298k|}
ofpact_check_output_port:
 8782|   149k|{
 8783|   149k|    switch (port) {
 8784|    887|    case OFPP_IN_PORT:
  ------------------
  |  |   39|    887|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    887|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8784:5): [True: 887, False: 148k]
  ------------------
 8785|  2.11k|    case OFPP_TABLE:
  ------------------
  |  |   40|  2.11k|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  ------------------
  |  |  |  |  157|  2.11k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8785:5): [True: 1.22k, False: 148k]
  ------------------
 8786|  2.36k|    case OFPP_NORMAL:
  ------------------
  |  |   41|  2.36k|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  ------------------
  |  |  |  |  157|  2.36k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8786:5): [True: 256, False: 149k]
  ------------------
 8787|  2.84k|    case OFPP_FLOOD:
  ------------------
  |  |   42|  2.84k|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  ------------------
  |  |  |  |  157|  2.84k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8787:5): [True: 476, False: 149k]
  ------------------
 8788|  3.30k|    case OFPP_ALL:
  ------------------
  |  |   44|  3.30k|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  ------------------
  |  |  |  |  157|  3.30k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8788:5): [True: 458, False: 149k]
  ------------------
 8789|  4.08k|    case OFPP_CONTROLLER:
  ------------------
  |  |   45|  4.08k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  4.08k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8789:5): [True: 783, False: 149k]
  ------------------
 8790|  4.31k|    case OFPP_LOCAL:
  ------------------
  |  |   46|  4.31k|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|  4.31k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8790:5): [True: 224, False: 149k]
  ------------------
 8791|  4.31k|        return 0;
 8792|       |
 8793|     12|    case OFPP_NONE:
  ------------------
  |  |   47|     12|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|     12|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8793:5): [True: 12, False: 149k]
  ------------------
 8794|     12|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 8795|       |
 8796|   145k|    default:
  ------------------
  |  Branch (8796:5): [True: 145k, False: 4.32k]
  ------------------
 8797|   145k|        if (ofp_to_u16(port) < ofp_to_u16(max_ports)) {
  ------------------
  |  Branch (8797:13): [True: 145k, False: 41]
  ------------------
 8798|   145k|            return 0;
 8799|   145k|        }
 8800|     41|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 8801|   149k|    }
 8802|   149k|}
ofpacts_check:
 8851|  21.8k|{
 8852|       |    /* Save fields that might temporarily be modified. */
 8853|  21.8k|    struct flow *flow = &cp->match->flow;
 8854|  21.8k|    ovs_be32 packet_type = flow->packet_type;
 8855|  21.8k|    ovs_be16 dl_type = flow->dl_type;
 8856|  21.8k|    uint8_t nw_proto = flow->nw_proto;
 8857|  21.8k|    union flow_vlan_hdr vlans[FLOW_MAX_VLAN_HEADERS];
 8858|  21.8k|    memcpy(vlans, flow->vlans, sizeof vlans);
 8859|       |
 8860|       |    /* Check all the actions. */
 8861|  21.8k|    cp->usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  21.8k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 8862|  21.8k|    enum ofperr error = 0;
 8863|  21.8k|    struct ofpact *a;
 8864|   243k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   264k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 243k, False: 21.0k]
  |  |  ------------------
  |  |  262|   243k|         (POS) = ofpact_next(POS))
  ------------------
 8865|   243k|        error = ofpact_check__(a, cp);
 8866|   243k|        if (error) {
  ------------------
  |  Branch (8866:13): [True: 777, False: 243k]
  ------------------
 8867|    777|            break;
 8868|    777|        }
 8869|   243k|    }
 8870|       |
 8871|       |    /* Restore fields that may have been modified. */
 8872|  21.8k|    flow->packet_type = packet_type;
 8873|  21.8k|    flow->dl_type = dl_type;
 8874|  21.8k|    memcpy(flow->vlans, vlans, sizeof vlans);
 8875|  21.8k|    flow->nw_proto = nw_proto;
 8876|       |
 8877|  21.8k|    return error;
 8878|  21.8k|}
ofpact_get_mf_dst:
 8898|   253k|{
 8899|   253k|    if (ofpact->type == OFPACT_SET_FIELD) {
  ------------------
  |  Branch (8899:9): [True: 28.1k, False: 225k]
  ------------------
 8900|  28.1k|        const struct ofpact_set_field *orl;
 8901|       |
 8902|  28.1k|        orl = CONTAINER_OF(ofpact, struct ofpact_set_field, ofpact);
  ------------------
  |  |  124|  28.1k|        ((STRUCT *) (void *) ((char *) (POINTER) - offsetof (STRUCT, MEMBER)))
  ------------------
 8903|  28.1k|        return orl->field;
 8904|   225k|    } else if (ofpact->type == OFPACT_REG_MOVE) {
  ------------------
  |  Branch (8904:16): [True: 395, False: 224k]
  ------------------
 8905|    395|        const struct ofpact_reg_move *orm;
 8906|       |
 8907|    395|        orm = CONTAINER_OF(ofpact, struct ofpact_reg_move, ofpact);
  ------------------
  |  |  124|    395|        ((STRUCT *) (void *) ((char *) (POINTER) - offsetof (STRUCT, MEMBER)))
  ------------------
 8908|    395|        return orm->dst.field;
 8909|    395|    }
 8910|       |
 8911|   224k|    return NULL;
 8912|   253k|}
ofpacts_put_openflow_actions:
 9095|  24.4k|{
 9096|  24.4k|    const struct ofpact *a;
 9097|  24.4k|    size_t start_size = openflow->size;
 9098|       |
 9099|   194k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   218k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 194k, False: 24.4k]
  |  |  ------------------
  |  |  262|   194k|         (POS) = ofpact_next(POS))
  ------------------
 9100|   194k|        encode_ofpact(a, ofp_version, openflow);
 9101|   194k|    }
 9102|  24.4k|    return openflow->size - start_size;
 9103|  24.4k|}
ofpacts_put_openflow_instructions:
 9117|    698|{
 9118|    698|    const struct ofpact *end = ofpact_end(ofpacts, ofpacts_len);
 9119|    698|    const struct ofpact *a;
 9120|       |
 9121|    698|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (9121:9): [True: 0, False: 698]
  ------------------
 9122|      0|        ofpacts_put_openflow_actions(ofpacts, ofpacts_len, openflow,
 9123|      0|                                     ofp_version);
 9124|      0|        return;
 9125|      0|    }
 9126|       |
 9127|    698|    a = ofpacts;
 9128|  1.43k|    while (a < end) {
  ------------------
  |  Branch (9128:12): [True: 733, False: 698]
  ------------------
 9129|    733|        if (ofpact_is_apply_actions(a, ofp_version)) {
  ------------------
  |  Branch (9129:13): [True: 550, False: 183]
  ------------------
 9130|    550|            size_t ofs = openflow->size;
 9131|       |
 9132|    550|            instruction_put_OFPIT11_APPLY_ACTIONS(openflow);
 9133|  45.5k|            do {
 9134|  45.5k|                encode_ofpact(a, ofp_version, openflow);
 9135|  45.5k|                a = ofpact_next(a);
 9136|  45.5k|            } while (a < end && ofpact_is_apply_actions(a, ofp_version));
  ------------------
  |  Branch (9136:22): [True: 45.0k, False: 522]
  |  Branch (9136:33): [True: 45.0k, False: 28]
  ------------------
 9137|    550|            ofpacts_update_instruction_actions(openflow, ofs);
 9138|    550|        } else {
 9139|    183|            encode_ofpact(a, ofp_version, openflow);
 9140|    183|            a = ofpact_next(a);
 9141|    183|        }
 9142|    733|    }
 9143|    698|}
ofpact_put:
 9505|   390k|{
 9506|   390k|    struct ofpact *ofpact;
 9507|       |
 9508|   390k|    ofpacts->header = ofpbuf_put_uninit(ofpacts, len);
 9509|   390k|    ofpact = ofpacts->header;
 9510|   390k|    ofpact_init(ofpact, type, len);
 9511|   390k|    return ofpact;
 9512|   390k|}
ofpact_init:
 9517|   393k|{
 9518|   393k|    memset(ofpact, 0, len);
 9519|   393k|    ofpact->type = type;
 9520|   393k|    ofpact->raw = -1;
 9521|   393k|    ofpact->len = len;
 9522|   393k|}
ofpact_finish:
 9535|   118k|{
 9536|   118k|    ptrdiff_t len;
 9537|       |
 9538|   118k|    ovs_assert(ofpact == ofpacts->header);
  ------------------
  |  |   62|   118k|#define ovs_assert ovs_ignore
  ------------------
 9539|   118k|    len = (char *) ofpbuf_tail(ofpacts) - (char *) ofpact;
 9540|   118k|    ovs_assert(len > 0 && len <= UINT16_MAX);
  ------------------
  |  |   62|   118k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (9540:16): [True: 118k, False: 0]
  |  Branch (9540:27): [True: 118k, False: 0]
  ------------------
 9541|   118k|    ofpact->len = len;
 9542|   118k|    ofpbuf_padto(ofpacts, OFPACT_ALIGN(ofpacts->size));
  ------------------
  |  |  205|   118k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|   118k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|   118k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9543|       |
 9544|   118k|    return ofpacts->header;
 9545|   118k|}
ofpacts_parse_instructions:
 9707|  14.4k|{
 9708|       |    return ofpacts_parse_copy(s, pp, true, 0);
 9709|  14.4k|}
ofpact_name:
 9713|     37|{
 9714|     37|    switch (type) {
  ------------------
  |  Branch (9714:13): [True: 37, False: 0]
  ------------------
 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
 9716|     37|        OFPACTS
  ------------------
  |  |   64|      3|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9715|      3|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 3, False: 34]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   65|      3|    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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   74|      0|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   85|      1|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      1|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 35]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   93|      0|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   94|      0|    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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  101|      1|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  102|      1|                                                                        \
  |  |  103|      1|    /* Metadata. */                                                     \
  |  |  104|      1|    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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  111|      0|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|      0|    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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  122|     23|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9715|     23|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 23, False: 14]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  123|     23|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  124|      0|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      3|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9715|      3|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 3, False: 34]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  127|      3|    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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  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: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  136|      0|                                                                        \
  |  |  137|      0|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|      1|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|      1|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  140|      0|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  141|      1|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 36]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  142|      1|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9717|     37|#undef OFPACT
 9718|     37|    }
 9719|      0|    return "<unknown>";
 9720|     37|}
ofp-actions.c:add_conjunction:
 5665|    534|{
 5666|    534|    struct ofpact_conjunction *oc;
 5667|       |
 5668|    534|    oc = ofpact_put_CONJUNCTION(out);
 5669|    534|    oc->id = id;
 5670|    534|    oc->clause = clause;
 5671|    534|    oc->n_clauses = n_clauses;
 5672|    534|}
ofp-actions.c:ofpacts_pull:
  536|  85.9k|{
  537|  85.9k|    size_t ofs;
  538|       |
  539|  85.9k|    ofs = ofpacts->size;
  540|  85.9k|    ofpbuf_pull(ofpacts, ofs);
  541|       |
  542|  85.9k|    return ofs;
  543|  85.9k|}
ofp-actions.c:ofpact_check__:
 8823|   243k|{
 8824|   243k|    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|  99.0k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 8826|  99.0k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 99.0k, False: 144k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  99.0k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   65|  99.0k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 8826|    221|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 221, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    221|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   66|  7.28k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 8826|  7.28k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7.28k, False: 236k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  7.28k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   67|  7.28k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 8826|    865|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 865, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    865|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   68|    865|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 8826|    395|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 395, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    395|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   69|  1.53k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 8826|  1.53k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.53k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.53k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   70|  1.53k|                                                                        \
  |  |   71|  1.53k|    /* Header changes. */                                               \
  |  |   72|  26.7k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 8826|  26.7k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 26.7k, False: 217k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  26.7k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   73|  26.7k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 8826|  1.71k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.71k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.71k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   74|  1.71k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 8826|  1.61k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.61k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.61k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   75|  2.27k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 8826|  2.27k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.27k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.27k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   76|  2.27k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 8826|    984|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 984, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    984|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   77|    984|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 8826|    449|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 449, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    449|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   78|    482|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 8826|    482|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 482, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    482|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   79|    843|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 8826|    843|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 843, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    843|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   80|    843|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 8826|    739|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 739, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    739|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   81|  1.22k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 8826|  1.22k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.22k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.22k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   82|  1.43k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 8826|  1.43k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.43k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.43k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   83|  1.87k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 8826|  1.87k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.87k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.87k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   84|  2.10k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 8826|  2.10k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.10k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.10k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   85|  2.10k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 8826|  2.08k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.08k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.08k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   86|  2.08k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 8826|    395|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 395, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    395|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   87|    492|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 8826|    492|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 492, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    492|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   88|  2.02k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 8826|  2.02k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.02k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.02k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   89|  2.68k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 8826|  2.68k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.68k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.68k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   90|  2.69k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 8826|  2.69k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.69k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.69k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   91|  2.69k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 8826|  1.28k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.28k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.28k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   92|  1.28k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 8826|    848|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 848, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    848|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   93|  2.86k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 8826|  2.86k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.86k, False: 240k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.86k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   94|  2.86k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 8826|    618|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 618, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    618|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   95|  2.11k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 8826|  2.11k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.11k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.11k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   96|  2.11k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 8826|    640|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 640, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    640|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   97|    640|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 8826|    269|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 269, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    269|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   98|    269|                                                                        \
  |  |   99|    269|    /* Generic encap & decap */                                         \
  |  |  100|  1.53k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 8826|  1.53k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.53k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.53k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  101|  2.01k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 8826|  2.01k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.01k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.01k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  102|  2.01k|                                                                        \
  |  |  103|  2.01k|    /* Metadata. */                                                     \
  |  |  104|  2.01k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 8826|  1.20k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.20k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.20k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  105|  1.20k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 8826|    201|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 201, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    201|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  106|    663|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 8826|    663|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 663, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    663|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  107|  1.12k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 8826|  1.12k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.12k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.12k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  108|  1.12k|                                                                        \
  |  |  109|  1.12k|    /* Flow table interaction. */                                       \
  |  |  110|  1.12k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 8826|  1.04k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.04k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.04k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  111|  32.7k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 8826|  32.7k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 32.7k, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  32.7k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  112|  32.7k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 8826|    214|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 214, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    214|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  113|    214|                                                                        \
  |  |  114|    214|    /* Arithmetic. */                                                   \
  |  |  115|    732|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 8826|    732|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 732, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    732|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  116|    732|                                                                        \
  |  |  117|    732|    /* Other. */                                                        \
  |  |  118|  2.00k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 8826|  2.00k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.00k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.00k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  119|  2.00k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 8826|    924|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 924, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    924|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  120|  1.65k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 8826|  1.65k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.65k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.65k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  121|  1.65k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 8826|      0|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 0, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|      0|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  122|  9.23k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 8826|  9.23k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 9.23k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  9.23k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  123|  9.23k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 8826|  2.07k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.07k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.07k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  124|  5.07k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 8826|  5.07k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 5.07k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  5.07k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  125|  5.07k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 8826|    938|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 938, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    938|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  126|  6.31k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 8826|  6.31k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 6.31k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  6.31k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  127|  6.31k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 8826|    407|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 407, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    407|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  128|    407|           "check_pkt_larger")                                          \
  |  |  129|    407|                                                                        \
  |  |  130|    407|    /* Debugging actions.                                               \
  |  |  131|    407|     *                                                                  \
  |  |  132|    407|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    407|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|    863|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 8826|    863|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 863, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    863|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  135|  1.77k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 8826|  1.77k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.77k, False: 242k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.77k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  136|  1.77k|                                                                        \
  |  |  137|  1.77k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  1.77k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 8826|    143|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 143, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    143|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  139|    143|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 8826|      8|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 8, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|      8|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  140|     58|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 8826|     58|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 58, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     58|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  141|     58|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 8826|     11|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 11, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     11|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  142|     11|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 8826|     10|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 10, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     10|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  ------------------
 8829|      0|#undef OFPACT
 8830|      0|    default:
  ------------------
  |  Branch (8830:5): [True: 0, False: 243k]
  ------------------
 8831|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 8832|   243k|    }
 8833|   243k|}
ofp-actions.c:check_OUTPUT:
  717|  99.0k|{
  718|  99.0k|    return ofpact_check_output_port(a->port, cp->max_ports);
  719|  99.0k|}
ofp-actions.c:check_GROUP:
  756|    221|{
  757|    221|    return 0;
  758|    221|}
ofp-actions.c:check_CONTROLLER:
 1074|  7.28k|{
 1075|  7.28k|    return 0;
 1076|  7.28k|}
ofp-actions.c:check_ENQUEUE:
 1161|    865|{
 1162|    865|    if (ofp_to_u16(a->port) >= ofp_to_u16(cp->max_ports)
  ------------------
  |  Branch (1162:9): [True: 527, False: 338]
  ------------------
 1163|    865|        && a->port != OFPP_IN_PORT
  ------------------
  |  |   39|    527|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|  1.39k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (1163:12): [True: 201, False: 326]
  ------------------
 1164|    201|        && a->port != OFPP_LOCAL) {
  ------------------
  |  |   46|    201|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|    201|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (1164:12): [True: 5, False: 196]
  ------------------
 1165|      5|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 1166|      5|    }
 1167|    860|    return 0;
 1168|    865|}
ofp-actions.c:check_OUTPUT_REG:
 1326|    395|{
 1327|    395|    return mf_check_src(&a->src, cp->match);
 1328|    395|}
ofp-actions.c:check_BUNDLE:
 1552|  1.53k|{
 1553|  1.53k|    return bundle_check(a, cp->max_ports, cp->match);
 1554|  1.53k|}
ofp-actions.c:check_SET_FIELD:
 3352|  26.7k|{
 3353|  26.7k|    const struct mf_field *mf = a->field;
 3354|  26.7k|    struct flow *flow = &cp->match->flow;
 3355|  26.7k|    ovs_be16 *tci = &flow->vlans[0].tci;
 3356|       |
 3357|       |    /* Require OXM_OF_VLAN_VID to have an existing VLAN header. */
 3358|  26.7k|    if (!mf_are_prereqs_ok(mf, flow, NULL)
  ------------------
  |  Branch (3358:9): [True: 172, False: 26.6k]
  ------------------
 3359|  26.6k|        || (mf->id == MFF_VLAN_VID && !(*tci & htons(VLAN_CFI)))) {
  ------------------
  |  Branch (3359:13): [True: 394, False: 26.2k]
  |  Branch (3359:39): [True: 3, False: 391]
  ------------------
 3360|    175|        VLOG_WARN_RL(&rl, "set_field %s lacks correct prerequisites",
  ------------------
  |  |  224|    175|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    175|    do {                                                                \
  |  |  |  |  288|    175|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    175|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 175]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    175|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 175]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3361|    175|                     mf->name);
 3362|    175|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 3363|    175|    }
 3364|       |
 3365|       |    /* Remember if we saw a VLAN tag in the flow, to aid translating to
 3366|       |     * OpenFlow 1.1 if need be. */
 3367|  26.6k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 3368|  26.6k|    if (mf->id == MFF_VLAN_TCI) {
  ------------------
  |  Branch (3368:9): [True: 1.79k, False: 24.8k]
  ------------------
 3369|       |        /* The set field may add or remove the VLAN tag,
 3370|       |         * Mark the status temporarily. */
 3371|  1.79k|        *tci = a->value->be16;
 3372|  1.79k|    }
 3373|       |
 3374|  26.6k|    return 0;
 3375|  26.7k|}
ofp-actions.c:check_SET_VLAN_VID:
 1649|  1.71k|{
 1650|       |    /* Remember if we saw a vlan tag in the flow to aid translating to OpenFlow
 1651|       |     * 1.1+ if need be. */
 1652|  1.71k|    ovs_be16 *tci = &cp->match->flow.vlans[0].tci;
 1653|  1.71k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 1654|  1.71k|    if (!a->flow_has_vlan && !a->push_vlan_if_needed) {
  ------------------
  |  Branch (1654:9): [True: 542, False: 1.17k]
  |  Branch (1654:30): [True: 222, False: 320]
  ------------------
 1655|    222|        inconsistent_match(&cp->usable_protocols);
 1656|    222|    }
 1657|       |
 1658|       |    /* Temporarily mark that we have a vlan tag. */
 1659|  1.71k|    *tci |= htons(VLAN_CFI);
 1660|       |
 1661|  1.71k|    return 0;
 1662|  1.71k|}
ofp-actions.c:inconsistent_match:
 8812|  13.5k|{
 8813|  13.5k|    *usable_protocols &= OFPUTIL_P_OF10_ANY;
  ------------------
  |  |   60|  13.5k|#define OFPUTIL_P_OF10_ANY (OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY)
  |  |  ------------------
  |  |  |  |   58|  13.5k|#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|  13.5k|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  ------------------
 8814|  13.5k|}
ofp-actions.c:check_SET_VLAN_PCP:
 1757|  1.61k|{
 1758|       |    /* Remember if we saw a vlan tag in the flow to aid translating to OpenFlow
 1759|       |     * 1.1+ if need be. */
 1760|  1.61k|    ovs_be16 *tci = &cp->match->flow.vlans[0].tci;
 1761|  1.61k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 1762|  1.61k|    if (!a->flow_has_vlan && !a->push_vlan_if_needed) {
  ------------------
  |  Branch (1762:9): [True: 468, False: 1.15k]
  |  Branch (1762:30): [True: 205, False: 263]
  ------------------
 1763|    205|        inconsistent_match(&cp->usable_protocols);
 1764|    205|    }
 1765|       |
 1766|       |    /* Temporarily mark that we have a vlan tag. */
 1767|  1.61k|    *tci |= htons(VLAN_CFI);
 1768|       |
 1769|  1.61k|    return 0;
 1770|  1.61k|}
ofp-actions.c:check_STRIP_VLAN:
 1826|  2.27k|{
 1827|  2.27k|    if (!(cp->match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (1827:9): [True: 882, False: 1.39k]
  ------------------
 1828|    882|        inconsistent_match(&cp->usable_protocols);
 1829|    882|    }
 1830|       |    flow_pop_vlan(&cp->match->flow, NULL);
 1831|  2.27k|    return 0;
 1832|  2.27k|}
ofp-actions.c:check_PUSH_VLAN:
 1894|    984|{
 1895|    984|    struct flow *flow = &cp->match->flow;
 1896|    984|    if (flow->vlans[FLOW_MAX_VLAN_HEADERS - 1].tci & htons(VLAN_CFI)) {
  ------------------
  |  |   75|    984|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
  |  Branch (1896:9): [True: 2, False: 982]
  ------------------
 1897|       |        /* Support maximum (FLOW_MAX_VLAN_HEADERS) VLAN headers. */
 1898|      2|        return OFPERR_OFPBAC_BAD_TAG;
 1899|      2|    }
 1900|       |    /* Temporary mark that we have a vlan tag. */
 1901|    982|    flow_push_vlan_uninit(flow, NULL);
 1902|       |    flow->vlans[0].tci |= htons(VLAN_CFI);
 1903|    982|    return 0;
 1904|    984|}
ofp-actions.c:check_SET_ETH_SRC:
 1998|    449|{
 1999|    449|    return 0;
 2000|    449|}
ofp-actions.c:check_SET_ETH_DST:
 2005|    482|{
 2006|    482|    return 0;
 2007|    482|}
ofp-actions.c:check_SET_IPV4_SRC:
 2100|    843|{
 2101|    843|    return check_set_ipv4(cp);
 2102|    843|}
ofp-actions.c:check_set_ipv4:
 2089|  1.58k|{
 2090|  1.58k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 2091|  1.58k|    if (dl_type != htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (2091:9): [True: 820, False: 762]
  ------------------
 2092|    820|        inconsistent_match(&cp->usable_protocols);
 2093|    820|    }
 2094|  1.58k|    return 0;
 2095|  1.58k|}
ofp-actions.c:check_SET_IPV4_DST:
 2107|    739|{
 2108|    739|    return check_set_ipv4(cp);
 2109|    739|}
ofp-actions.c:check_SET_IP_DSCP:
 2176|  1.22k|{
 2177|  1.22k|    return check_set_ip(cp);
 2178|  1.22k|}
ofp-actions.c:check_set_ip:
 2166|  7.21k|{
 2167|  7.21k|    if (!is_ip_any(&cp->match->flow)) {
  ------------------
  |  Branch (2167:9): [True: 3.78k, False: 3.42k]
  ------------------
 2168|  3.78k|        inconsistent_match(&cp->usable_protocols);
 2169|  3.78k|    }
 2170|  7.21k|    return 0;
 2171|  7.21k|}
ofp-actions.c:check_SET_IP_ECN:
 2240|  1.43k|{
 2241|  1.43k|    return check_set_ip(cp);
 2242|  1.43k|}
ofp-actions.c:check_SET_IP_TTL:
 2295|  1.87k|{
 2296|  1.87k|    return check_set_ip(cp);
 2297|  1.87k|}
ofp-actions.c:check_SET_L4_SRC_PORT:
 2411|  2.10k|{
 2412|  2.10k|    return check_set_l4_port(a, cp);
 2413|  2.10k|}
ofp-actions.c:check_set_l4_port:
 2392|  4.18k|{
 2393|  4.18k|    const struct flow *flow = &cp->match->flow;
 2394|  4.18k|    if (!is_ip_any(flow)
  ------------------
  |  Branch (2394:9): [True: 1.38k, False: 2.80k]
  ------------------
 2395|  2.80k|        || flow->nw_frag & FLOW_NW_FRAG_LATER
  ------------------
  |  |   55|  6.99k|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (2395:12): [True: 391, False: 2.41k]
  ------------------
 2396|  2.41k|        || (flow->nw_proto != IPPROTO_TCP &&
  ------------------
  |  Branch (2396:13): [True: 1.62k, False: 785]
  ------------------
 2397|  1.62k|            flow->nw_proto != IPPROTO_UDP &&
  ------------------
  |  Branch (2397:13): [True: 1.14k, False: 481]
  ------------------
 2398|  2.28k|            flow->nw_proto != IPPROTO_SCTP)) {
  ------------------
  |  Branch (2398:13): [True: 511, False: 634]
  ------------------
 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|  4.18k|    a->flow_ip_proto = flow->nw_proto;
 2405|       |
 2406|  4.18k|    return 0;
 2407|  4.18k|}
ofp-actions.c:check_SET_L4_DST_PORT:
 2417|  2.08k|{
 2418|  2.08k|    return check_set_l4_port(a, cp);
 2419|  2.08k|}
ofp-actions.c:check_REG_MOVE:
 2722|    395|{
 2723|    395|    return nxm_reg_move_check(a, cp->match);
 2724|    395|}
ofp-actions.c:check_STACK_PUSH:
 3572|    492|{
 3573|    492|    return nxm_stack_push_check(a, cp->match);
 3574|    492|}
ofp-actions.c:check_STACK_POP:
 3579|  2.02k|{
 3580|  2.02k|    return nxm_stack_pop_check(a, cp->match);
 3581|  2.02k|}
ofp-actions.c:check_DEC_TTL:
 3755|  2.68k|{
 3756|  2.68k|    return check_set_ip(cp);
 3757|  2.68k|}
ofp-actions.c:check_SET_MPLS_LABEL:
 3828|  2.69k|{
 3829|  2.69k|    return check_set_mpls(cp);
 3830|  2.69k|}
ofp-actions.c:check_set_mpls:
 3817|  7.69k|{
 3818|  7.69k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 3819|  7.69k|    if (!eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (3819:9): [True: 3.56k, False: 4.13k]
  ------------------
 3820|  3.56k|        inconsistent_match(&cp->usable_protocols);
 3821|  3.56k|    }
 3822|  7.69k|    return 0;
 3823|  7.69k|}
ofp-actions.c:check_SET_MPLS_TC:
 3889|  1.28k|{
 3890|  1.28k|    return check_set_mpls(cp);
 3891|  1.28k|}
ofp-actions.c:check_SET_MPLS_TTL:
 3947|    848|{
 3948|    848|    return check_set_mpls(cp);
 3949|    848|}
ofp-actions.c:check_DEC_MPLS_TTL:
 3984|  2.86k|{
 3985|  2.86k|    return check_set_mpls(cp);
 3986|  2.86k|}
ofp-actions.c:check_PUSH_MPLS:
 4037|    618|{
 4038|    618|    struct flow *flow = &cp->match->flow;
 4039|       |
 4040|    618|    if (flow->packet_type != htonl(PT_ETH)) {
  ------------------
  |  Branch (4040:9): [True: 311, False: 307]
  ------------------
 4041|    311|        inconsistent_match(&cp->usable_protocols);
 4042|    311|    }
 4043|    618|    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|    618|    flow->nw_proto = 0;
 4049|       |
 4050|    618|    return 0;
 4051|    618|}
ofp-actions.c:check_POP_MPLS:
 4094|  2.11k|{
 4095|  2.11k|    struct flow *flow = &cp->match->flow;
 4096|  2.11k|    ovs_be16 dl_type = get_dl_type(flow);
 4097|       |
 4098|  2.11k|    if (flow->packet_type != htonl(PT_ETH) || !eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (4098:9): [True: 754, False: 1.36k]
  |  Branch (4098:47): [True: 301, False: 1.06k]
  ------------------
 4099|  1.05k|        inconsistent_match(&cp->usable_protocols);
 4100|  1.05k|    }
 4101|  2.11k|    flow->dl_type = a->ethertype;
 4102|  2.11k|    return 0;
 4103|  2.11k|}
ofp-actions.c:check_DEC_NSH_TTL:
 4829|    640|{
 4830|    640|    struct flow *flow = &cp->match->flow;
 4831|    640|    if (flow->packet_type != htonl(PT_NSH) &&
  ------------------
  |  Branch (4831:9): [True: 425, False: 215]
  ------------------
 4832|    425|        flow->dl_type != htons(ETH_TYPE_NSH)) {
  ------------------
  |  Branch (4832:9): [True: 231, False: 194]
  ------------------
 4833|    231|        inconsistent_match(&cp->usable_protocols);
 4834|    231|    }
 4835|    640|    return 0;
 4836|    640|}
ofp-actions.c:check_DELETE_FIELD:
 4256|    269|{
 4257|    269|    if (odf->field->id < MFF_TUN_METADATA0 ||
  ------------------
  |  Branch (4257:9): [True: 1, False: 268]
  ------------------
 4258|    268|        odf->field->id > MFF_TUN_METADATA63) {
  ------------------
  |  Branch (4258:9): [True: 8, False: 260]
  ------------------
 4259|      9|        return OFPERR_OFPBAC_BAD_ARGUMENT;
 4260|      9|    }
 4261|    260|    return 0;
 4262|    269|}
ofp-actions.c:check_ENCAP:
 4664|  1.53k|{
 4665|  1.53k|    struct flow *flow = &cp->match->flow;
 4666|  1.53k|    flow->packet_type = a->new_pkt_type;
 4667|  1.53k|    if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (4667:9): [True: 1.03k, False: 504]
  ------------------
 4668|  1.03k|        flow->dl_type = htons(pt_ns_type(flow->packet_type));
 4669|  1.03k|    }
 4670|  1.53k|    if (!is_ip_any(flow)) {
  ------------------
  |  Branch (4670:9): [True: 1.14k, False: 394]
  ------------------
 4671|  1.14k|        flow->nw_proto = 0;
 4672|  1.14k|    }
 4673|  1.53k|    return 0;
 4674|  1.53k|}
ofp-actions.c:check_DECAP:
 4781|  2.01k|{
 4782|  2.01k|    struct flow *flow = &cp->match->flow;
 4783|  2.01k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (4783:9): [True: 1.04k, False: 972]
  ------------------
 4784|       |        /* Adjust the packet_type to allow subsequent actions. */
 4785|  1.04k|        flow->packet_type = PACKET_TYPE_BE(OFPHTN_ETHERTYPE,
  ------------------
  |  | 1565|  1.04k|#define PACKET_TYPE_BE(NS, NS_TYPE) (htonl((NS) << 16 | (NS_TYPE)))
  ------------------
 4786|  1.04k|                                           ntohs(flow->dl_type));
 4787|  1.04k|    } else {
 4788|       |        /* The actual packet_type is only known after decapsulation.
 4789|       |         * Do not allow subsequent actions that depend on packet headers. */
 4790|    972|        flow->packet_type = htonl(PT_UNKNOWN);
 4791|    972|        flow->dl_type = OVS_BE16_MAX;
  ------------------
  |  |   42|    972|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 4792|    972|    }
 4793|  2.01k|    return 0;
 4794|  2.01k|}
ofp-actions.c:check_SET_TUNNEL:
 4177|  1.20k|{
 4178|  1.20k|    return 0;
 4179|  1.20k|}
ofp-actions.c:check_SET_QUEUE:
 4299|    201|{
 4300|    201|    return 0;
 4301|    201|}
ofp-actions.c:check_POP_QUEUE:
 4337|    663|{
 4338|    663|    return 0;
 4339|    663|}
ofp-actions.c:check_FIN_TIMEOUT:
 4444|  1.12k|{
 4445|  1.12k|    if (cp->match->flow.nw_proto != IPPROTO_TCP) {
  ------------------
  |  Branch (4445:9): [True: 234, False: 887]
  ------------------
 4446|    234|        inconsistent_match(&cp->usable_protocols);
 4447|    234|    }
 4448|  1.12k|    return 0;
 4449|  1.12k|}
ofp-actions.c:check_RESUBMIT:
 5051|  1.04k|{
 5052|  1.04k|    if (a->with_ct_orig && !is_ct_valid(&cp->match->flow, &cp->match->wc,
  ------------------
  |  Branch (5052:9): [True: 394, False: 647]
  |  Branch (5052:28): [True: 3, False: 391]
  ------------------
 5053|    394|                                        NULL)) {
 5054|      3|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 5055|      3|    }
 5056|  1.03k|    return 0;
 5057|  1.04k|}
ofp-actions.c:check_LEARN:
 5646|  32.7k|{
 5647|  32.7k|    return learn_check(a, cp->match);
 5648|  32.7k|}
ofp-actions.c:check_CONJUNCTION:
 5739|    214|{
 5740|    214|    return 0;
 5741|    214|}
ofp-actions.c:check_MULTIPATH:
 5873|    732|{
 5874|    732|    return multipath_check(a, cp->match);
 5875|    732|}
ofp-actions.c:check_NOTE:
 5959|  2.00k|{
 5960|  2.00k|    return 0;
 5961|  2.00k|}
ofp-actions.c:check_EXIT:
 5996|    924|{
 5997|    924|    return 0;
 5998|    924|}
ofp-actions.c:check_SAMPLE:
 6561|  1.65k|{
 6562|  1.65k|    return 0;
 6563|  1.65k|}
ofp-actions.c:check_CT:
 7068|  9.23k|{
 7069|  9.23k|    struct flow *flow = &cp->match->flow;
 7070|       |
 7071|  9.23k|    if (!dl_type_is_ip_any(get_dl_type(flow))
  ------------------
  |  Branch (7071:9): [True: 137, False: 9.09k]
  ------------------
 7072|  9.09k|        || (flow->ct_state & CS_INVALID && a->flags & NX_CT_F_COMMIT)
  ------------------
  |  Branch (7072:13): [True: 196, False: 8.89k]
  |  Branch (7072:44): [True: 1, False: 195]
  ------------------
 7073|  9.09k|        || (a->alg == IPPORT_FTP && flow->nw_proto != IPPROTO_TCP)
  ------------------
  |  |  695|  18.1k|#define IPPORT_FTP  21
  ------------------
  |  Branch (7073:13): [True: 203, False: 8.89k]
  |  Branch (7073:37): [True: 2, False: 201]
  ------------------
 7074|  9.09k|        || (a->alg == IPPORT_TFTP && flow->nw_proto != IPPROTO_UDP)) {
  ------------------
  |  |  699|  18.1k|#define IPPORT_TFTP  69
  ------------------
  |  Branch (7074:13): [True: 195, False: 8.89k]
  |  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|    141|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 7079|    141|    }
 7080|       |
 7081|  9.09k|    if (a->zone_src.field) {
  ------------------
  |  Branch (7081:9): [True: 359, False: 8.73k]
  ------------------
 7082|    359|        return mf_check_src(&a->zone_src, cp->match);
 7083|    359|    }
 7084|       |
 7085|  8.73k|    return check_subactions(a->actions, ofpact_ct_get_action_len(a), cp);
 7086|  9.09k|}
ofp-actions.c:check_subactions:
 6123|  15.0k|{
 6124|  15.0k|    struct ofpact_check_params sub = *cp;
 6125|  15.0k|    enum ofperr error = ofpacts_check(ofpacts, ofpacts_len, &sub);
 6126|  15.0k|    cp->usable_protocols &= sub.usable_protocols;
 6127|  15.0k|    return error;
 6128|  15.0k|}
ofp-actions.c:check_CT_CLEAR:
 7122|  2.07k|{
 7123|  2.07k|    return 0;
 7124|  2.07k|}
ofp-actions.c:check_NAT:
 7480|  5.07k|{
 7481|  5.07k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 7482|  5.07k|    if (!dl_type_is_ip_any(dl_type) ||
  ------------------
  |  Branch (7482:9): [True: 0, False: 5.07k]
  ------------------
 7483|  5.07k|        (a->range_af == AF_INET && dl_type != htons(ETH_TYPE_IP)) ||
  ------------------
  |  Branch (7483:10): [True: 675, False: 4.39k]
  |  Branch (7483:36): [True: 1, False: 674]
  ------------------
 7484|  5.07k|        (a->range_af == AF_INET6 && dl_type != htons(ETH_TYPE_IPV6))) {
  ------------------
  |  Branch (7484:10): [True: 2.85k, False: 2.22k]
  |  Branch (7484:37): [True: 4, False: 2.84k]
  ------------------
 7485|      5|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 7486|      5|    }
 7487|  5.06k|    return 0;
 7488|  5.07k|}
ofp-actions.c:check_OUTPUT_TRUNC:
 7550|    938|{
 7551|    938|    return ofpact_check_output_port(a->port, cp->max_ports);
 7552|    938|}
ofp-actions.c:check_CLONE:
 6132|  6.31k|{
 6133|  6.31k|    return check_subactions(a->actions, ofpact_nest_get_action_len(a), cp);
 6134|  6.31k|}
ofp-actions.c:check_CHECK_PKT_LARGER:
 7911|    407|{
 7912|    407|    return 0;
 7913|    407|}
ofp-actions.c:check_DEBUG_RECIRC:
 6611|    863|{
 6612|    863|    return 0;
 6613|    863|}
ofp-actions.c:check_DEBUG_SLOW:
 6651|  1.77k|{
 6652|  1.77k|    return 0;
 6653|  1.77k|}
ofp-actions.c:check_METER:
 7601|    143|{
 7602|    143|    uint32_t mid = a->meter_id;
 7603|    143|    return mid == 0 || mid > OFPM13_MAX ? OFPERR_OFPMMFC_INVALID_METER : 0;
  ------------------
  |  Branch (7603:12): [True: 1, False: 142]
  |  Branch (7603:24): [True: 15, False: 127]
  ------------------
 7604|    143|}
ofp-actions.c:check_CLEAR_ACTIONS:
 7635|      8|{
 7636|      8|    return 0;
 7637|      8|}
ofp-actions.c:check_WRITE_ACTIONS:
 7698|     58|{
 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|     58|    struct ofpact_check_params tmp = *cp;
 7702|     58|    return ofpacts_check(a->actions, ofpact_nest_get_action_len(a), &tmp);
 7703|     58|}
ofp-actions.c:check_WRITE_METADATA:
 7794|     11|{
 7795|     11|    return 0;
 7796|     11|}
ofp-actions.c:check_GOTO_TABLE:
 7958|     10|{
 7959|     10|    if ((cp->table_id != 255 && a->table_id <= cp->table_id)
  ------------------
  |  Branch (7959:10): [True: 7, False: 3]
  |  Branch (7959:33): [True: 2, False: 5]
  ------------------
 7960|      8|        || (cp->n_tables != 255 && a->table_id >= cp->n_tables)) {
  ------------------
  |  Branch (7960:13): [True: 0, False: 8]
  |  Branch (7960:36): [True: 0, False: 0]
  ------------------
 7961|      2|        return OFPERR_OFPBIC_BAD_TABLE_ID;
 7962|      2|    }
 7963|      8|    return 0;
 7964|     10|}
ofp-actions.c:ofpacts_verify:
 9006|  15.8k|{
 9007|  15.8k|    const struct ofpact *a;
 9008|  15.8k|    enum ovs_instruction_type inst;
 9009|       |
 9010|  15.8k|    inst = OVSINST_OFPIT13_METER;
 9011|   253k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   268k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 253k, False: 15.1k]
  |  |  ------------------
  |  |  262|   252k|         (POS) = ofpact_next(POS))
  ------------------
 9012|   253k|        enum ovs_instruction_type next;
 9013|   253k|        enum ofperr error;
 9014|       |
 9015|   253k|        if (a->type == OFPACT_CONJUNCTION) {
  ------------------
  |  Branch (9015:13): [True: 503, False: 253k]
  ------------------
 9016|    994|            OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|  1.49k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 994, False: 496]
  |  |  ------------------
  |  |  262|    987|         (POS) = ofpact_next(POS))
  ------------------
 9017|    994|                if (a->type != OFPACT_CONJUNCTION && a->type != OFPACT_NOTE) {
  ------------------
  |  Branch (9017:21): [True: 474, False: 520]
  |  Branch (9017:54): [True: 7, False: 467]
  ------------------
 9018|      7|                    verify_error(errorp, "\"conjunction\" actions may be used "
 9019|      7|                                 "along with \"note\" but not any other kind "
 9020|      7|                                 "of action (such as the \"%s\" action used "
 9021|      7|                                 "here)", ofpact_name(a->type));
 9022|      7|                    return OFPERR_NXBAC_BAD_CONJUNCTION;
 9023|      7|                }
 9024|    994|            }
 9025|    496|            return 0;
 9026|    503|        }
 9027|       |
 9028|   253k|        error = ofpacts_verify_nested(a, outer_action, errorp);
 9029|   253k|        if (error) {
  ------------------
  |  Branch (9029:13): [True: 148, False: 253k]
  ------------------
 9030|    148|            return error;
 9031|    148|        }
 9032|       |
 9033|   253k|        next = ovs_instruction_type_from_ofpact_type(a->type, version);
 9034|   253k|        if (a > ofpacts
  ------------------
  |  Branch (9034:13): [True: 240k, False: 12.7k]
  ------------------
 9035|   240k|            && (inst == OVSINST_OFPIT11_APPLY_ACTIONS
  ------------------
  |  Branch (9035:16): [True: 28, False: 240k]
  |  Branch (9035:17): [True: 240k, False: 125]
  ------------------
 9036|   240k|                ? next < inst
 9037|   240k|                : next <= inst)) {
 9038|     28|            const char *name = ovs_instruction_name_from_type(inst);
 9039|     28|            const char *next_name = ovs_instruction_name_from_type(next);
 9040|       |
 9041|     28|            if (next == inst) {
  ------------------
  |  Branch (9041:17): [True: 23, False: 5]
  ------------------
 9042|     23|                verify_error(errorp, "duplicate %s instruction not allowed, "
 9043|     23|                             "for OpenFlow 1.1+ compatibility", name);
 9044|     23|            } 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|     28|            return OFPERR_OFPBAC_UNSUPPORTED_ORDER;
 9051|     28|        }
 9052|   252k|        if (!((1u << next) & allowed_ovsinsts)) {
  ------------------
  |  Branch (9052:13): [True: 6, False: 252k]
  ------------------
 9053|      6|            const char *name = ovs_instruction_name_from_type(next);
 9054|       |
 9055|      6|            if (next == OVSINST_OFPIT13_METER && version >= OFP15_VERSION) {
  ------------------
  |  Branch (9055:17): [True: 0, False: 6]
  |  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|      6|            } else {
 9059|      6|                verify_error(errorp, "%s instruction not allowed here", name);
 9060|      6|                return OFPERR_OFPBIC_UNSUP_INST;
 9061|      6|            }
 9062|      6|        }
 9063|       |
 9064|   252k|        inst = next;
 9065|   252k|    }
 9066|       |
 9067|  15.1k|    return 0;
 9068|  15.8k|}
ofp-actions.c:verify_error:
 8916|    189|{
 8917|    189|    va_list args;
 8918|    189|    va_start(args, format);
 8919|    189|    char *error = xvasprintf(format, args);
 8920|    189|    va_end(args);
 8921|       |
 8922|    189|    if (errorp) {
  ------------------
  |  Branch (8922:9): [True: 189, False: 0]
  ------------------
 8923|    189|        *errorp = error;
 8924|    189|    } 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|    189|}
ofp-actions.c:ofpacts_verify_nested:
 8949|   253k|{
 8950|   253k|    const struct mf_field *field = ofpact_get_mf_dst(a);
 8951|       |
 8952|   253k|    if (field && field_requires_ct(field->id) && outer_action != OFPACT_CT) {
  ------------------
  |  Branch (8952:9): [True: 28.5k, False: 224k]
  |  Branch (8952:18): [True: 579, False: 27.9k]
  |  Branch (8952:50): [True: 14, False: 565]
  ------------------
 8953|     14|        verify_error(errorp, "cannot set CT fields outside of ct action");
 8954|     14|        return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 8955|     14|    }
 8956|   253k|    if (a->type == OFPACT_NAT) {
  ------------------
  |  Branch (8956:9): [True: 10.0k, False: 243k]
  ------------------
 8957|  10.0k|        if (outer_action != OFPACT_CT) {
  ------------------
  |  Branch (8957:13): [True: 117, False: 9.90k]
  ------------------
 8958|    117|            verify_error(errorp,
 8959|    117|                         "Cannot have NAT action outside of \"ct\" action");
 8960|    117|            return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 8961|    117|        }
 8962|  9.90k|        return 0;
 8963|  10.0k|    }
 8964|       |
 8965|   243k|    if (outer_action) {
  ------------------
  |  Branch (8965:9): [True: 35.0k, False: 208k]
  ------------------
 8966|  35.0k|        ovs_assert(outer_action == OFPACT_WRITE_ACTIONS
  ------------------
  |  |   62|  35.0k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (8966:20): [True: 6.75k, False: 28.3k]
  ------------------
 8967|  28.3k|                   || outer_action == OFPACT_CT
  ------------------
  |  Branch (8967:23): [True: 581, False: 27.7k]
  ------------------
 8968|  27.7k|                   || outer_action == OFPACT_CLONE);
  ------------------
  |  Branch (8968:23): [True: 27.7k, False: 0]
  ------------------
 8969|       |
 8970|  35.0k|        if (outer_action == OFPACT_CT) {
  ------------------
  |  Branch (8970:13): [True: 581, False: 34.4k]
  ------------------
 8971|    581|            if (!field) {
  ------------------
  |  Branch (8971:17): [True: 12, False: 569]
  ------------------
 8972|     12|                return unsupported_nesting(a->type, outer_action, errorp);
 8973|    569|            } else if (!field_requires_ct(field->id)) {
  ------------------
  |  Branch (8973:24): [True: 4, False: 565]
  ------------------
 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|    581|        }
 8980|       |
 8981|  35.0k|        if (a->type == OFPACT_METER) {
  ------------------
  |  Branch (8981:13): [True: 1, False: 35.0k]
  ------------------
 8982|      1|            return unsupported_nesting(a->type, outer_action, errorp);
 8983|      1|        }
 8984|  35.0k|    }
 8985|       |
 8986|   243k|    return 0;
 8987|   243k|}
ofp-actions.c:field_requires_ct:
 8941|  29.0k|{
 8942|  29.0k|    return field == MFF_CT_MARK || field == MFF_CT_LABEL;
  ------------------
  |  Branch (8942:12): [True: 733, False: 28.3k]
  |  Branch (8942:36): [True: 411, False: 27.9k]
  ------------------
 8943|  29.0k|}
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|   239k|{
 9076|   239k|    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.8k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9078|  97.8k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 97.8k, False: 142k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  97.8k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  97.8k|            return;
  |  |  ------------------
  |  |   65|  97.8k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9078|    221|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 221, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    221|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    221|            return;
  |  |  ------------------
  |  |   66|  7.26k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9078|  7.26k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7.26k, False: 232k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  7.26k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  7.26k|            return;
  |  |  ------------------
  |  |   67|  7.26k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9078|    860|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 860, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    860|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    860|            return;
  |  |  ------------------
  |  |   68|    860|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9078|    375|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 375, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    375|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    375|            return;
  |  |  ------------------
  |  |   69|  1.52k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9078|  1.52k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.52k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.52k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.52k|            return;
  |  |  ------------------
  |  |   70|  1.52k|                                                                        \
  |  |   71|  1.52k|    /* Header changes. */                                               \
  |  |   72|  26.3k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9078|  26.3k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 26.3k, False: 213k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  26.3k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  26.3k|            return;
  |  |  ------------------
  |  |   73|  26.3k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9078|  1.56k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.56k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.56k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.56k|            return;
  |  |  ------------------
  |  |   74|  1.58k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9078|  1.58k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.58k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.58k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.58k|            return;
  |  |  ------------------
  |  |   75|  1.89k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9078|  1.89k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.89k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.89k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.89k|            return;
  |  |  ------------------
  |  |   76|  1.89k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9078|    822|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 822, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    822|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    822|            return;
  |  |  ------------------
  |  |   77|    822|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9078|    449|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 449, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    449|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    449|            return;
  |  |  ------------------
  |  |   78|    482|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9078|    482|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 482, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    482|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    482|            return;
  |  |  ------------------
  |  |   79|    839|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9078|    839|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 839, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    839|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    839|            return;
  |  |  ------------------
  |  |   80|    839|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9078|    737|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 737, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    737|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    737|            return;
  |  |  ------------------
  |  |   81|  1.22k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9078|  1.22k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.22k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.22k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.22k|            return;
  |  |  ------------------
  |  |   82|  1.29k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9078|  1.29k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.29k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.29k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.29k|            return;
  |  |  ------------------
  |  |   83|  1.87k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9078|  1.87k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.87k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.87k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.87k|            return;
  |  |  ------------------
  |  |   84|  2.08k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9078|  2.08k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.08k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.08k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.08k|            return;
  |  |  ------------------
  |  |   85|  2.08k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9078|  2.08k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.08k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.08k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.08k|            return;
  |  |  ------------------
  |  |   86|  2.08k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9078|    395|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 395, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    395|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    395|            return;
  |  |  ------------------
  |  |   87|    470|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9078|    470|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 470, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    470|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    470|            return;
  |  |  ------------------
  |  |   88|  1.84k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9078|  1.84k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.84k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.84k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.84k|            return;
  |  |  ------------------
  |  |   89|  2.66k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9078|  2.66k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.66k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.66k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.66k|            return;
  |  |  ------------------
  |  |   90|  2.69k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9078|  2.69k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.69k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.69k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.69k|            return;
  |  |  ------------------
  |  |   91|  2.69k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9078|  1.15k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.15k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.15k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.15k|            return;
  |  |  ------------------
  |  |   92|  1.15k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9078|    844|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 844, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    844|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    844|            return;
  |  |  ------------------
  |  |   93|  2.83k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9078|  2.83k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.83k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.83k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.83k|            return;
  |  |  ------------------
  |  |   94|  2.83k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9078|    529|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 529, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    529|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    529|            return;
  |  |  ------------------
  |  |   95|  2.10k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9078|  2.10k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.10k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.10k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.10k|            return;
  |  |  ------------------
  |  |   96|  2.10k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9078|    509|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 509, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    509|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    509|            return;
  |  |  ------------------
  |  |   97|    509|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9078|    260|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 260, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    260|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    260|            return;
  |  |  ------------------
  |  |   98|    260|                                                                        \
  |  |   99|    260|    /* Generic encap & decap */                                         \
  |  |  100|  1.50k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9078|  1.50k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.50k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.50k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.50k|            return;
  |  |  ------------------
  |  |  101|  1.95k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9078|  1.95k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.95k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.95k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.95k|            return;
  |  |  ------------------
  |  |  102|  1.95k|                                                                        \
  |  |  103|  1.95k|    /* Metadata. */                                                     \
  |  |  104|  1.95k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9078|  1.20k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.20k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.20k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.20k|            return;
  |  |  ------------------
  |  |  105|  1.20k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9078|    201|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 201, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    201|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    201|            return;
  |  |  ------------------
  |  |  106|    663|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9078|    663|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 663, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    663|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    663|            return;
  |  |  ------------------
  |  |  107|  1.12k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9078|  1.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.12k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.12k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.12k|            return;
  |  |  ------------------
  |  |  108|  1.12k|                                                                        \
  |  |  109|  1.12k|    /* Flow table interaction. */                                       \
  |  |  110|  1.12k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9078|  1.03k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.03k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.03k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.03k|            return;
  |  |  ------------------
  |  |  111|  32.5k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9078|  32.5k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 32.5k, False: 207k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  32.5k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  32.5k|            return;
  |  |  ------------------
  |  |  112|  32.5k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9078|    214|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 214, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    214|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    214|            return;
  |  |  ------------------
  |  |  113|    214|                                                                        \
  |  |  114|    214|    /* Arithmetic. */                                                   \
  |  |  115|    724|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9078|    724|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 724, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    724|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    724|            return;
  |  |  ------------------
  |  |  116|    724|                                                                        \
  |  |  117|    724|    /* Other. */                                                        \
  |  |  118|  2.00k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9078|  2.00k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.00k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.00k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.00k|            return;
  |  |  ------------------
  |  |  119|  2.00k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9078|    917|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 917, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    917|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    917|            return;
  |  |  ------------------
  |  |  120|  1.65k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9078|  1.65k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.65k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.65k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.65k|            return;
  |  |  ------------------
  |  |  121|  1.65k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9078|      0|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 0, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      0|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      0|            return;
  |  |  ------------------
  |  |  122|  9.08k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9078|  9.08k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 9.08k, False: 230k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  9.08k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  9.08k|            return;
  |  |  ------------------
  |  |  123|  9.08k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9078|  2.03k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.03k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.03k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.03k|            return;
  |  |  ------------------
  |  |  124|  5.06k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9078|  5.06k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 5.06k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  5.06k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  5.06k|            return;
  |  |  ------------------
  |  |  125|  5.06k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9078|    938|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 938, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    938|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    938|            return;
  |  |  ------------------
  |  |  126|  6.19k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9078|  6.19k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 6.19k, False: 233k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  6.19k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  6.19k|            return;
  |  |  ------------------
  |  |  127|  6.19k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9078|    407|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 407, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    407|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    407|            return;
  |  |  ------------------
  |  |  128|    407|           "check_pkt_larger")                                          \
  |  |  129|    407|                                                                        \
  |  |  130|    407|    /* Debugging actions.                                               \
  |  |  131|    407|     *                                                                  \
  |  |  132|    407|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    407|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|    834|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9078|    834|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 834, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    834|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    834|            return;
  |  |  ------------------
  |  |  135|  1.77k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9078|  1.77k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.77k, False: 238k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.77k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.77k|            return;
  |  |  ------------------
  |  |  136|  1.77k|                                                                        \
  |  |  137|  1.77k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  1.77k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9078|    126|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 126, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    126|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    126|            return;
  |  |  ------------------
  |  |  139|    126|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9078|      8|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 8, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      8|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      8|            return;
  |  |  ------------------
  |  |  140|     58|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9078|     58|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 58, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|     58|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|     58|            return;
  |  |  ------------------
  |  |  141|     58|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9078|     11|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 11, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|     11|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|     11|            return;
  |  |  ------------------
  |  |  142|     11|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9078|      8|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 8, False: 239k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      8|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      8|            return;
  |  |  ------------------
  ------------------
 9082|      0|#undef OFPACT
 9083|      0|    default:
  ------------------
  |  Branch (9083:5): [True: 0, False: 239k]
  ------------------
 9084|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9085|   239k|    }
 9086|   239k|}
ofp-actions.c:encode_OUTPUT:
  610|  97.8k|{
  611|  97.8k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (611:9): [True: 68.8k, False: 28.9k]
  ------------------
  612|  68.8k|        struct ofp10_action_output *oao;
  613|       |
  614|  68.8k|        oao = put_OFPAT10_OUTPUT(out);
  615|  68.8k|        oao->port = htons(ofp_to_u16(output->port));
  616|  68.8k|        oao->max_len = htons(output->max_len);
  617|  68.8k|    } else {
  618|  28.9k|        struct ofp11_action_output *oao;
  619|       |
  620|  28.9k|        oao = put_OFPAT11_OUTPUT(out);
  621|  28.9k|        oao->port = ofputil_port_to_ofp11(output->port);
  622|       |        oao->max_len = htons(output->max_len);
  623|  28.9k|    }
  624|  97.8k|}
ofp-actions.c:ofpact_put_raw:
 9974|   345k|{
 9975|   345k|    const struct ofpact_raw_instance *inst;
 9976|   345k|    struct ofp_action_header *oah;
 9977|   345k|    const struct ofpact_hdrs *hdrs;
 9978|       |
 9979|   345k|    inst = ofpact_raw_lookup(ofp_version, raw);
 9980|   345k|    hdrs = &inst->hdrs;
 9981|       |
 9982|   345k|    oah = ofpbuf_put_zeros(buf, inst->min_length);
 9983|   345k|    oah->type = htons(hdrs->vendor ? OFPAT_VENDOR : hdrs->type);
  ------------------
  |  Branch (9983:17): [True: 222k, False: 123k]
  ------------------
 9984|   345k|    oah->len = htons(inst->min_length);
 9985|   345k|    oah->vendor = htonl(hdrs->vendor);
 9986|       |
 9987|   345k|    switch (hdrs->vendor) {
 9988|   123k|    case 0:
  ------------------
  |  Branch (9988:5): [True: 123k, False: 222k]
  ------------------
 9989|   123k|        break;
 9990|       |
 9991|   222k|    case NX_VENDOR_ID:
  ------------------
  |  |  110|   222k|#define NX_VENDOR_ID    0x00002320 /* Nicira. */
  ------------------
  |  Branch (9991:5): [True: 222k, False: 123k]
  ------------------
 9992|   222k|    case ONF_VENDOR_ID: {
  ------------------
  |  |  111|   222k|#define ONF_VENDOR_ID   0x4f4e4600 /* Open Networking Foundation. */
  ------------------
  |  Branch (9992:5): [True: 0, False: 345k]
  ------------------
 9993|   222k|        struct ext_action_header *nah = (struct ext_action_header *) oah;
 9994|   222k|        nah->subtype = htons(hdrs->type);
 9995|   222k|        break;
 9996|   222k|    }
 9997|       |
 9998|      0|    default:
  ------------------
  |  Branch (9998:5): [True: 0, False: 345k]
  ------------------
 9999|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
10000|   345k|    }
10001|       |
10002|   345k|    if (inst->arg_len) {
  ------------------
  |  Branch (10002:9): [True: 21.6k, False: 323k]
  ------------------
10003|  21.6k|        uint8_t *p = (uint8_t *) oah + inst->arg_ofs + inst->arg_len;
10004|  21.6k|        int i;
10005|       |
10006|  71.2k|        for (i = 0; i < inst->arg_len; i++) {
  ------------------
  |  Branch (10006:21): [True: 49.5k, False: 21.6k]
  ------------------
10007|  49.5k|            *--p = arg;
10008|  49.5k|            arg >>= 8;
10009|  49.5k|        }
10010|   323k|    } else {
10011|   323k|        ovs_assert(!arg);
  ------------------
  |  |   62|   323k|#define ovs_assert ovs_ignore
  ------------------
10012|   323k|    }
10013|       |
10014|   345k|    return oah;
10015|   345k|}
ofp-actions.c:ofpact_raw_lookup:
 9959|   345k|{
 9960|   345k|    const struct ofpact_raw_instance *inst;
 9961|       |
 9962|   345k|    HMAP_FOR_EACH_WITH_HASH (inst, encode_node, hash_2words(raw, ofp_version),
  ------------------
  |  |  138|   345k|    for (INIT_MULTIVAR(NODE, MEMBER, hmap_first_with_hash(HMAP, HASH),        \
  |  |  ------------------
  |  |  |  |  171|   345k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   345k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|   345k|                       struct hmap_node);                                     \
  |  |  140|   345k|         CONDITION_MULTIVAR(NODE, MEMBER, ITER_VAR(NODE) != NULL);            \
  |  |  ------------------
  |  |  |  |  185|   345k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 345k, False: 0]
  |  |  |  |  |  Branch (185:6): [True: 345k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  186|   345k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|   345k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|   345k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|   345k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   345k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |  141|   345k|         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|   345k|                             ofpact_encode_hmap()) {
 9964|   345k|        if (inst->raw == raw && inst->hdrs.ofp_version == ofp_version) {
  ------------------
  |  Branch (9964:13): [True: 345k, False: 0]
  |  Branch (9964:33): [True: 345k, False: 0]
  ------------------
 9965|   345k|            return inst;
 9966|   345k|        }
 9967|   345k|    }
 9968|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9969|   345k|}
ofp-actions.c:ofpact_encode_hmap:
 9827|   345k|{
 9828|   345k|    static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
  ------------------
  |  |  134|   345k|    {                                           \
  |  |  135|   345k|        false,                                  \
  |  |  136|   345k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  ------------------
  |  |  |  |   45|   345k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|   345k|                                "<unlocked>" }
  |  |  ------------------
  |  |  137|   345k|    }
  ------------------
 9829|   345k|    static struct hmap hmap;
 9830|       |
 9831|   345k|    if (ovsthread_once_start(&once)) {
  ------------------
  |  Branch (9831:9): [True: 1, False: 345k]
  ------------------
 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|   345k|    return &hmap;
 9844|   345k|}
ofp-actions.c:encode_GROUP:
  735|    221|{
  736|    221|    put_OFPAT_GROUP(out, ofp_version, group->group_id);
  737|    221|}
ofp-actions.c:encode_CONTROLLER:
  898|  7.26k|{
  899|  7.26k|    if (controller->userdata_len
  ------------------
  |  Branch (899:9): [True: 962, False: 6.29k]
  ------------------
  900|  6.29k|        || controller->pause
  ------------------
  |  Branch (900:12): [True: 5.38k, False: 911]
  ------------------
  901|    911|        || controller->meter_id != NX_CTLR_NO_METER
  ------------------
  |  |  307|  8.17k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (901:12): [True: 614, False: 297]
  ------------------
  902|  6.96k|        || controller->ofpact.raw == NXAST_RAW_CONTROLLER2) {
  ------------------
  |  Branch (902:12): [True: 0, False: 297]
  ------------------
  903|  6.96k|        size_t start_ofs = out->size;
  904|  6.96k|        put_NXAST_CONTROLLER2(out);
  905|  6.96k|        if (controller->max_len != UINT16_MAX) {
  ------------------
  |  Branch (905:13): [True: 109, False: 6.85k]
  ------------------
  906|    109|            ofpprop_put_u16(out, NXAC2PT_MAX_LEN, controller->max_len);
  907|    109|        }
  908|  6.96k|        if (controller->controller_id != 0) {
  ------------------
  |  Branch (908:13): [True: 193, False: 6.77k]
  ------------------
  909|    193|            ofpprop_put_u16(out, NXAC2PT_CONTROLLER_ID,
  910|    193|                            controller->controller_id);
  911|    193|        }
  912|  6.96k|        if (controller->reason != OFPR_ACTION) {
  ------------------
  |  Branch (912:13): [True: 216, False: 6.74k]
  ------------------
  913|    216|            ofpprop_put_u8(out, NXAC2PT_REASON, controller->reason);
  914|    216|        }
  915|  6.96k|        if (controller->userdata_len != 0) {
  ------------------
  |  Branch (915:13): [True: 962, False: 6.00k]
  ------------------
  916|    962|            ofpprop_put(out, NXAC2PT_USERDATA, controller->userdata,
  917|    962|                        controller->userdata_len);
  918|    962|        }
  919|  6.96k|        if (controller->pause) {
  ------------------
  |  Branch (919:13): [True: 5.38k, False: 1.57k]
  ------------------
  920|  5.38k|            ofpprop_put_flag(out, NXAC2PT_PAUSE);
  921|  5.38k|        }
  922|  6.96k|        if (controller->meter_id != NX_CTLR_NO_METER) {
  ------------------
  |  |  307|  6.96k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (922:13): [True: 614, False: 6.35k]
  ------------------
  923|    614|            ofpprop_put_u32(out, NXAC2PT_METER_ID, controller->meter_id);
  924|    614|        }
  925|  6.96k|        pad_ofpat(out, start_ofs);
  926|  6.96k|    } else {
  927|    297|        struct nx_action_controller *nac;
  928|       |
  929|    297|        nac = put_NXAST_CONTROLLER(out);
  930|    297|        nac->max_len = htons(controller->max_len);
  931|       |        nac->controller_id = htons(controller->controller_id);
  932|    297|        nac->reason = controller->reason;
  933|    297|    }
  934|  7.26k|}
ofp-actions.c:pad_ofpat:
10019|  63.7k|{
10020|  63.7k|    struct ofp_action_header *oah;
10021|       |
10022|  63.7k|    ofpbuf_put_zeros(openflow, PAD_SIZE(openflow->size - start_ofs,
  ------------------
  |  |  306|  63.7k|#define PAD_SIZE(X, Y) (ROUND_UP(X, Y) - (X))
  |  |  ------------------
  |  |  |  |  303|  63.7k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  63.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10023|  63.7k|                                        OFP_ACTION_ALIGN));
10024|       |
10025|  63.7k|    oah = ofpbuf_at_assert(openflow, start_ofs, sizeof *oah);
10026|       |    oah->len = htons(openflow->size - start_ofs);
10027|  63.7k|}
ofp-actions.c:encode_ENQUEUE:
 1111|    860|{
 1112|    860|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1112:9): [True: 253, False: 607]
  ------------------
 1113|    253|        struct ofp10_action_enqueue *oae;
 1114|       |
 1115|    253|        oae = put_OFPAT10_ENQUEUE(out);
 1116|    253|        oae->port = htons(ofp_to_u16(enqueue->port));
 1117|    253|        oae->queue_id = htonl(enqueue->queue);
 1118|    607|    } else {
 1119|    607|        put_OFPAT_SET_QUEUE(out, ofp_version, enqueue->queue);
 1120|       |
 1121|    607|        struct ofp11_action_output *oao = put_OFPAT11_OUTPUT(out);
 1122|    607|        oao->port = ofputil_port_to_ofp11(enqueue->port);
 1123|    607|        oao->max_len = OVS_BE16_MAX;
  ------------------
  |  |   42|    607|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 1124|       |
 1125|    607|        put_NXAST_POP_QUEUE(out);
 1126|    607|    }
 1127|    860|}
ofp-actions.c:encode_OUTPUT_REG:
 1283|    375|{
 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|    375|    if (output_reg->ofpact.raw == NXAST_RAW_OUTPUT_REG2
  ------------------
  |  Branch (1287:9): [True: 0, False: 375]
  ------------------
 1288|    375|        || !mf_nxm_header(output_reg->src.field->id)) {
  ------------------
  |  Branch (1288:12): [True: 141, False: 234]
  ------------------
 1289|    141|        struct nx_action_output_reg2 *naor = put_NXAST_OUTPUT_REG2(out);
 1290|    141|        size_t size = out->size;
 1291|       |
 1292|    141|        naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
 1293|    141|                                               output_reg->src.n_bits);
 1294|    141|        naor->max_len = htons(output_reg->max_len);
 1295|       |
 1296|    141|        out->size = size - sizeof naor->pad;
 1297|    141|        nx_put_mff_header(out, output_reg->src.field, 0, false);
 1298|    141|        out->size = size;
 1299|    234|    } else {
 1300|    234|        struct nx_action_output_reg *naor = put_NXAST_OUTPUT_REG(out);
 1301|       |
 1302|    234|        naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
 1303|    234|                                               output_reg->src.n_bits);
 1304|    234|        naor->src = htonl(nxm_header_from_mff(output_reg->src.field));
 1305|       |        naor->max_len = htons(output_reg->max_len);
 1306|    234|    }
 1307|    375|}
ofp-actions.c:encode_BUNDLE:
 1503|  1.52k|{
 1504|  1.52k|    int members_len = ROUND_UP(2 * bundle->n_members, OFP_ACTION_ALIGN);
  ------------------
  |  |  303|  1.52k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  1.52k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 1505|  1.52k|    struct nx_action_bundle *nab;
 1506|  1.52k|    ovs_be16 *members;
 1507|  1.52k|    size_t i;
 1508|       |
 1509|  1.52k|    nab = (bundle->dst.field
  ------------------
  |  Branch (1509:12): [True: 5, False: 1.52k]
  ------------------
 1510|  1.52k|           ? put_NXAST_BUNDLE_LOAD(out)
 1511|  1.52k|           : put_NXAST_BUNDLE(out));
 1512|  1.52k|    nab->len = htons(ntohs(nab->len) + members_len);
 1513|  1.52k|    nab->algorithm = htons(bundle->algorithm);
 1514|  1.52k|    nab->fields = htons(bundle->fields);
 1515|  1.52k|    nab->basis = htons(bundle->basis);
 1516|  1.52k|    nab->member_type = htonl(mf_nxm_header(MFF_IN_PORT));
 1517|  1.52k|    nab->n_members = htons(bundle->n_members);
 1518|  1.52k|    if (bundle->dst.field) {
  ------------------
  |  Branch (1518:9): [True: 5, False: 1.52k]
  ------------------
 1519|      5|        nab->ofs_nbits = nxm_encode_ofs_nbits(bundle->dst.ofs,
 1520|      5|                                              bundle->dst.n_bits);
 1521|      5|        nab->dst = htonl(nxm_header_from_mff(bundle->dst.field));
 1522|      5|    }
 1523|       |
 1524|  1.52k|    members = ofpbuf_put_zeros(out, members_len);
 1525|  51.5k|    for (i = 0; i < bundle->n_members; i++) {
  ------------------
  |  Branch (1525:17): [True: 50.0k, False: 1.52k]
  ------------------
 1526|       |        members[i] = htons(ofp_to_u16(bundle->members[i]));
 1527|  50.0k|    }
 1528|  1.52k|}
ofp-actions.c:encode_SET_FIELD:
 3158|  26.3k|{
 3159|  26.3k|    if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (3159:9): [True: 0, False: 26.3k]
  ------------------
 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|  26.3k|    } else if (sf->ofpact.raw == NXAST_RAW_REG_LOAD ||
  ------------------
  |  Branch (3163:16): [True: 358, False: 25.9k]
  ------------------
 3164|  25.9k|               sf->ofpact.raw == NXAST_RAW_REG_LOAD2) {
  ------------------
  |  Branch (3164:16): [True: 0, False: 25.9k]
  ------------------
 3165|       |        /* It came in as reg_load, send it out the same way. */
 3166|    358|        set_field_to_nxast(sf, out);
 3167|  25.9k|    } else if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3167:16): [True: 22.1k, False: 3.85k]
  ------------------
 3168|       |        /* OpenFlow 1.0 and 1.1 don't have Set-Field. */
 3169|  22.1k|        set_field_to_legacy_openflow(sf, ofp_version, out);
 3170|  22.1k|    } else if (is_all_ones(ofpact_set_field_mask(sf), sf->field->n_bytes)) {
  ------------------
  |  |  563|  3.85k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  3.85k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  3.85k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  3.85k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
  |  Branch (3170:16): [True: 858, False: 2.99k]
  ------------------
 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|    858|        set_field_to_set_field(sf, ofp_version, out);
 3174|  2.99k|    } else {
 3175|       |        /* We're encoding to OpenFlow 1.2, 1.3, or 1.4.  The action cannot be
 3176|       |         * encoded as OFPAT_SET_FIELD because it does not set an entire field,
 3177|       |         * so encode it as reg_load. */
 3178|  2.99k|        set_field_to_nxast(sf, out);
 3179|  2.99k|    }
 3180|  26.3k|}
ofp-actions.c:set_field_to_set_field:
 3144|    858|{
 3145|    858|    struct ofp12_action_set_field *oasf OVS_UNUSED;
 3146|    858|    size_t start_ofs = out->size;
 3147|       |
 3148|    858|    oasf = put_OFPAT12_SET_FIELD(out);
 3149|    858|    out->size = out->size - sizeof oasf->pad;
 3150|    858|    nx_put_entry(out, sf->field, ofp_version, sf->value,
 3151|    858|                 ofpact_set_field_mask(sf));
  ------------------
  |  |  563|    858|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|    858|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|    858|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|    858|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3152|    858|    pad_ofpat(out, start_ofs);
 3153|    858|}
ofp-actions.c:set_field_to_nxast:
 2990|  20.6k|{
 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|  20.6k|    if (sf->ofpact.raw == NXAST_RAW_REG_LOAD2
  ------------------
  |  Branch (2995:9): [True: 0, False: 20.6k]
  ------------------
 2996|  20.6k|        || !mf_nxm_header(sf->field->id) || sf->field->variable_len) {
  ------------------
  |  Branch (2996:12): [True: 3.62k, False: 17.0k]
  |  Branch (2996:45): [True: 5.52k, False: 11.4k]
  ------------------
 2997|  9.15k|        struct ext_action_header *eah OVS_UNUSED;
 2998|  9.15k|        size_t start_ofs = openflow->size;
 2999|       |
 3000|  9.15k|        eah = put_NXAST_REG_LOAD2(openflow);
 3001|  9.15k|        openflow->size = openflow->size - sizeof eah->pad;
 3002|  9.15k|        nx_put_entry(openflow, sf->field, 0, sf->value,
 3003|  9.15k|                     ofpact_set_field_mask(sf));
  ------------------
  |  |  563|  9.15k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  9.15k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  9.15k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  9.15k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3004|  9.15k|        pad_ofpat(openflow, start_ofs);
 3005|  11.4k|    } else {
 3006|  11.4k|        struct mf_subfield dst;
 3007|  11.4k|        uint64_t value;
 3008|       |
 3009|  11.4k|        dst.ofs = dst.n_bits = 0;
 3010|   126k|        while (next_load_segment(sf, &dst, &value)) {
  ------------------
  |  Branch (3010:16): [True: 114k, False: 11.4k]
  ------------------
 3011|   114k|            put_reg_load(openflow, &dst, value);
 3012|   114k|        }
 3013|  11.4k|    }
 3014|  20.6k|}
ofp-actions.c:next_load_segment:
 2967|   126k|{
 2968|   126k|    int n_bits = sf->field->n_bits;
 2969|   126k|    int n_bytes = sf->field->n_bytes;
 2970|   126k|    int start = dst->ofs + dst->n_bits;
 2971|       |
 2972|   126k|    if (start < n_bits) {
  ------------------
  |  Branch (2972:9): [True: 121k, False: 4.68k]
  ------------------
 2973|   121k|        dst->field = sf->field;
 2974|   121k|        dst->ofs = bitwise_scan(ofpact_set_field_mask(sf), n_bytes, 1, start,
  ------------------
  |  |  563|   121k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|   121k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|   121k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|   121k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 2975|   121k|                                n_bits);
 2976|   121k|        if (dst->ofs < n_bits) {
  ------------------
  |  Branch (2976:13): [True: 114k, False: 6.79k]
  ------------------
 2977|   114k|            dst->n_bits = bitwise_scan(ofpact_set_field_mask(sf), n_bytes, 0,
  ------------------
  |  |  563|   114k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|   114k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|   114k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|   114k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 2978|   114k|                                       dst->ofs + 1,
 2979|   114k|                                       MIN(dst->ofs + 64, n_bits)) - dst->ofs;
  ------------------
  |  |   91|   114k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 80.3k, False: 34.3k]
  |  |  ------------------
  ------------------
 2980|   114k|            *value = bitwise_get(sf->value, n_bytes, dst->ofs, dst->n_bits);
 2981|   114k|            return true;
 2982|   114k|        }
 2983|   121k|    }
 2984|  11.4k|    return false;
 2985|   126k|}
ofp-actions.c:put_reg_load:
 2955|   116k|{
 2956|   116k|    ovs_assert(dst->n_bits <= 64);
  ------------------
  |  |   62|   116k|#define ovs_assert ovs_ignore
  ------------------
 2957|       |
 2958|   116k|    struct nx_action_reg_load *narl = put_NXAST_REG_LOAD(openflow);
 2959|   116k|    narl->ofs_nbits = nxm_encode_ofs_nbits(dst->ofs, dst->n_bits);
 2960|       |    narl->dst = htonl(nxm_header_from_mff(dst->field));
 2961|   116k|    narl->value = htonll(value);
 2962|   116k|}
ofp-actions.c:set_field_to_legacy_openflow:
 3027|  22.1k|{
 3028|  22.1k|    switch ((int) sf->field->id) {
 3029|  1.79k|    case MFF_VLAN_TCI: {
  ------------------
  |  Branch (3029:5): [True: 1.79k, False: 20.3k]
  ------------------
 3030|  1.79k|        ovs_be16 tci = sf->value->be16;
 3031|  1.79k|        bool cfi = (tci & htons(VLAN_CFI)) != 0;
 3032|  1.79k|        uint16_t vid = vlan_tci_to_vid(tci);
 3033|  1.79k|        uint8_t pcp = vlan_tci_to_pcp(tci);
 3034|       |
 3035|  1.79k|        if (ofp_version < OFP11_VERSION) {
  ------------------
  |  Branch (3035:13): [True: 612, False: 1.17k]
  ------------------
 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|    612|            if (cfi) {
  ------------------
  |  Branch (3041:17): [True: 195, False: 417]
  ------------------
 3042|    195|                put_OFPAT10_SET_VLAN_VID(out, vid);
 3043|    195|                put_OFPAT10_SET_VLAN_PCP(out, pcp);
 3044|    417|            } else {
 3045|    417|                put_OFPAT10_STRIP_VLAN(out);
 3046|    417|            }
 3047|  1.17k|        } 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.17k|            if (cfi) {
  ------------------
  |  Branch (3059:17): [True: 647, False: 532]
  ------------------
 3060|       |                /* Push a VLAN tag, if one was not seen at action validation
 3061|       |                 * time. */
 3062|    647|                if (!sf->flow_has_vlan) {
  ------------------
  |  Branch (3062:21): [True: 390, False: 257]
  ------------------
 3063|    390|                    put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 3064|    390|                }
 3065|    647|                put_OFPAT11_SET_VLAN_VID(out, vid);
 3066|    647|                put_OFPAT11_SET_VLAN_PCP(out, pcp);
 3067|    647|            } 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|    532|                put_OFPAT11_POP_VLAN(out);
 3072|    532|            }
 3073|  1.17k|        }
 3074|  1.79k|        break;
 3075|      0|    }
 3076|       |
 3077|    391|    case MFF_VLAN_VID: {
  ------------------
  |  Branch (3077:5): [True: 391, False: 21.7k]
  ------------------
 3078|    391|        uint16_t vid = ntohs(sf->value->be16) & VLAN_VID_MASK;
  ------------------
  |  |  494|    391|#define VLAN_VID_MASK 0x0fff
  ------------------
 3079|    391|        if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (3079:13): [True: 197, False: 194]
  ------------------
 3080|    197|            put_OFPAT10_SET_VLAN_VID(out, vid);
 3081|    197|        } else {
 3082|    194|            put_OFPAT11_SET_VLAN_VID(out, vid);
 3083|    194|        }
 3084|    391|        break;
 3085|      0|    }
 3086|       |
 3087|    425|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (3087:5): [True: 425, False: 21.6k]
  ------------------
 3088|    425|        if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (3088:13): [True: 231, False: 194]
  ------------------
 3089|    231|            put_OFPAT10_SET_VLAN_PCP(out, sf->value->u8);
 3090|    231|        } else {
 3091|    194|            put_OFPAT11_SET_VLAN_PCP(out, sf->value->u8);
 3092|    194|        }
 3093|    425|        break;
 3094|       |
 3095|    196|    case MFF_ETH_SRC:
  ------------------
  |  Branch (3095:5): [True: 196, False: 21.9k]
  ------------------
 3096|    196|        put_OFPAT_SET_DL_SRC(out, ofp_version)->dl_addr = sf->value->mac;
 3097|    196|        break;
 3098|       |
 3099|     67|    case MFF_ETH_DST:
  ------------------
  |  Branch (3099:5): [True: 67, False: 22.0k]
  ------------------
 3100|     67|        put_OFPAT_SET_DL_DST(out, ofp_version)->dl_addr = sf->value->mac;
 3101|     67|        break;
 3102|       |
 3103|    194|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (3103:5): [True: 194, False: 21.9k]
  ------------------
 3104|    194|        put_OFPAT_SET_NW_SRC(out, ofp_version, sf->value->be32);
 3105|    194|        break;
 3106|       |
 3107|    289|    case MFF_IPV4_DST:
  ------------------
  |  Branch (3107:5): [True: 289, False: 21.8k]
  ------------------
 3108|    289|        put_OFPAT_SET_NW_DST(out, ofp_version, sf->value->be32);
 3109|    289|        break;
 3110|       |
 3111|    194|    case MFF_IP_DSCP:
  ------------------
  |  Branch (3111:5): [True: 194, False: 21.9k]
  ------------------
 3112|    194|        put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value->u8);
 3113|    194|        break;
 3114|       |
 3115|    195|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (3115:5): [True: 195, False: 21.9k]
  ------------------
 3116|    195|        put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value->u8 << 2);
 3117|    195|        break;
 3118|       |
 3119|    209|    case MFF_IP_ECN: {
  ------------------
  |  Branch (3119:5): [True: 209, False: 21.9k]
  ------------------
 3120|    209|        struct ofpact_ecn ip_ecn = { .ecn = sf->value->u8 };
 3121|    209|        encode_SET_IP_ECN(&ip_ecn, ofp_version, out);
 3122|    209|        break;
 3123|      0|    }
 3124|       |
 3125|     66|    case MFF_TCP_SRC:
  ------------------
  |  Branch (3125:5): [True: 66, False: 22.0k]
  ------------------
 3126|    388|    case MFF_UDP_SRC:
  ------------------
  |  Branch (3126:5): [True: 322, False: 21.7k]
  ------------------
 3127|    388|        put_OFPAT_SET_TP_SRC(out, sf->value->be16);
 3128|    388|        break;
 3129|       |
 3130|    302|    case MFF_TCP_DST:
  ------------------
  |  Branch (3130:5): [True: 302, False: 21.8k]
  ------------------
 3131|    496|    case MFF_UDP_DST:
  ------------------
  |  Branch (3131:5): [True: 194, False: 21.9k]
  ------------------
 3132|    496|        put_OFPAT_SET_TP_DST(out, sf->value->be16);
 3133|    496|        break;
 3134|       |
 3135|  17.2k|    default:
  ------------------
  |  Branch (3135:5): [True: 17.2k, False: 4.83k]
  ------------------
 3136|  17.2k|        set_field_to_nxast(sf, out);
 3137|  17.2k|        break;
 3138|  22.1k|    }
 3139|  22.1k|}
ofp-actions.c:encode_SET_VLAN_VID:
 1590|  1.56k|{
 1591|  1.56k|    uint16_t vid = vlan_vid->vlan_vid;
 1592|       |
 1593|       |    /* Push a VLAN tag, if none is present and this form of the action calls
 1594|       |     * for such a feature. */
 1595|  1.56k|    if (ofp_version > OFP10_VERSION
  ------------------
  |  Branch (1595:9): [True: 871, False: 693]
  ------------------
 1596|    871|        && vlan_vid->push_vlan_if_needed
  ------------------
  |  Branch (1596:12): [True: 548, False: 323]
  ------------------
 1597|    548|        && !vlan_vid->flow_has_vlan) {
  ------------------
  |  Branch (1597:12): [True: 216, False: 332]
  ------------------
 1598|    216|        put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 1599|    216|    }
 1600|       |
 1601|  1.56k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1601:9): [True: 693, False: 871]
  ------------------
 1602|    693|        put_OFPAT10_SET_VLAN_VID(out, vid);
 1603|    871|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (1603:16): [True: 214, False: 657]
  ------------------
 1604|    214|        put_OFPAT11_SET_VLAN_VID(out, vid);
 1605|    657|    } else {
 1606|    657|        put_set_field(out, ofp_version, MFF_VLAN_VID, vid | OFPVID12_PRESENT);
 1607|    657|    }
 1608|  1.56k|}
ofp-actions.c:put_set_field:
 2938|  5.26k|{
 2939|  5.26k|    struct ofp12_action_set_field *oasf OVS_UNUSED;
 2940|  5.26k|    int n_bytes = mf_from_id(field)->n_bytes;
 2941|  5.26k|    size_t start_ofs = openflow->size;
 2942|  5.26k|    union mf_value value;
 2943|       |
 2944|  5.26k|    value.be64 = htonll(value_ << (8 * (8 - n_bytes)));
 2945|       |
 2946|  5.26k|    oasf = put_OFPAT12_SET_FIELD(openflow);
 2947|  5.26k|    openflow->size = openflow->size - sizeof oasf->pad;
 2948|       |    nx_put_entry(openflow, mf_from_id(field), ofp_version, &value, NULL);
 2949|  5.26k|    pad_ofpat(openflow, start_ofs);
 2950|  5.26k|}
ofp-actions.c:encode_SET_VLAN_PCP:
 1698|  1.58k|{
 1699|  1.58k|    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.58k|    if (ofp_version > OFP10_VERSION
  ------------------
  |  Branch (1703:9): [True: 1.04k, False: 546]
  ------------------
 1704|  1.04k|        && vlan_pcp->push_vlan_if_needed
  ------------------
  |  Branch (1704:12): [True: 510, False: 530]
  ------------------
 1705|    510|        && !vlan_pcp->flow_has_vlan) {
  ------------------
  |  Branch (1705:12): [True: 201, False: 309]
  ------------------
 1706|    201|        put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 1707|    201|    }
 1708|       |
 1709|  1.58k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1709:9): [True: 546, False: 1.04k]
  ------------------
 1710|    546|        put_OFPAT10_SET_VLAN_PCP(out, pcp);
 1711|  1.04k|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (1711:16): [True: 535, False: 505]
  ------------------
 1712|    535|        put_OFPAT11_SET_VLAN_PCP(out, pcp);
 1713|    535|    } else {
 1714|    505|        put_set_field(out, ofp_version, MFF_VLAN_PCP, pcp);
 1715|    505|    }
 1716|  1.58k|}
ofp-actions.c:encode_STRIP_VLAN:
 1791|  1.89k|{
 1792|  1.89k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1792:9): [True: 1.16k, False: 728]
  ------------------
 1793|  1.16k|        put_OFPAT10_STRIP_VLAN(out);
 1794|  1.16k|    } else {
 1795|    728|        put_OFPAT11_POP_VLAN(out);
 1796|    728|    }
 1797|  1.89k|}
ofp-actions.c:encode_PUSH_VLAN:
 1853|    822|{
 1854|    822|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1854:9): [True: 302, False: 520]
  ------------------
 1855|       |        /* PUSH is a side effect of a SET_VLAN_VID/PCP, which should
 1856|       |         * follow this action. */
 1857|    520|    } else {
 1858|    520|        put_OFPAT11_PUSH_VLAN(out, push_vlan->ethertype);
 1859|    520|    }
 1860|    822|}
ofp-actions.c:encode_SET_ETH_SRC:
 1951|    449|{
 1952|    449|    encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_SRC, MFF_ETH_SRC,
 1953|    449|                        out);
 1954|       |
 1955|    449|}
ofp-actions.c:encode_SET_ETH_addr:
 1937|    931|{
 1938|    931|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (1938:9): [True: 485, False: 446]
  ------------------
 1939|    485|        struct ofp_action_dl_addr *oada;
 1940|       |
 1941|    485|        oada = ofpact_put_raw(out, ofp_version, raw, 0);
 1942|    485|        oada->dl_addr = mac->mac;
 1943|    485|    } else {
 1944|    446|        put_set_field(out, ofp_version, field, eth_addr_to_uint64(mac->mac));
 1945|    446|    }
 1946|    931|}
ofp-actions.c:encode_SET_ETH_DST:
 1961|    482|{
 1962|    482|    encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_DST, MFF_ETH_DST,
 1963|    482|                        out);
 1964|       |
 1965|    482|}
ofp-actions.c:encode_SET_IPV4_SRC:
 2046|    839|{
 2047|    839|    encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_SRC, MFF_IPV4_SRC,
 2048|    839|                         out);
 2049|    839|}
ofp-actions.c:encode_SET_IPV4_addr:
 2034|  1.57k|{
 2035|  1.57k|    ovs_be32 addr = ipv4->ipv4;
 2036|  1.57k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (2036:9): [True: 1.03k, False: 545]
  ------------------
 2037|  1.03k|        ofpact_put_raw(out, ofp_version, raw, ntohl(addr));
 2038|  1.03k|    } else {
 2039|       |        put_set_field(out, ofp_version, field, ntohl(addr));
 2040|    545|    }
 2041|  1.57k|}
ofp-actions.c:encode_SET_IPV4_DST:
 2054|    737|{
 2055|    737|    encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_DST, MFF_IPV4_DST,
 2056|    737|                         out);
 2057|    737|}
ofp-actions.c:encode_SET_IP_DSCP:
 2129|  1.22k|{
 2130|  1.22k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (2130:9): [True: 943, False: 282]
  ------------------
 2131|    943|        put_OFPAT_SET_NW_TOS(out, ofp_version, dscp->dscp);
 2132|    943|    } else {
 2133|    282|        put_set_field(out, ofp_version, MFF_IP_DSCP_SHIFTED, dscp->dscp >> 2);
 2134|    282|    }
 2135|  1.22k|}
ofp-actions.c:encode_SET_IP_ECN:
 2198|  1.50k|{
 2199|  1.50k|    uint8_t ecn = ip_ecn->ecn;
 2200|  1.50k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (2200:9): [True: 758, False: 748]
  ------------------
 2201|    758|        struct mf_subfield dst = { .field = mf_from_id(MFF_IP_ECN),
 2202|    758|                                   .ofs = 0, .n_bits = 2 };
 2203|    758|        put_reg_load(out, &dst, ecn);
 2204|    758|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (2204:16): [True: 202, False: 546]
  ------------------
 2205|    202|        put_OFPAT11_SET_NW_ECN(out, ecn);
 2206|    546|    } else {
 2207|    546|        put_set_field(out, ofp_version, MFF_IP_ECN, ecn);
 2208|    546|    }
 2209|  1.50k|}
ofp-actions.c:encode_SET_IP_TTL:
 2258|  1.87k|{
 2259|  1.87k|    if (ofp_version >= OFP11_VERSION) {
  ------------------
  |  Branch (2259:9): [True: 451, False: 1.41k]
  ------------------
 2260|    451|        put_OFPAT11_SET_NW_TTL(out, ttl->ttl);
 2261|  1.41k|    } else {
 2262|  1.41k|        struct mf_subfield dst = { .field = mf_from_id(MFF_IP_TTL),
 2263|  1.41k|                                   .ofs = 0, .n_bits = 8 };
 2264|  1.41k|        put_reg_load(out, &dst, ttl->ttl);
 2265|  1.41k|    }
 2266|  1.87k|}
ofp-actions.c:encode_SET_L4_SRC_PORT:
 2336|  2.08k|{
 2337|  2.08k|    uint8_t proto = l4_port->flow_ip_proto;
 2338|  2.08k|    enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_SRC
  ------------------
  |  Branch (2338:31): [True: 503, False: 1.57k]
  ------------------
 2339|  2.08k|                              : proto == IPPROTO_UDP ? MFF_UDP_SRC
  ------------------
  |  Branch (2339:33): [True: 308, False: 1.27k]
  ------------------
 2340|  1.57k|                              : proto == IPPROTO_SCTP ? MFF_SCTP_SRC
  ------------------
  |  Branch (2340:33): [True: 341, False: 930]
  ------------------
 2341|  1.27k|                              : MFF_N_IDS);
 2342|       |
 2343|  2.08k|    encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_SRC, field, out);
 2344|  2.08k|}
ofp-actions.c:encode_SET_L4_port:
 2323|  4.17k|{
 2324|  4.17k|    uint16_t port = l4_port->port;
 2325|       |
 2326|  4.17k|    if (ofp_version >= OFP12_VERSION && field != MFF_N_IDS) {
  ------------------
  |  Branch (2326:9): [True: 1.06k, False: 3.10k]
  |  Branch (2326:41): [True: 627, False: 442]
  ------------------
 2327|    627|        put_set_field(out, ofp_version, field, port);
 2328|  3.54k|    } else {
 2329|  3.54k|        ofpact_put_raw(out, ofp_version, raw, port);
 2330|  3.54k|    }
 2331|  4.17k|}
ofp-actions.c:encode_SET_L4_DST_PORT:
 2350|  2.08k|{
 2351|  2.08k|    uint8_t proto = l4_port->flow_ip_proto;
 2352|  2.08k|    enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_DST
  ------------------
  |  Branch (2352:31): [True: 290, False: 1.79k]
  ------------------
 2353|  2.08k|                              : proto == IPPROTO_UDP ? MFF_UDP_DST
  ------------------
  |  Branch (2353:33): [True: 221, False: 1.57k]
  ------------------
 2354|  1.79k|                              : proto == IPPROTO_SCTP ? MFF_SCTP_DST
  ------------------
  |  Branch (2354:33): [True: 598, False: 979]
  ------------------
 2355|  1.57k|                              : MFF_N_IDS);
 2356|       |
 2357|  2.08k|    encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_DST, field, out);
 2358|  2.08k|}
ofp-actions.c:encode_REG_MOVE:
 2669|    395|{
 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|    395|    size_t start_ofs = out->size;
 2677|    395|    if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (2677:9): [True: 0, False: 395]
  ------------------
 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|    395|    } else if (ofp_version == OFP13_VERSION
  ------------------
  |  Branch (2685:16): [True: 194, False: 201]
  ------------------
 2686|    194|               && move->ofpact.raw == ONFACT_RAW13_COPY_FIELD) {
  ------------------
  |  Branch (2686:19): [True: 0, False: 194]
  ------------------
 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|    395|    } else {
 2695|    395|        struct nx_action_reg_move *narm = put_NXAST_REG_MOVE(out);
 2696|    395|        narm->n_bits = htons(move->dst.n_bits);
 2697|    395|        narm->src_ofs = htons(move->src.ofs);
 2698|    395|        narm->dst_ofs = htons(move->dst.ofs);
 2699|    395|        nx_put_mff_header(out, move->src.field, 0, false);
 2700|       |        nx_put_mff_header(out, move->dst.field, 0, false);
 2701|    395|    }
 2702|    395|    pad_ofpat(out, start_ofs);
 2703|    395|}
ofp-actions.c:encode_STACK_PUSH:
 3532|    470|{
 3533|    470|    encode_STACK_op(stack, put_NXAST_STACK_PUSH(out));
 3534|    470|}
ofp-actions.c:encode_STACK_op:
 3516|  2.31k|{
 3517|  2.31k|    struct ofpbuf b;
 3518|  2.31k|    ovs_be16 n_bits;
 3519|       |
 3520|  2.31k|    nasp->offset = htons(stack_action->subfield.ofs);
 3521|       |
 3522|  2.31k|    ofpbuf_use_stack(&b, nasp, ntohs(nasp->len));
 3523|  2.31k|    ofpbuf_put_uninit(&b, OBJECT_OFFSETOF(nasp, pad));
  ------------------
  |  |  108|  2.31k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  ------------------
 3524|  2.31k|    nx_put_mff_header(&b, stack_action->subfield.field, 0, false);
 3525|       |    n_bits = htons(stack_action->subfield.n_bits);
 3526|  2.31k|    ofpbuf_put(&b, &n_bits, sizeof n_bits);
 3527|  2.31k|}
ofp-actions.c:encode_STACK_POP:
 3539|  1.84k|{
 3540|  1.84k|    encode_STACK_op(stack, put_NXAST_STACK_POP(out));
 3541|  1.84k|}
ofp-actions.c:encode_DEC_TTL:
 3666|  2.66k|{
 3667|  2.66k|    if (dec_ttl->ofpact.raw == NXAST_RAW_DEC_TTL_CNT_IDS
  ------------------
  |  Branch (3667:9): [True: 1.95k, False: 710]
  ------------------
 3668|    710|        || dec_ttl->n_controllers != 1
  ------------------
  |  Branch (3668:12): [True: 0, False: 710]
  ------------------
 3669|  1.95k|        || dec_ttl->cnt_ids[0] != 0) {
  ------------------
  |  Branch (3669:12): [True: 0, False: 710]
  ------------------
 3670|  1.95k|        struct nx_action_cnt_ids *nac_ids = put_NXAST_DEC_TTL_CNT_IDS(out);
 3671|  1.95k|        int ids_len = ROUND_UP(2 * dec_ttl->n_controllers, OFP_ACTION_ALIGN);
  ------------------
  |  |  303|  1.95k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  1.95k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 3672|  1.95k|        ovs_be16 *ids;
 3673|  1.95k|        size_t i;
 3674|       |
 3675|  1.95k|        nac_ids->len = htons(ntohs(nac_ids->len) + ids_len);
 3676|  1.95k|        nac_ids->n_controllers = htons(dec_ttl->n_controllers);
 3677|       |
 3678|  1.95k|        ids = ofpbuf_put_zeros(out, ids_len);
 3679|   295k|        for (i = 0; i < dec_ttl->n_controllers; i++) {
  ------------------
  |  Branch (3679:21): [True: 293k, False: 1.95k]
  ------------------
 3680|   293k|            ids[i] = htons(dec_ttl->cnt_ids[i]);
 3681|   293k|        }
 3682|  1.95k|    } else {
 3683|    710|        put_OFPAT_DEC_NW_TTL(out, ofp_version);
 3684|    710|    }
 3685|  2.66k|}
ofp-actions.c:encode_SET_MPLS_LABEL:
 3774|  2.69k|{
 3775|  2.69k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3775:9): [True: 1.61k, False: 1.08k]
  ------------------
 3776|  1.61k|        put_OFPAT_SET_MPLS_LABEL(out, ofp_version, label->label);
 3777|  1.61k|    } else {
 3778|       |        put_set_field(out, ofp_version, MFF_MPLS_LABEL, ntohl(label->label));
 3779|  1.08k|    }
 3780|  2.69k|}
ofp-actions.c:encode_SET_MPLS_TC:
 3846|  1.15k|{
 3847|  1.15k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3847:9): [True: 844, False: 308]
  ------------------
 3848|    844|        put_OFPAT_SET_MPLS_TC(out, ofp_version, tc->tc);
 3849|    844|    } else {
 3850|    308|        put_set_field(out, ofp_version, MFF_MPLS_TC, tc->tc);
 3851|    308|    }
 3852|  1.15k|}
ofp-actions.c:encode_SET_MPLS_TTL:
 3907|    844|{
 3908|    844|    put_OFPAT_SET_MPLS_TTL(out, ofp_version, ttl->ttl);
 3909|    844|}
ofp-actions.c:encode_DEC_MPLS_TTL:
 3963|  2.83k|{
 3964|  2.83k|    put_OFPAT_DEC_MPLS_TTL(out, ofp_version);
 3965|  2.83k|}
ofp-actions.c:encode_PUSH_MPLS:
 4009|    529|{
 4010|    529|    put_OFPAT_PUSH_MPLS(out, ofp_version, push_mpls->ethertype);
 4011|    529|}
ofp-actions.c:encode_POP_MPLS:
 4067|  2.10k|{
 4068|  2.10k|    put_OFPAT_POP_MPLS(out, ofp_version, pop_mpls->ethertype);
 4069|  2.10k|}
ofp-actions.c:encode_DEC_NSH_TTL:
 4808|    509|{
 4809|    509|    put_NXAST_DEC_NSH_TTL(out);
 4810|    509|}
ofp-actions.c:encode_DELETE_FIELD:
 4224|    260|{
 4225|    260|    size_t size;
 4226|       |
 4227|    260|    put_NXAST_DELETE_FIELD(out);
 4228|    260|    size = out->size;
 4229|       |
 4230|    260|    out->size = size - MEMBER_SIZEOF(struct nx_action_delete_field, pad);
  ------------------
  |  |  115|    260|#define MEMBER_SIZEOF(STRUCT, MEMBER) (sizeof(((STRUCT *) NULL)->MEMBER))
  ------------------
 4231|       |    nx_put_mff_header(out, delete_field->field, 0, false);
 4232|    260|    out->size = size;
 4233|    260|}
ofp-actions.c:encode_ENCAP:
 4512|  1.50k|{
 4513|  1.50k|    size_t start_ofs = out->size;
 4514|  1.50k|    struct nx_action_encap *nae = put_NXAST_ENCAP(out);
 4515|  1.50k|    int i;
 4516|       |
 4517|  1.50k|    nae->new_pkt_type = encap->new_pkt_type;
 4518|  1.50k|    nae->hdr_size = htons(encap->hdr_size);
 4519|  1.50k|    const struct ofpact_ed_prop *prop = encap->props;
 4520|  2.29k|    for (i = 0; i < encap->n_props; i++) {
  ------------------
  |  Branch (4520:17): [True: 786, False: 1.50k]
  ------------------
 4521|    786|        encode_ed_prop(&prop, out);
 4522|    786|    }
 4523|  1.50k|    pad_ofpat(out, start_ofs);
 4524|  1.50k|}
ofp-actions.c:encode_DECAP:
 4715|  1.95k|{
 4716|  1.95k|    struct nx_action_decap *nad = put_NXAST_DECAP(out);
 4717|       |
 4718|       |    nad->len = htons(sizeof(struct nx_action_decap));
 4719|  1.95k|    nad->new_pkt_type = decap->new_pkt_type;
 4720|  1.95k|}
ofp-actions.c:encode_SET_TUNNEL:
 4132|  1.20k|{
 4133|  1.20k|    uint64_t tun_id = tunnel->tun_id;
 4134|       |
 4135|  1.20k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (4135:9): [True: 932, False: 270]
  ------------------
 4136|    932|        if (tun_id <= UINT32_MAX
  ------------------
  |  Branch (4136:13): [True: 644, False: 288]
  ------------------
 4137|    644|            && tunnel->ofpact.raw != NXAST_RAW_SET_TUNNEL64) {
  ------------------
  |  Branch (4137:16): [True: 399, False: 245]
  ------------------
 4138|    399|            put_NXAST_SET_TUNNEL(out, tun_id);
 4139|    533|        } else {
 4140|    533|            put_NXAST_SET_TUNNEL64(out, tun_id);
 4141|    533|        }
 4142|    932|    } else {
 4143|    270|        put_set_field(out, ofp_version, MFF_TUN_ID, tun_id);
 4144|    270|    }
 4145|  1.20k|}
ofp-actions.c:encode_SET_QUEUE:
 4278|    201|{
 4279|    201|    put_OFPAT_SET_QUEUE(out, ofp_version, queue->queue_id);
 4280|    201|}
ofp-actions.c:encode_POP_QUEUE:
 4315|    663|{
 4316|    663|    put_NXAST_POP_QUEUE(out);
 4317|    663|}
ofp-actions.c:encode_FIN_TIMEOUT:
 4392|  1.12k|{
 4393|  1.12k|    struct nx_action_fin_timeout *naft = put_NXAST_FIN_TIMEOUT(out);
 4394|  1.12k|    naft->fin_idle_timeout = htons(fin_timeout->fin_idle_timeout);
 4395|       |    naft->fin_hard_timeout = htons(fin_timeout->fin_hard_timeout);
 4396|  1.12k|}
ofp-actions.c:encode_RESUBMIT:
 4965|  1.03k|{
 4966|  1.03k|    uint16_t in_port = ofp_to_u16(resubmit->in_port);
 4967|       |
 4968|  1.03k|    if (resubmit->table_id == 0xff
  ------------------
  |  Branch (4968:9): [True: 606, False: 432]
  ------------------
 4969|    606|        && resubmit->ofpact.raw == NXAST_RAW_RESUBMIT) {
  ------------------
  |  Branch (4969:12): [True: 0, False: 606]
  ------------------
 4970|      0|        put_NXAST_RESUBMIT(out, in_port);
 4971|  1.03k|    } else {
 4972|  1.03k|        struct nx_action_resubmit *nar;
 4973|  1.03k|        nar = resubmit->with_ct_orig
  ------------------
  |  Branch (4973:15): [True: 391, False: 647]
  ------------------
 4974|  1.03k|            ? put_NXAST_RESUBMIT_TABLE_CT(out) : put_NXAST_RESUBMIT_TABLE(out);
 4975|  1.03k|        nar->table = resubmit->table_id;
 4976|       |        nar->in_port = htons(in_port);
 4977|  1.03k|    }
 4978|  1.03k|}
ofp-actions.c:encode_LEARN:
 5573|  32.5k|{
 5574|  32.5k|    const struct ofpact_learn_spec *spec;
 5575|  32.5k|    struct nx_action_learn *nal;
 5576|  32.5k|    size_t start_ofs;
 5577|       |
 5578|  32.5k|    start_ofs = out->size;
 5579|       |
 5580|  32.5k|    if (learn->ofpact.raw == NXAST_RAW_LEARN2
  ------------------
  |  Branch (5580:9): [True: 0, False: 32.5k]
  ------------------
 5581|  32.5k|        || learn->limit != 0
  ------------------
  |  Branch (5581:12): [True: 581, False: 32.0k]
  ------------------
 5582|  32.0k|        || learn->flags & NX_LEARN_F_WRITE_RESULT) {
  ------------------
  |  Branch (5582:12): [True: 270, False: 31.7k]
  ------------------
 5583|    851|        struct nx_action_learn2 *nal2;
 5584|       |
 5585|    851|        nal2 = put_NXAST_LEARN2(out);
 5586|    851|        nal2->limit = htonl(learn->limit);
 5587|    851|        nal2->result_dst_ofs = htons(learn->result_dst.ofs);
 5588|    851|        nal = &nal2->up;
 5589|  31.7k|    } else {
 5590|  31.7k|        nal = put_NXAST_LEARN(out);
 5591|  31.7k|    }
 5592|  32.5k|    nal->idle_timeout = htons(learn->idle_timeout);
 5593|  32.5k|    nal->hard_timeout = htons(learn->hard_timeout);
 5594|  32.5k|    nal->fin_idle_timeout = htons(learn->fin_idle_timeout);
 5595|  32.5k|    nal->fin_hard_timeout = htons(learn->fin_hard_timeout);
 5596|  32.5k|    nal->priority = htons(learn->priority);
 5597|  32.5k|    nal->cookie = learn->cookie;
 5598|  32.5k|    nal->flags = htons(learn->flags);
 5599|  32.5k|    nal->table_id = learn->table_id;
 5600|       |
 5601|  32.5k|    if (learn->flags & NX_LEARN_F_WRITE_RESULT) {
  ------------------
  |  Branch (5601:9): [True: 270, False: 32.3k]
  ------------------
 5602|    270|        nx_put_header(out, learn->result_dst.field->id, 0, false);
 5603|    270|    }
 5604|       |
 5605|  55.1k|    OFPACT_LEARN_SPEC_FOR_EACH (spec, learn) {
  ------------------
  |  |  900|  32.5k|    for ((SPEC) = (LEARN)->specs;               \
  |  |  901|  87.6k|         (SPEC) < ofpact_learn_spec_end(LEARN); \
  |  |  ------------------
  |  |  |  Branch (901:10): [True: 55.1k, False: 32.5k]
  |  |  ------------------
  |  |  902|  55.1k|         (SPEC) = ofpact_learn_spec_next(SPEC))
  ------------------
 5606|  55.1k|        put_u16(out, spec->n_bits | spec->dst_type | spec->src_type);
 5607|       |
 5608|  55.1k|        if (spec->src_type == NX_LEARN_SRC_FIELD) {
  ------------------
  |  |  821|  55.1k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  |  Branch (5608:13): [True: 2.58k, False: 52.5k]
  ------------------
 5609|  2.58k|            put_u32(out, nxm_header_from_mff(spec->src.field));
 5610|  2.58k|            put_u16(out, spec->src.ofs);
 5611|  52.5k|        } else {
 5612|  52.5k|            size_t n_dst_bytes = 2 * DIV_ROUND_UP(spec->n_bits, 16);
  ------------------
  |  |  300|  52.5k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 5613|  52.5k|            uint8_t *bits = ofpbuf_put_zeros(out, n_dst_bytes);
 5614|  52.5k|            unsigned int n_bytes = DIV_ROUND_UP(spec->n_bits, 8);
  ------------------
  |  |  300|  52.5k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 5615|       |
 5616|  52.5k|            memcpy(bits + n_dst_bytes - n_bytes, ofpact_learn_spec_imm(spec),
 5617|  52.5k|                   n_bytes);
 5618|  52.5k|        }
 5619|       |
 5620|  55.1k|        if (spec->dst_type == NX_LEARN_DST_MATCH ||
  ------------------
  |  |  825|   110k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  |  Branch (5620:13): [True: 54.6k, False: 441]
  ------------------
 5621|  54.9k|            spec->dst_type == NX_LEARN_DST_LOAD) {
  ------------------
  |  |  826|    441|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  |  Branch (5621:13): [True: 247, False: 194]
  ------------------
 5622|  54.9k|            put_u32(out, nxm_header_from_mff(spec->dst.field));
 5623|  54.9k|            put_u16(out, spec->dst.ofs);
 5624|  54.9k|        }
 5625|  55.1k|    }
 5626|       |
 5627|  32.5k|    pad_ofpat(out, start_ofs);
 5628|  32.5k|}
ofp-actions.c:put_u16:
 5560|   112k|{
 5561|       |    put_be16(b, htons(x));
 5562|   112k|}
ofp-actions.c:put_be16:
 5548|   112k|{
 5549|   112k|    ofpbuf_put(b, &x, sizeof x);
 5550|   112k|}
ofp-actions.c:put_u32:
 5566|  57.5k|{
 5567|       |    put_be32(b, htonl(x));
 5568|  57.5k|}
ofp-actions.c:put_be32:
 5554|  57.5k|{
 5555|  57.5k|    ofpbuf_put(b, &x, sizeof x);
 5556|  57.5k|}
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|    724|{
 5846|    724|    struct nx_action_multipath *nam = put_NXAST_MULTIPATH(out);
 5847|       |
 5848|    724|    nam->fields = htons(mp->fields);
 5849|    724|    nam->basis = htons(mp->basis);
 5850|    724|    nam->algorithm = htons(mp->algorithm);
 5851|    724|    nam->max_link = htons(mp->max_link);
 5852|    724|    nam->arg = htonl(mp->arg);
 5853|    724|    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|    724|}
ofp-actions.c:encode_NOTE:
 5916|  2.00k|{
 5917|  2.00k|    size_t start_ofs = out->size;
 5918|  2.00k|    struct nx_action_note *nan;
 5919|       |
 5920|  2.00k|    put_NXAST_NOTE(out);
 5921|  2.00k|    out->size = out->size - sizeof nan->note;
 5922|       |
 5923|  2.00k|    ofpbuf_put(out, note->data, note->length);
 5924|  2.00k|    pad_ofpat(out, start_ofs);
 5925|  2.00k|}
ofp-actions.c:encode_EXIT:
 5975|    917|{
 5976|    917|    put_NXAST_EXIT(out);
 5977|    917|}
ofp-actions.c:encode_SAMPLE:
 6427|  1.65k|{
 6428|  1.65k|    if (sample->ofpact.raw == NXAST_RAW_SAMPLE4 ||
  ------------------
  |  Branch (6428:9): [True: 0, False: 1.65k]
  ------------------
 6429|  1.65k|        sample->obs_domain_src.field ||
  ------------------
  |  Branch (6429:9): [True: 302, False: 1.34k]
  ------------------
 6430|  1.34k|        sample->obs_point_src.field) {
  ------------------
  |  Branch (6430:9): [True: 196, False: 1.15k]
  ------------------
 6431|    498|        encode_SAMPLE4(sample, put_NXAST_SAMPLE4(out));
 6432|  1.15k|    } else if (sample->ofpact.raw == NXAST_RAW_SAMPLE3
  ------------------
  |  Branch (6432:16): [True: 0, False: 1.15k]
  ------------------
 6433|  1.15k|        || sample->direction != NX_ACTION_SAMPLE_DEFAULT) {
  ------------------
  |  Branch (6433:12): [True: 289, False: 863]
  ------------------
 6434|    289|        encode_SAMPLE2(sample, put_NXAST_SAMPLE3(out));
 6435|    863|    } else if (sample->ofpact.raw == NXAST_RAW_SAMPLE2
  ------------------
  |  Branch (6435:16): [True: 0, False: 863]
  ------------------
 6436|    863|               || sample->sampling_port != OFPP_NONE) {
  ------------------
  |  |   47|    863|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|    863|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (6436:19): [True: 86, False: 777]
  ------------------
 6437|     86|        encode_SAMPLE2(sample, put_NXAST_SAMPLE2(out));
 6438|    777|    } else {
 6439|    777|        struct nx_action_sample *nas = put_NXAST_SAMPLE(out);
 6440|    777|        nas->probability = htons(sample->probability);
 6441|    777|        nas->collector_set_id = htonl(sample->collector_set_id);
 6442|    777|        nas->obs_domain_id = htonl(sample->obs_domain_imm);
 6443|       |        nas->obs_point_id = htonl(sample->obs_point_imm);
 6444|    777|    }
 6445|  1.65k|}
ofp-actions.c:encode_SAMPLE4:
 6396|    498|{
 6397|    498|    nas->probability = htons(sample->probability);
 6398|    498|    nas->collector_set_id = htonl(sample->collector_set_id);
 6399|    498|    nas->sampling_port = htons(ofp_to_u16(sample->sampling_port));
 6400|    498|    nas->direction = sample->direction;
 6401|       |
 6402|    498|    if (sample->obs_domain_src.field) {
  ------------------
  |  Branch (6402:9): [True: 302, False: 196]
  ------------------
 6403|    302|        nas->obs_domain_src =
 6404|    302|            htonl(nxm_header_from_mff(sample->obs_domain_src.field));
 6405|    302|        nas->obs_domain_ofs_nbits =
 6406|    302|            nxm_encode_ofs_nbits(sample->obs_domain_src.ofs,
 6407|    302|                                 sample->obs_domain_src.n_bits);
 6408|    302|    } else {
 6409|    196|        nas->obs_domain_src = htonl(0);
 6410|    196|        nas->obs_domain_imm = htonl(sample->obs_domain_imm);
 6411|    196|    }
 6412|    498|    if (sample->obs_point_src.field) {
  ------------------
  |  Branch (6412:9): [True: 196, False: 302]
  ------------------
 6413|    196|        nas->obs_point_src =
 6414|    196|            htonl(nxm_header_from_mff(sample->obs_point_src.field));
 6415|    196|        nas->obs_point_ofs_nbits =
 6416|    196|            nxm_encode_ofs_nbits(sample->obs_point_src.ofs,
 6417|    196|                                 sample->obs_point_src.n_bits);
 6418|    302|    } else {
 6419|    302|        nas->obs_point_src = htonl(0);
 6420|       |        nas->obs_point_imm = htonl(sample->obs_point_imm);
 6421|    302|    }
 6422|    498|}
ofp-actions.c:encode_SAMPLE2:
 6384|    375|{
 6385|    375|    nas->probability = htons(sample->probability);
 6386|    375|    nas->collector_set_id = htonl(sample->collector_set_id);
 6387|    375|    nas->obs_domain_id = htonl(sample->obs_domain_imm);
 6388|    375|    nas->obs_point_id = htonl(sample->obs_point_imm);
 6389|       |    nas->sampling_port = htons(ofp_to_u16(sample->sampling_port));
 6390|    375|    nas->direction = sample->direction;
 6391|    375|}
ofp-actions.c:encode_CT:
 6888|  9.08k|{
 6889|  9.08k|    struct nx_action_conntrack *nac;
 6890|  9.08k|    const size_t ofs = out->size;
 6891|  9.08k|    size_t len;
 6892|       |
 6893|  9.08k|    nac = put_NXAST_CT(out);
 6894|  9.08k|    nac->flags = htons(conntrack->flags);
 6895|  9.08k|    if (conntrack->zone_src.field) {
  ------------------
  |  Branch (6895:9): [True: 359, False: 8.72k]
  ------------------
 6896|    359|        nac->zone_src = htonl(nxm_header_from_mff(conntrack->zone_src.field));
 6897|    359|        nac->zone_ofs_nbits = nxm_encode_ofs_nbits(conntrack->zone_src.ofs,
 6898|    359|                                                   conntrack->zone_src.n_bits);
 6899|  8.72k|    } else {
 6900|  8.72k|        nac->zone_src = htonl(0);
 6901|  8.72k|        nac->zone_imm = htons(conntrack->zone_imm);
 6902|  8.72k|    }
 6903|  9.08k|    nac->recirc_table = conntrack->recirc_table;
 6904|  9.08k|    nac->alg = htons(conntrack->alg);
 6905|       |
 6906|  9.08k|    len = ofpacts_put_openflow_actions(conntrack->actions,
 6907|  9.08k|                                       ofpact_ct_get_action_len(conntrack),
 6908|  9.08k|                                       out, ofp_version);
 6909|  9.08k|    len += sizeof(*nac);
 6910|  9.08k|    nac = ofpbuf_at(out, ofs, sizeof(*nac));
 6911|       |    nac->len = htons(len);
 6912|  9.08k|}
ofp-actions.c:encode_CT_CLEAR:
 7101|  2.03k|{
 7102|  2.03k|    put_NXAST_CT_CLEAR(out);
 7103|  2.03k|}
ofp-actions.c:encode_NAT:
 7156|  5.06k|{
 7157|  5.06k|    struct nx_action_nat *nan;
 7158|  5.06k|    const size_t ofs = out->size;
 7159|  5.06k|    uint16_t range_present = 0;
 7160|       |
 7161|  5.06k|    nan = put_NXAST_NAT(out);
 7162|  5.06k|    nan->flags = htons(nat->flags);
 7163|  5.06k|    if (nat->range_af == AF_INET) {
  ------------------
  |  Branch (7163:9): [True: 674, False: 4.39k]
  ------------------
 7164|    674|        if (nat->range.addr.ipv4.min) {
  ------------------
  |  Branch (7164:13): [True: 377, False: 297]
  ------------------
 7165|    377|            ovs_be32 *min = ofpbuf_put_uninit(out, sizeof *min);
 7166|    377|            *min = nat->range.addr.ipv4.min;
 7167|    377|            range_present |= NX_NAT_RANGE_IPV4_MIN;
 7168|    377|        }
 7169|    674|        if (nat->range.addr.ipv4.max) {
  ------------------
  |  Branch (7169:13): [True: 249, False: 425]
  ------------------
 7170|    249|            ovs_be32 *max = ofpbuf_put_uninit(out, sizeof *max);
 7171|    249|            *max = nat->range.addr.ipv4.max;
 7172|    249|            range_present |= NX_NAT_RANGE_IPV4_MAX;
 7173|    249|        }
 7174|  4.39k|    } else if (nat->range_af == AF_INET6) {
  ------------------
  |  Branch (7174:16): [True: 2.84k, False: 1.54k]
  ------------------
 7175|  2.84k|        if (!ipv6_mask_is_any(&nat->range.addr.ipv6.min)) {
  ------------------
  |  Branch (7175:13): [True: 1.51k, False: 1.32k]
  ------------------
 7176|  1.51k|            struct in6_addr *min = ofpbuf_put_uninit(out, sizeof *min);
 7177|  1.51k|            *min = nat->range.addr.ipv6.min;
 7178|  1.51k|            range_present |= NX_NAT_RANGE_IPV6_MIN;
 7179|  1.51k|        }
 7180|  2.84k|        if (!ipv6_mask_is_any(&nat->range.addr.ipv6.max)) {
  ------------------
  |  Branch (7180:13): [True: 1.12k, False: 1.72k]
  ------------------
 7181|  1.12k|            struct in6_addr *max = ofpbuf_put_uninit(out, sizeof *max);
 7182|  1.12k|            *max = nat->range.addr.ipv6.max;
 7183|  1.12k|            range_present |= NX_NAT_RANGE_IPV6_MAX;
 7184|  1.12k|        }
 7185|  2.84k|    }
 7186|  5.06k|    if (nat->range_af != AF_UNSPEC) {
  ------------------
  |  Branch (7186:9): [True: 3.52k, False: 1.54k]
  ------------------
 7187|  3.52k|        if (nat->range.proto.min) {
  ------------------
  |  Branch (7187:13): [True: 791, False: 2.72k]
  ------------------
 7188|    791|            ovs_be16 *min = ofpbuf_put_uninit(out, sizeof *min);
 7189|    791|            *min = htons(nat->range.proto.min);
 7190|    791|            range_present |= NX_NAT_RANGE_PROTO_MIN;
 7191|    791|        }
 7192|  3.52k|        if (nat->range.proto.max) {
  ------------------
  |  Branch (7192:13): [True: 365, False: 3.15k]
  ------------------
 7193|    365|            ovs_be16 *max = ofpbuf_put_uninit(out, sizeof *max);
 7194|    365|            *max = htons(nat->range.proto.max);
 7195|    365|            range_present |= NX_NAT_RANGE_PROTO_MAX;
 7196|    365|        }
 7197|  3.52k|    }
 7198|  5.06k|    pad_ofpat(out, ofs);
 7199|  5.06k|    nan = ofpbuf_at(out, ofs, sizeof *nan);
 7200|       |    nan->range_present = htons(range_present);
 7201|  5.06k|}
ofp-actions.c:encode_OUTPUT_TRUNC:
 7522|    938|{
 7523|    938|    struct nx_action_output_trunc *natrc = put_NXAST_OUTPUT_TRUNC(out);
 7524|       |
 7525|    938|    natrc->max_len = htonl(output_trunc->max_len);
 7526|       |    natrc->port = htons(ofp_to_u16(output_trunc->port));
 7527|    938|}
ofp-actions.c:encode_CLONE:
 6074|  6.19k|{
 6075|  6.19k|    size_t len;
 6076|  6.19k|    const size_t ofs = out->size;
 6077|  6.19k|    struct ext_action_header *eah;
 6078|       |
 6079|  6.19k|    put_NXAST_CLONE(out);
 6080|  6.19k|    len = ofpacts_put_openflow_actions(clone->actions,
 6081|  6.19k|                                       ofpact_nest_get_action_len(clone),
 6082|  6.19k|                                       out, ofp_version);
 6083|  6.19k|    len += sizeof *eah;
 6084|  6.19k|    eah = ofpbuf_at(out, ofs, sizeof *eah);
 6085|       |    eah->len = htons(len);
 6086|  6.19k|}
ofp-actions.c:encode_CHECK_PKT_LARGER:
 7851|    407|{
 7852|    407|    struct nx_action_check_pkt_larger *ncpl = put_NXAST_CHECK_PKT_LARGER(out);
 7853|    407|    ncpl->pkt_len = htons(check_pkt_larger->pkt_len);
 7854|    407|    ncpl->offset = htons(check_pkt_larger->dst.ofs);
 7855|       |
 7856|    407|    if (check_pkt_larger->dst.field) {
  ------------------
  |  Branch (7856:9): [True: 407, False: 0]
  ------------------
 7857|    407|        size_t size = out->size;
 7858|    407|        out->size = size - sizeof ncpl->pad;
 7859|       |        nx_put_mff_header(out, check_pkt_larger->dst.field, 0, false);
 7860|    407|        out->size = size;
 7861|    407|    }
 7862|    407|}
ofp-actions.c:encode_DEBUG_RECIRC:
 6590|    834|{
 6591|    834|    put_NXAST_DEBUG_RECIRC(out);
 6592|    834|}
ofp-actions.c:encode_DEBUG_SLOW:
 6630|  1.77k|{
 6631|  1.77k|    put_NXAST_DEBUG_SLOW(out);
 6632|  1.77k|}
ofp-actions.c:encode_METER:
 7575|    126|{
 7576|    126|    if (ofp_version == OFP13_VERSION || ofp_version == OFP14_VERSION) {
  ------------------
  |  Branch (7576:9): [True: 121, False: 5]
  |  Branch (7576:41): [True: 0, False: 5]
  ------------------
 7577|    121|        instruction_put_OFPIT13_METER(out)->meter_id = htonl(meter->meter_id);
 7578|    121|    } else if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (7578:16): [True: 0, False: 5]
  ------------------
 7579|      0|        put_OFPAT15_METER(out, meter->meter_id);
 7580|      0|    }
 7581|    126|}
ofp-actions.c:instruction_put_OFPIT13_METER:
  405|    121|    {                                                           \
  406|    121|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|    121|        instruction_init_##ENUM(s);                             \
  408|    121|        return s;                                               \
  409|    121|    }
ofp-actions.c:encode_CLEAR_ACTIONS:
 7612|      8|{
 7613|      8|    if (ofp_version > OFP10_VERSION) {
  ------------------
  |  Branch (7613:9): [True: 4, False: 4]
  ------------------
 7614|      4|        instruction_put_OFPIT11_CLEAR_ACTIONS(out);
 7615|      4|    }
 7616|      8|}
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|     58|{
 7645|     58|    if (ofp_version > OFP10_VERSION) {
  ------------------
  |  Branch (7645:9): [True: 49, False: 9]
  ------------------
 7646|     49|        const size_t ofs = out->size;
 7647|       |
 7648|     49|        instruction_put_OFPIT11_WRITE_ACTIONS(out);
 7649|     49|        ofpacts_put_openflow_actions(actions->actions,
 7650|     49|                                     ofpact_nest_get_action_len(actions),
 7651|     49|                                     out, ofp_version);
 7652|     49|        ofpacts_update_instruction_actions(out, ofs);
 7653|     49|    }
 7654|     58|}
ofp-actions.c:instruction_put_OFPIT11_WRITE_ACTIONS:
  405|     49|    {                                                           \
  406|     49|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|     49|        instruction_init_##ENUM(s);                             \
  408|     49|        return s;                                               \
  409|     49|    }
ofp-actions.c:encode_WRITE_METADATA:
 7740|     11|{
 7741|     11|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (7741:9): [True: 6, False: 5]
  ------------------
 7742|      6|        struct nx_action_write_metadata *nawm;
 7743|       |
 7744|      6|        nawm = put_NXAST_WRITE_METADATA(out);
 7745|      6|        nawm->metadata = metadata->metadata;
 7746|      6|        nawm->mask = metadata->mask;
 7747|      6|    } else {
 7748|      5|        struct ofp11_instruction_write_metadata *oiwm;
 7749|       |
 7750|      5|        oiwm = instruction_put_OFPIT11_WRITE_METADATA(out);
 7751|      5|        oiwm->metadata = metadata->metadata;
 7752|      5|        oiwm->metadata_mask = metadata->mask;
 7753|      5|    }
 7754|     11|}
ofp-actions.c:instruction_put_OFPIT11_WRITE_METADATA:
  405|      5|    {                                                           \
  406|      5|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|      5|        instruction_init_##ENUM(s);                             \
  408|      5|        return s;                                               \
  409|      5|    }
ofp-actions.c:encode_GOTO_TABLE:
 7921|      8|{
 7922|      8|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (7922:9): [True: 6, False: 2]
  ------------------
 7923|      6|        struct nx_action_resubmit *nar;
 7924|       |
 7925|      6|        nar = put_NXAST_RESUBMIT_TABLE(out);
 7926|      6|        nar->table = goto_table->table_id;
 7927|      6|        nar->in_port = htons(ofp_to_u16(OFPP_IN_PORT));
 7928|      6|    } 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|      8|}
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|  45.7k|{
 9108|  45.7k|    return (ovs_instruction_type_from_ofpact_type(a->type, version)
 9109|  45.7k|            == OVSINST_OFPIT11_APPLY_ACTIONS);
 9110|  45.7k|}
ofp-actions.c:instruction_put_OFPIT11_APPLY_ACTIONS:
  405|    550|    {                                                           \
  406|    550|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|    550|        instruction_init_##ENUM(s);                             \
  408|    550|        return s;                                               \
  409|    550|    }
ofp-actions.c:ofpacts_update_instruction_actions:
 8766|    599|{
 8767|    599|    struct ofp11_instruction_actions *oia;
 8768|       |
 8769|    599|    oia = ofpbuf_at_assert(openflow, ofs, sizeof *oia);
 8770|    599|    if (openflow->size > ofs + sizeof *oia) {
  ------------------
  |  Branch (8770:9): [True: 594, False: 5]
  ------------------
 8771|    594|        oia->len = htons(openflow->size - ofs);
 8772|    594|    } else {
 8773|      5|        openflow->size = ofs;
 8774|      5|    }
 8775|    599|}
ofp-actions.c:ofpacts_parse_copy:
 9676|  25.1k|{
 9677|  25.1k|    char *error, *s;
 9678|       |
 9679|  25.1k|    *pp->usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  25.1k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 9680|       |
 9681|  25.1k|    s = xstrdup(s_);
 9682|  25.1k|    error = ofpacts_parse(s, pp, allow_instructions, outer_action);
 9683|  25.1k|    free(s);
 9684|       |
 9685|  25.1k|    return error;
 9686|  25.1k|}
ofp-actions.c:ofpacts_parse:
 9659|  25.9k|{
 9660|  25.9k|    if (pp->depth >= MAX_OFPACT_PARSE_DEPTH) {
  ------------------
  |  | 1221|  25.9k|#define MAX_OFPACT_PARSE_DEPTH 100
  ------------------
  |  Branch (9660:9): [True: 4, False: 25.9k]
  ------------------
 9661|      4|        return xstrdup("Action nested too deeply");
 9662|      4|    }
 9663|  25.9k|    CONST_CAST(struct ofpact_parse_params *, pp)->depth++;
  ------------------
  |  |   85|  25.9k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  25.9k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  25.9k|     (TYPE) (POINTER))
  ------------------
 9664|  25.9k|    uint32_t orig_size = pp->ofpacts->size;
 9665|  25.9k|    char *error = ofpacts_parse__(str, pp, allow_instructions, outer_action);
 9666|  25.9k|    if (error) {
  ------------------
  |  Branch (9666:9): [True: 10.2k, False: 15.6k]
  ------------------
 9667|  10.2k|        ofpbuf_truncate(pp->ofpacts, orig_size);
 9668|  10.2k|    }
 9669|  25.9k|    CONST_CAST(struct ofpact_parse_params *, pp)->depth--;
  ------------------
  |  |   85|  25.9k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  25.9k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  25.9k|     (TYPE) (POINTER))
  ------------------
 9670|  25.9k|    return error;
 9671|  25.9k|}
ofp-actions.c:ofpacts_parse__:
 9586|  25.9k|{
 9587|  25.9k|    uint32_t orig_size = pp->ofpacts->size;
 9588|  25.9k|    char *key, *value;
 9589|  25.9k|    bool drop = false;
 9590|  25.9k|    char *pos;
 9591|       |
 9592|  25.9k|    pos = str;
 9593|   347k|    while (ofputil_parse_key_value(&pos, &key, &value)) {
  ------------------
  |  Branch (9593:12): [True: 331k, False: 15.8k]
  ------------------
 9594|   331k|        enum ofpact_type type;
 9595|   331k|        char *error = NULL;
 9596|   331k|        ofp_port_t port;
 9597|   331k|        if (ofpact_type_from_name(key, &type)) {
  ------------------
  |  Branch (9597:13): [True: 189k, False: 142k]
  ------------------
 9598|   189k|            error = ofpact_parse(type, value, pp);
 9599|       |
 9600|   189k|            if (type == OFPACT_METER && !allow_instructions) {
  ------------------
  |  Branch (9600:17): [True: 594, False: 188k]
  |  Branch (9600:41): [True: 198, False: 396]
  ------------------
 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|    198|                *pp->usable_protocols &= OFPUTIL_P_OF15_UP;
  ------------------
  |  |   97|    198|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  ------------------
 9605|    198|            }
 9606|   189k|        } else if (!strcasecmp(key, "mod_vlan_vid")) {
  ------------------
  |  Branch (9606:20): [True: 827, False: 141k]
  ------------------
 9607|    827|            error = parse_set_vlan_vid(value, true, pp);
 9608|   141k|        } else if (!strcasecmp(key, "mod_vlan_pcp")) {
  ------------------
  |  Branch (9608:20): [True: 740, False: 141k]
  ------------------
 9609|    740|            error = parse_set_vlan_pcp(value, true, pp);
 9610|   141k|        } else if (!strcasecmp(key, "set_nw_ttl")) {
  ------------------
  |  Branch (9610:20): [True: 686, False: 140k]
  ------------------
 9611|    686|            error = parse_SET_IP_TTL(value, pp);
 9612|   140k|        } else if (!strcasecmp(key, "pop_vlan")) {
  ------------------
  |  Branch (9612:20): [True: 2.15k, False: 138k]
  ------------------
 9613|  2.15k|            error = parse_pop_vlan(pp);
 9614|   138k|        } else if (!strcasecmp(key, "set_tunnel64")) {
  ------------------
  |  Branch (9614:20): [True: 501, False: 137k]
  ------------------
 9615|    501|            error = parse_set_tunnel(value, NXAST_RAW_SET_TUNNEL64, pp);
 9616|   137k|        } else if (!strcasecmp(key, "load")) {
  ------------------
  |  Branch (9616:20): [True: 592, False: 137k]
  ------------------
 9617|    592|            error = parse_reg_load(value, pp);
 9618|   137k|        } else if (!strcasecmp(key, "bundle_load")) {
  ------------------
  |  Branch (9618:20): [True: 15, False: 137k]
  ------------------
 9619|     15|            error = parse_bundle_load(value, pp);
 9620|   137k|        } else if (!strcasecmp(key, "drop")) {
  ------------------
  |  Branch (9620:20): [True: 583, False: 136k]
  ------------------
 9621|    583|            drop = true;
 9622|   136k|        } else if (!strcasecmp(key, "apply_actions")) {
  ------------------
  |  Branch (9622:20): [True: 1, False: 136k]
  ------------------
 9623|      1|            return xstrdup("apply_actions is the default instruction");
 9624|   136k|        } else if (ofputil_port_from_string(key, pp->port_map, &port)) {
  ------------------
  |  Branch (9624:20): [True: 132k, False: 3.67k]
  ------------------
 9625|   132k|            ofpact_put_OUTPUT(pp->ofpacts)->port = port;
 9626|   132k|        } else {
 9627|  3.67k|            return xasprintf("unknown action %s", key);
 9628|  3.67k|        }
 9629|   328k|        if (error) {
  ------------------
  |  Branch (9629:13): [True: 6.38k, False: 321k]
  ------------------
 9630|  6.38k|            return error;
 9631|  6.38k|        }
 9632|   321k|        if (pp->ofpacts->size - orig_size > UINT16_MAX) {
  ------------------
  |  Branch (9632:13): [True: 9, False: 321k]
  ------------------
 9633|      9|            return xasprintf("input too big");
 9634|      9|        }
 9635|   321k|    }
 9636|       |
 9637|  15.8k|    if (drop && pp->ofpacts->size) {
  ------------------
  |  Branch (9637:9): [True: 369, False: 15.4k]
  |  Branch (9637:17): [True: 6, False: 363]
  ------------------
 9638|      6|        return xstrdup("\"drop\" must not be accompanied by any other action "
 9639|      6|                       "or instruction");
 9640|      6|    }
 9641|       |
 9642|  15.8k|    char *error = NULL;
 9643|  15.8k|    ofpacts_verify(pp->ofpacts->data, pp->ofpacts->size, OFP11_VERSION,
 9644|  15.8k|                   (allow_instructions
  ------------------
  |  Branch (9644:21): [True: 6.88k, False: 8.94k]
  ------------------
 9645|  15.8k|                    ? (1u << N_OVS_INSTRUCTIONS) - 1
 9646|  15.8k|                    : ((1u << OVSINST_OFPIT11_APPLY_ACTIONS)
 9647|  8.94k|                       | (1u << OVSINST_OFPIT13_METER))),
 9648|  15.8k|                   outer_action, &error);
 9649|  15.8k|    if (error) {
  ------------------
  |  Branch (9649:9): [True: 189, False: 15.6k]
  ------------------
 9650|    189|        return error;
 9651|    189|    }
 9652|       |
 9653|  15.6k|    return NULL;
 9654|  15.8k|}
ofp-actions.c:ofpact_type_from_name:
 9564|   331k|{
 9565|   331k|#define OFPACT(ENUM, STRUCT, MEMBER, NAME)                            \
 9566|   331k|    if (!strcasecmp(name, NAME)) {                                    \
 9567|   331k|        *type = OFPACT_##ENUM;                                          \
 9568|   331k|        return true;                                                    \
 9569|   331k|    }
 9570|   331k|    OFPACTS
  ------------------
  |  |   64|   331k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9566|   331k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.92k, False: 329k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.92k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.92k|        return true;                                                    \
  |  |  |  | 9569|  1.92k|    }
  |  |  ------------------
  |  |   65|   331k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9566|   329k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 235, False: 329k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    235|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    235|        return true;                                                    \
  |  |  |  | 9569|    235|    }
  |  |  ------------------
  |  |   66|   329k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9566|   329k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 9.51k, False: 320k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  9.51k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  9.51k|        return true;                                                    \
  |  |  |  | 9569|  9.51k|    }
  |  |  ------------------
  |  |   67|   329k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9566|   320k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.21k, False: 318k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.21k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.21k|        return true;                                                    \
  |  |  |  | 9569|  1.21k|    }
  |  |  ------------------
  |  |   68|   320k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9566|   318k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 463, False: 318k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    463|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    463|        return true;                                                    \
  |  |  |  | 9569|    463|    }
  |  |  ------------------
  |  |   69|   318k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9566|   318k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 3.09k, False: 315k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  3.09k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  3.09k|        return true;                                                    \
  |  |  |  | 9569|  3.09k|    }
  |  |  ------------------
  |  |   70|   318k|                                                                        \
  |  |   71|   318k|    /* Header changes. */                                               \
  |  |   72|   318k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9566|   315k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 45.8k, False: 269k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  45.8k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  45.8k|        return true;                                                    \
  |  |  |  | 9569|  45.8k|    }
  |  |  ------------------
  |  |   73|   315k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9566|   269k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.04k, False: 268k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.04k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.04k|        return true;                                                    \
  |  |  |  | 9569|  1.04k|    }
  |  |  ------------------
  |  |   74|   269k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9566|   268k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 901, False: 267k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    901|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    901|        return true;                                                    \
  |  |  |  | 9569|    901|    }
  |  |  ------------------
  |  |   75|   268k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9566|   267k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 492, False: 267k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    492|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    492|        return true;                                                    \
  |  |  |  | 9569|    492|    }
  |  |  ------------------
  |  |   76|   267k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9566|   267k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.30k, False: 265k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.30k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.30k|        return true;                                                    \
  |  |  |  | 9569|  1.30k|    }
  |  |  ------------------
  |  |   77|   267k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9566|   265k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 459, False: 265k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    459|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    459|        return true;                                                    \
  |  |  |  | 9569|    459|    }
  |  |  ------------------
  |  |   78|   265k|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   265k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 640, False: 264k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    640|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    640|        return true;                                                    \
  |  |  |  | 9569|    640|    }
  |  |  ------------------
  |  |   79|   265k|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9566|   264k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 865, False: 263k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    865|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    865|        return true;                                                    \
  |  |  |  | 9569|    865|    }
  |  |  ------------------
  |  |   80|   264k|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   263k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 749, False: 263k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    749|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    749|        return true;                                                    \
  |  |  |  | 9569|    749|    }
  |  |  ------------------
  |  |   81|   263k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9566|   263k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.30k, False: 261k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.30k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.30k|        return true;                                                    \
  |  |  |  | 9569|  1.30k|    }
  |  |  ------------------
  |  |   82|   263k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9566|   261k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.59k, False: 260k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.59k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.59k|        return true;                                                    \
  |  |  |  | 9569|  1.59k|    }
  |  |  ------------------
  |  |   83|   261k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9566|   260k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.47k, False: 258k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.47k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.47k|        return true;                                                    \
  |  |  |  | 9569|  1.47k|    }
  |  |  ------------------
  |  |   84|   260k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9566|   258k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.11k, False: 256k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.11k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.11k|        return true;                                                    \
  |  |  |  | 9569|  2.11k|    }
  |  |  ------------------
  |  |   85|   258k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   256k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.13k, False: 254k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.13k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.13k|        return true;                                                    \
  |  |  |  | 9569|  2.13k|    }
  |  |  ------------------
  |  |   86|   256k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9566|   254k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 431, False: 254k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    431|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    431|        return true;                                                    \
  |  |  |  | 9569|    431|    }
  |  |  ------------------
  |  |   87|   254k|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9566|   254k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 509, False: 253k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    509|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    509|        return true;                                                    \
  |  |  |  | 9569|    509|    }
  |  |  ------------------
  |  |   88|   254k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9566|   253k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.16k, False: 251k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.16k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.16k|        return true;                                                    \
  |  |  |  | 9569|  2.16k|    }
  |  |  ------------------
  |  |   89|   253k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9566|   251k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.85k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.85k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.85k|        return true;                                                    \
  |  |  |  | 9569|  2.85k|    }
  |  |  ------------------
  |  |   90|   251k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9566|   248k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.72k, False: 245k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.72k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.72k|        return true;                                                    \
  |  |  |  | 9569|  2.72k|    }
  |  |  ------------------
  |  |   91|   248k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9566|   245k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.30k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.30k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.30k|        return true;                                                    \
  |  |  |  | 9569|  1.30k|    }
  |  |  ------------------
  |  |   92|   245k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9566|   244k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 882, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    882|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    882|        return true;                                                    \
  |  |  |  | 9569|    882|    }
  |  |  ------------------
  |  |   93|   244k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9566|   243k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.87k, False: 240k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.87k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.87k|        return true;                                                    \
  |  |  |  | 9569|  2.87k|    }
  |  |  ------------------
  |  |   94|   243k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9566|   240k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 629, False: 240k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    629|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    629|        return true;                                                    \
  |  |  |  | 9569|    629|    }
  |  |  ------------------
  |  |   95|   240k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9566|   240k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.12k, False: 237k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.12k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.12k|        return true;                                                    \
  |  |  |  | 9569|  2.12k|    }
  |  |  ------------------
  |  |   96|   240k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9566|   237k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.23k, False: 236k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.23k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.23k|        return true;                                                    \
  |  |  |  | 9569|  1.23k|    }
  |  |  ------------------
  |  |   97|   237k|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9566|   236k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 332, False: 236k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    332|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    332|        return true;                                                    \
  |  |  |  | 9569|    332|    }
  |  |  ------------------
  |  |   98|   236k|                                                                        \
  |  |   99|   236k|    /* Generic encap & decap */                                         \
  |  |  100|   236k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9566|   236k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.32k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.32k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.32k|        return true;                                                    \
  |  |  |  | 9569|  2.32k|    }
  |  |  ------------------
  |  |  101|   236k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9566|   234k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.38k, False: 231k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.38k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.38k|        return true;                                                    \
  |  |  |  | 9569|  2.38k|    }
  |  |  ------------------
  |  |  102|   234k|                                                                        \
  |  |  103|   234k|    /* Metadata. */                                                     \
  |  |  104|   234k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9566|   231k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 749, False: 230k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    749|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    749|        return true;                                                    \
  |  |  |  | 9569|    749|    }
  |  |  ------------------
  |  |  105|   231k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9566|   230k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 212, False: 230k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    212|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    212|        return true;                                                    \
  |  |  |  | 9569|    212|    }
  |  |  ------------------
  |  |  106|   230k|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9566|   230k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 784, False: 229k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    784|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    784|        return true;                                                    \
  |  |  |  | 9569|    784|    }
  |  |  ------------------
  |  |  107|   230k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9566|   229k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.39k, False: 228k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.39k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.39k|        return true;                                                    \
  |  |  |  | 9569|  1.39k|    }
  |  |  ------------------
  |  |  108|   229k|                                                                        \
  |  |  109|   229k|    /* Flow table interaction. */                                       \
  |  |  110|   229k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9566|   228k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.64k, False: 226k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.64k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.64k|        return true;                                                    \
  |  |  |  | 9569|  1.64k|    }
  |  |  ------------------
  |  |  111|   228k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9566|   226k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 34.9k, False: 192k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  34.9k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  34.9k|        return true;                                                    \
  |  |  |  | 9569|  34.9k|    }
  |  |  ------------------
  |  |  112|   226k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9566|   192k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 564, False: 191k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    564|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    564|        return true;                                                    \
  |  |  |  | 9569|    564|    }
  |  |  ------------------
  |  |  113|   192k|                                                                        \
  |  |  114|   192k|    /* Arithmetic. */                                                   \
  |  |  115|   192k|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9566|   191k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.68k, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.68k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.68k|        return true;                                                    \
  |  |  |  | 9569|  2.68k|    }
  |  |  ------------------
  |  |  116|   191k|                                                                        \
  |  |  117|   191k|    /* Other. */                                                        \
  |  |  118|   191k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9566|   188k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.30k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.30k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.30k|        return true;                                                    \
  |  |  |  | 9569|  2.30k|    }
  |  |  ------------------
  |  |  119|   188k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9566|   186k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.15k, False: 185k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.15k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.15k|        return true;                                                    \
  |  |  |  | 9569|  1.15k|    }
  |  |  ------------------
  |  |  120|   186k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9566|   185k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.06k, False: 183k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.06k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.06k|        return true;                                                    \
  |  |  |  | 9569|  2.06k|    }
  |  |  ------------------
  |  |  121|   185k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9566|   183k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1, False: 183k]
  |  |  |  |  ------------------
  |  |  |  | 9567|      1|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|      1|        return true;                                                    \
  |  |  |  | 9569|      1|    }
  |  |  ------------------
  |  |  122|   183k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9566|   183k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 11.1k, False: 172k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  11.1k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  11.1k|        return true;                                                    \
  |  |  |  | 9569|  11.1k|    }
  |  |  ------------------
  |  |  123|   183k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9566|   172k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.63k, False: 169k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.63k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.63k|        return true;                                                    \
  |  |  |  | 9569|  2.63k|    }
  |  |  ------------------
  |  |  124|   172k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9566|   169k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 12.0k, False: 157k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  12.0k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  12.0k|        return true;                                                    \
  |  |  |  | 9569|  12.0k|    }
  |  |  ------------------
  |  |  125|   169k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9566|   157k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1, False: 157k]
  |  |  |  |  ------------------
  |  |  |  | 9567|      1|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|      1|        return true;                                                    \
  |  |  |  | 9569|      1|    }
  |  |  ------------------
  |  |  126|   157k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9566|   157k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 8.92k, False: 148k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  8.92k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  8.92k|        return true;                                                    \
  |  |  |  | 9569|  8.92k|    }
  |  |  ------------------
  |  |  127|   157k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9566|   148k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 559, False: 147k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    559|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    559|        return true;                                                    \
  |  |  |  | 9569|    559|    }
  |  |  ------------------
  |  |  128|   148k|           "check_pkt_larger")                                          \
  |  |  129|   148k|                                                                        \
  |  |  130|   148k|    /* Debugging actions.                                               \
  |  |  131|   148k|     *                                                                  \
  |  |  132|   148k|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|   148k|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|   148k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9566|   147k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.11k, False: 146k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.11k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.11k|        return true;                                                    \
  |  |  |  | 9569|  1.11k|    }
  |  |  ------------------
  |  |  135|   147k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9566|   146k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.80k, False: 144k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.80k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.80k|        return true;                                                    \
  |  |  |  | 9569|  1.80k|    }
  |  |  ------------------
  |  |  136|   146k|                                                                        \
  |  |  137|   146k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|   146k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9566|   144k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 594, False: 144k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    594|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    594|        return true;                                                    \
  |  |  |  | 9569|    594|    }
  |  |  ------------------
  |  |  139|   144k|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9566|   144k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 254, False: 144k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    254|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    254|        return true;                                                    \
  |  |  |  | 9569|    254|    }
  |  |  ------------------
  |  |  140|   144k|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9566|   144k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 789, False: 143k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    789|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    789|        return true;                                                    \
  |  |  |  | 9569|    789|    }
  |  |  ------------------
  |  |  141|   144k|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9566|   143k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 432, False: 142k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    432|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    432|        return true;                                                    \
  |  |  |  | 9569|    432|    }
  |  |  ------------------
  |  |  142|   143k|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9566|   142k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 214, False: 142k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    214|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    214|        return true;                                                    \
  |  |  |  | 9569|    214|    }
  |  |  ------------------
  ------------------
 9571|   142k|#undef OFPACT
 9572|       |
 9573|   142k|    return false;
 9574|  13.2M|}
ofp-actions.c:ofpact_parse:
 9550|   189k|{
 9551|   189k|    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|  1.92k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9553|  1.92k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.92k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.92k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   65|  1.92k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9553|    235|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 235, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    235|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   66|  9.51k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9553|  9.51k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 9.51k, False: 179k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  9.51k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   67|  9.51k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9553|  1.21k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.21k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.21k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   68|  1.21k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9553|    463|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 463, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    463|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   69|  3.09k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9553|  3.09k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 3.09k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  3.09k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   70|  3.09k|                                                                        \
  |  |   71|  3.09k|    /* Header changes. */                                               \
  |  |   72|  45.8k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9553|  45.8k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 45.8k, False: 143k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  45.8k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   73|  45.8k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9553|  1.04k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.04k, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.04k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   74|  1.04k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9553|    901|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 901, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    901|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   75|    901|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9553|    492|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 492, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    492|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   76|  1.30k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9553|  1.30k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.30k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.30k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   77|  1.30k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9553|    459|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 459, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    459|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   78|    640|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9553|    640|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 640, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    640|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   79|    865|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9553|    865|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 865, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    865|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   80|    865|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9553|    749|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 749, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    749|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   81|  1.30k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9553|  1.30k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.30k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.30k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   82|  1.59k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9553|  1.59k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.59k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.59k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   83|  1.59k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9553|  1.47k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.47k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.47k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   84|  2.11k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9553|  2.11k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.11k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.11k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   85|  2.13k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9553|  2.13k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.13k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.13k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   86|  2.13k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9553|    431|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 431, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    431|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   87|    509|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9553|    509|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 509, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    509|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   88|  2.16k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9553|  2.16k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.16k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.16k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   89|  2.85k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9553|  2.85k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.85k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.85k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   90|  2.85k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9553|  2.72k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.72k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.72k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   91|  2.72k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9553|  1.30k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.30k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.30k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   92|  1.30k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9553|    882|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 882, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    882|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   93|  2.87k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9553|  2.87k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.87k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.87k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   94|  2.87k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9553|    629|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 629, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    629|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   95|  2.12k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9553|  2.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.12k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.12k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   96|  2.12k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9553|  1.23k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.23k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.23k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   97|  1.23k|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9553|    332|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 332, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    332|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   98|    332|                                                                        \
  |  |   99|    332|    /* Generic encap & decap */                                         \
  |  |  100|  2.32k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9553|  2.32k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.32k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.32k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  101|  2.38k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9553|  2.38k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.38k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.38k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  102|  2.38k|                                                                        \
  |  |  103|  2.38k|    /* Metadata. */                                                     \
  |  |  104|  2.38k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9553|    749|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 749, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    749|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  105|    749|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9553|    212|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 212, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    212|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  106|    784|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9553|    784|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 784, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    784|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  107|  1.39k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9553|  1.39k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.39k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.39k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  108|  1.39k|                                                                        \
  |  |  109|  1.39k|    /* Flow table interaction. */                                       \
  |  |  110|  1.64k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9553|  1.64k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.64k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.64k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  111|  34.9k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9553|  34.9k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 34.9k, False: 154k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  34.9k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  112|  34.9k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9553|    564|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 564, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    564|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  113|    564|                                                                        \
  |  |  114|    564|    /* Arithmetic. */                                                   \
  |  |  115|  2.68k|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9553|  2.68k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.68k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.68k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  116|  2.68k|                                                                        \
  |  |  117|  2.68k|    /* Other. */                                                        \
  |  |  118|  2.68k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9553|  2.30k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.30k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.30k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  119|  2.30k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9553|  1.15k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.15k, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.15k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  120|  2.06k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9553|  2.06k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.06k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.06k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  121|  2.06k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9553|      1|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1, False: 189k]
  |  |  |  |  ------------------
  |  |  |  | 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: 178k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  11.1k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  123|  11.1k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9553|  2.63k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.63k, False: 186k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.63k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  124|  12.0k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9553|  12.0k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 12.0k, False: 177k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  12.0k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  125|  12.0k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9553|      1|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1, False: 189k]
  |  |  |  |  ------------------
  |  |  |  | 9554|      1|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  126|  8.92k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9553|  8.92k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 8.92k, False: 180k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  8.92k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  127|  8.92k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9553|    559|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 559, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    559|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  128|    559|           "check_pkt_larger")                                          \
  |  |  129|    559|                                                                        \
  |  |  130|    559|    /* Debugging actions.                                               \
  |  |  131|    559|     *                                                                  \
  |  |  132|    559|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    559|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|  1.11k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9553|  1.11k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.11k, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.11k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  135|  1.80k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9553|  1.80k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.80k, False: 187k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.80k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  136|  1.80k|                                                                        \
  |  |  137|  1.80k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  1.80k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9553|    594|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 594, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    594|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  139|    594|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9553|    254|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 254, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    254|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  140|    789|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9553|    789|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 789, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    789|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  141|    789|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9553|    432|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 432, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    432|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  142|    432|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9553|    214|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 214, False: 188k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    214|            return parse_##ENUM(value, pp);
  |  |  ------------------
  ------------------
 9556|      0|#undef OFPACT
 9557|      0|    default:
  ------------------
  |  Branch (9557:5): [True: 0, False: 189k]
  ------------------
 9558|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9559|   189k|    }
 9560|   189k|}
ofp-actions.c:parse_OUTPUT:
  670|  2.38k|{
  671|  2.38k|    if (strstr(arg, "port") && strstr(arg, "max_len")) {
  ------------------
  |  Branch (671:9): [True: 1.23k, False: 1.15k]
  |  Branch (671:32): [True: 1.00k, False: 227]
  ------------------
  672|  1.00k|        struct ofpact_output_trunc *output_trunc;
  673|       |
  674|  1.00k|        output_trunc = ofpact_put_OUTPUT_TRUNC(pp->ofpacts);
  675|  1.00k|        return parse_truncate_subfield(arg, pp, output_trunc);
  676|  1.00k|    }
  677|       |
  678|  1.38k|    ofp_port_t port;
  679|  1.38k|    if (ofputil_port_from_string(arg, pp->port_map, &port)) {
  ------------------
  |  Branch (679:9): [True: 642, False: 740]
  ------------------
  680|    642|        struct ofpact_output *output = ofpact_put_OUTPUT(pp->ofpacts);
  681|    642|        output->port = port;
  682|    642|        output->max_len = output->port == OFPP_CONTROLLER ? UINT16_MAX : 0;
  ------------------
  |  |   45|    642|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|    642|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (682:27): [True: 0, False: 642]
  ------------------
  683|    642|        return NULL;
  684|    642|    }
  685|       |
  686|    740|    struct mf_subfield src;
  687|    740|    char *error = mf_parse_subfield(&src, arg);
  688|    740|    if (!error) {
  ------------------
  |  Branch (688:9): [True: 720, False: 20]
  ------------------
  689|    720|        struct ofpact_output_reg *output_reg;
  690|       |
  691|    720|        output_reg = ofpact_put_OUTPUT_REG(pp->ofpacts);
  692|    720|        output_reg->max_len = UINT16_MAX;
  693|    720|        output_reg->src = src;
  694|    720|        return NULL;
  695|    720|    }
  696|     20|    free(error);
  697|       |
  698|     20|    return xasprintf("%s: output to unknown port", arg);
  699|    740|}
ofp-actions.c:parse_truncate_subfield:
  630|  1.00k|{
  631|  1.00k|    char *key, *value;
  632|  1.00k|    char *arg = CONST_CAST(char *, arg_);
  ------------------
  |  |   85|  1.00k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  1.00k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  1.00k|     (TYPE) (POINTER))
  ------------------
  633|       |
  634|  4.10k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (634:12): [True: 3.17k, False: 938]
  ------------------
  635|  3.17k|        if (!strcmp(key, "port")) {
  ------------------
  |  Branch (635:13): [True: 1.91k, False: 1.25k]
  ------------------
  636|  1.91k|            if (!ofputil_port_from_string(value, pp->port_map,
  ------------------
  |  Branch (636:17): [True: 5, False: 1.91k]
  ------------------
  637|  1.91k|                                          &output_trunc->port)) {
  638|      5|                return xasprintf("output to unknown truncate port: %s",
  639|      5|                                  value);
  640|      5|            }
  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: 735, False: 1.17k]
  ------------------
  642|    735|                if (output_trunc->port != OFPP_LOCAL &&
  ------------------
  |  |   46|    735|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|  1.47k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (642:21): [True: 541, False: 194]
  ------------------
  643|    541|                    output_trunc->port != OFPP_IN_PORT)
  ------------------
  |  |   39|    541|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    541|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (643:21): [True: 9, False: 532]
  ------------------
  644|      9|                return xasprintf("output to unsupported truncate port: %s",
  645|      9|                                 value);
  646|    735|            }
  647|  1.91k|        } else if (!strcmp(key, "max_len")) {
  ------------------
  |  Branch (647:20): [True: 1.22k, False: 27]
  ------------------
  648|  1.22k|            char *err;
  649|       |
  650|  1.22k|            err = str_to_u32(value, &output_trunc->max_len);
  651|  1.22k|            if (err) {
  ------------------
  |  Branch (651:17): [True: 22, False: 1.20k]
  ------------------
  652|     22|                return err;
  653|     22|            }
  654|       |
  655|  1.20k|            if (output_trunc->max_len < ETH_HEADER_LEN) {
  ------------------
  |  |  439|  1.20k|#define ETH_HEADER_LEN 14
  ------------------
  |  Branch (655:17): [True: 4, False: 1.20k]
  ------------------
  656|      4|                return xasprintf("max_len %"PRIu32" is less than the minimum "
  657|      4|                                 "value %d",
  658|      4|                                 output_trunc->max_len, ETH_HEADER_LEN);
  ------------------
  |  |  439|      4|#define ETH_HEADER_LEN 14
  ------------------
  659|      4|            }
  660|  1.20k|        } else {
  661|     27|            return xasprintf("invalid key '%s' in output_trunc argument",
  662|     27|                                key);
  663|     27|        }
  664|  3.17k|    }
  665|    938|    return NULL;
  666|  1.00k|}
ofp-actions.c:parse_GROUP:
  741|    235|{
  742|    235|    return str_to_u32(arg, &ofpact_put_GROUP(pp->ofpacts)->group_id);
  743|    235|}
ofp-actions.c:parse_CONTROLLER:
  938|  9.51k|{
  939|  9.51k|    enum ofp_packet_in_reason reason = OFPR_ACTION;
  940|  9.51k|    uint16_t controller_id = 0;
  941|  9.51k|    uint16_t max_len = UINT16_MAX;
  942|  9.51k|    uint32_t meter_id = NX_CTLR_NO_METER;
  ------------------
  |  |  307|  9.51k|#define NX_CTLR_NO_METER 0
  ------------------
  943|  9.51k|    const char *userdata = NULL;
  944|  9.51k|    bool pause = false;
  945|       |
  946|  9.51k|    if (!arg[0]) {
  ------------------
  |  Branch (946:9): [True: 319, False: 9.19k]
  ------------------
  947|       |        /* Use defaults. */
  948|  9.19k|    } else if (strspn(arg, "0123456789") == strlen(arg)) {
  ------------------
  |  Branch (948:16): [True: 505, False: 8.69k]
  ------------------
  949|    505|        char *error = str_to_u16(arg, "max_len", &max_len);
  950|    505|        if (error) {
  ------------------
  |  Branch (950:13): [True: 1, False: 504]
  ------------------
  951|      1|            return error;
  952|      1|        }
  953|  8.69k|    } else {
  954|  8.69k|        char *name, *value;
  955|       |
  956|  19.6k|        while (ofputil_parse_key_value(&arg, &name, &value)) {
  ------------------
  |  Branch (956:16): [True: 11.0k, False: 8.58k]
  ------------------
  957|  11.0k|            if (!strcmp(name, "reason")) {
  ------------------
  |  Branch (957:17): [True: 801, False: 10.2k]
  ------------------
  958|    801|                if (!ofputil_packet_in_reason_from_string(value, &reason)) {
  ------------------
  |  Branch (958:21): [True: 69, False: 732]
  ------------------
  959|     69|                    return xasprintf("unknown reason \"%s\"", value);
  960|     69|                }
  961|  10.2k|            } else if (!strcmp(name, "max_len")) {
  ------------------
  |  Branch (961:24): [True: 364, False: 9.87k]
  ------------------
  962|    364|                char *error = str_to_u16(value, "max_len", &max_len);
  963|    364|                if (error) {
  ------------------
  |  Branch (963:21): [True: 1, False: 363]
  ------------------
  964|      1|                    return error;
  965|      1|                }
  966|  9.87k|            } else if (!strcmp(name, "id")) {
  ------------------
  |  Branch (966:24): [True: 1.24k, False: 8.63k]
  ------------------
  967|  1.24k|                char *error = str_to_u16(value, "id", &controller_id);
  968|  1.24k|                if (error) {
  ------------------
  |  Branch (968:21): [True: 5, False: 1.23k]
  ------------------
  969|      5|                    return error;
  970|      5|                }
  971|  8.63k|            } else if (!strcmp(name, "userdata")) {
  ------------------
  |  Branch (971:24): [True: 1.64k, False: 6.99k]
  ------------------
  972|  1.64k|                userdata = value;
  973|  6.99k|            } else if (!strcmp(name, "pause")) {
  ------------------
  |  Branch (973:24): [True: 6.31k, False: 673]
  ------------------
  974|  6.31k|                pause = true;
  975|  6.31k|            } else if (!strcmp(name, "meter_id")) {
  ------------------
  |  Branch (975:24): [True: 639, False: 34]
  ------------------
  976|    639|                char *error = str_to_u32(value, &meter_id);
  977|    639|                if (error) {
  ------------------
  |  Branch (977:21): [True: 1, False: 638]
  ------------------
  978|      1|                    return error;
  979|      1|                }
  980|    639|            } else {
  981|     34|                return xasprintf("unknown key \"%s\" parsing controller "
  982|     34|                                 "action", name);
  983|     34|            }
  984|  11.0k|        }
  985|  8.69k|    }
  986|       |
  987|  9.40k|    if (reason == OFPR_ACTION && controller_id == 0 && !userdata && !pause
  ------------------
  |  Branch (987:9): [True: 8.86k, False: 536]
  |  Branch (987:34): [True: 8.33k, False: 531]
  |  Branch (987:56): [True: 7.09k, False: 1.24k]
  |  Branch (987:69): [True: 1.78k, False: 5.30k]
  ------------------
  988|  1.78k|        && meter_id == NX_CTLR_NO_METER) {
  ------------------
  |  |  307|  1.78k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (988:12): [True: 1.17k, False: 612]
  ------------------
  989|  1.17k|        struct ofpact_output *output;
  990|       |
  991|  1.17k|        output = ofpact_put_OUTPUT(pp->ofpacts);
  992|  1.17k|        output->port = OFPP_CONTROLLER;
  ------------------
  |  |   45|  1.17k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  1.17k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  993|  1.17k|        output->max_len = max_len;
  994|  8.23k|    } else {
  995|  8.23k|        struct ofpact_controller *controller;
  996|       |
  997|  8.23k|        controller = ofpact_put_CONTROLLER(pp->ofpacts);
  998|  8.23k|        controller->max_len = max_len;
  999|  8.23k|        controller->reason = reason;
 1000|  8.23k|        controller->controller_id = controller_id;
 1001|  8.23k|        controller->pause = pause;
 1002|  8.23k|        controller->meter_id = meter_id;
 1003|       |
 1004|  8.23k|        if (userdata) {
  ------------------
  |  Branch (1004:13): [True: 1.24k, False: 6.98k]
  ------------------
 1005|  1.24k|            size_t start_ofs = pp->ofpacts->size;
 1006|  1.24k|            const char *end = ofpbuf_put_hex(pp->ofpacts, userdata, NULL);
 1007|  1.24k|            if (*end) {
  ------------------
  |  Branch (1007:17): [True: 5, False: 1.24k]
  ------------------
 1008|      5|                return xstrdup("bad hex digit in `controller' "
 1009|      5|                               "action `userdata'");
 1010|      5|            }
 1011|  1.24k|            size_t userdata_len = pp->ofpacts->size - start_ofs;
 1012|  1.24k|            controller = pp->ofpacts->header;
 1013|  1.24k|            controller->userdata_len = userdata_len;
 1014|  1.24k|        }
 1015|       |
 1016|  8.22k|        if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (1016:13): [True: 1, False: 8.22k]
  ------------------
 1017|      1|            return xasprintf("input too big");
 1018|      1|        }
 1019|       |
 1020|  8.22k|        ofpact_finish_CONTROLLER(pp->ofpacts, &controller);
 1021|  8.22k|    }
 1022|       |
 1023|  9.39k|    return NULL;
 1024|  9.40k|}
ofp-actions.c:parse_ENQUEUE:
 1131|  1.21k|{
 1132|  1.21k|    char *sp = NULL;
 1133|  1.21k|    char *port = strtok_r(arg, ":q,", &sp);
 1134|  1.21k|    char *queue = strtok_r(NULL, "", &sp);
 1135|  1.21k|    struct ofpact_enqueue *enqueue;
 1136|       |
 1137|  1.21k|    if (port == NULL || queue == NULL) {
  ------------------
  |  Branch (1137:9): [True: 3, False: 1.21k]
  |  Branch (1137:25): [True: 1, False: 1.21k]
  ------------------
 1138|      4|        return xstrdup("\"enqueue\" syntax is \"enqueue:PORT:QUEUE\" or "
 1139|      4|                       "\"enqueue(PORT,QUEUE)\"");
 1140|      4|    }
 1141|       |
 1142|  1.21k|    enqueue = ofpact_put_ENQUEUE(pp->ofpacts);
 1143|  1.21k|    if (!ofputil_port_from_string(port, pp->port_map, &enqueue->port)) {
  ------------------
  |  Branch (1143:9): [True: 1, False: 1.21k]
  ------------------
 1144|      1|        return xasprintf("%s: enqueue to unknown port", port);
 1145|      1|    }
 1146|  1.21k|    return str_to_u32(queue, &enqueue->queue);
 1147|  1.21k|}
ofp-actions.c:parse_OUTPUT_REG:
 1311|    463|{
 1312|    463|    return parse_OUTPUT(arg, pp);
 1313|    463|}
ofp-actions.c:parse_BUNDLE:
 1532|  3.09k|{
 1533|  3.09k|    return bundle_parse(arg, pp->port_map, pp->ofpacts);
 1534|  3.09k|}
ofp-actions.c:parse_SET_FIELD:
 3271|  45.8k|{
 3272|  45.8k|    char *copy = xstrdup(arg);
 3273|  45.8k|    char *error = set_field_parse__(copy, pp);
 3274|  45.8k|    free(copy);
 3275|  45.8k|    return error;
 3276|  45.8k|}
ofp-actions.c:set_field_parse__:
 3227|  45.8k|{
 3228|  45.8k|    char *value;
 3229|  45.8k|    char *delim;
 3230|  45.8k|    char *key;
 3231|  45.8k|    const struct mf_field *mf;
 3232|  45.8k|    union mf_value sf_value, sf_mask;
 3233|  45.8k|    char *error;
 3234|       |
 3235|  45.8k|    error = set_field_split_str(arg, &key, &value, &delim);
 3236|  45.8k|    if (error) {
  ------------------
  |  Branch (3236:9): [True: 14, False: 45.8k]
  ------------------
 3237|     14|        return error;
 3238|     14|    }
 3239|       |
 3240|  45.8k|    mf = mf_from_name(key);
 3241|  45.8k|    if (!mf) {
  ------------------
  |  Branch (3241:9): [True: 31, False: 45.8k]
  ------------------
 3242|     31|        return xasprintf("%s is not a valid OXM field name", key);
 3243|     31|    }
 3244|  45.8k|    if (!mf->writable) {
  ------------------
  |  Branch (3244:9): [True: 1, False: 45.8k]
  ------------------
 3245|      1|        return xasprintf("%s is read-only", key);
 3246|      1|    }
 3247|       |
 3248|  45.8k|    delim[0] = '\0';
 3249|  45.8k|    error = mf_parse(mf, value, pp->port_map, &sf_value, &sf_mask);
 3250|  45.8k|    if (error) {
  ------------------
  |  Branch (3250:9): [True: 4, False: 45.8k]
  ------------------
 3251|      4|        return error;
 3252|      4|    }
 3253|       |
 3254|  45.8k|    if (!mf_is_value_valid(mf, &sf_value)) {
  ------------------
  |  Branch (3254:9): [True: 11, False: 45.8k]
  ------------------
 3255|     11|        return xasprintf("%s is not a valid value for field %s", value, key);
 3256|     11|    }
 3257|       |
 3258|  45.8k|    *pp->usable_protocols &= mf->usable_protocols_exact;
 3259|       |
 3260|  45.8k|    ofpact_put_set_field(pp->ofpacts, mf, &sf_value, &sf_mask);
 3261|       |    return NULL;
 3262|  45.8k|}
ofp-actions.c:set_field_split_str:
 3195|  47.0k|{
 3196|  47.0k|    char *value_end;
 3197|       |
 3198|  47.0k|    *key = NULL;
 3199|  47.0k|    *value = arg;
 3200|  47.0k|    if (delim) {
  ------------------
  |  Branch (3200:9): [True: 46.4k, False: 592]
  ------------------
 3201|  46.4k|        *delim = NULL;
 3202|  46.4k|    }
 3203|       |
 3204|  47.0k|    value_end = strstr(arg, "->");
 3205|  47.0k|    if (!value_end) {
  ------------------
  |  Branch (3205:9): [True: 18, False: 47.0k]
  ------------------
 3206|     18|        return xasprintf("%s: missing `->'", arg);
 3207|     18|    }
 3208|       |
 3209|  47.0k|    *key = value_end + strlen("->");
 3210|  47.0k|    if (delim) {
  ------------------
  |  Branch (3210:9): [True: 46.4k, False: 591]
  ------------------
 3211|  46.4k|        *delim = value_end;
 3212|  46.4k|    }
 3213|  47.0k|    if (strlen(value_end) <= strlen("->")) {
  ------------------
  |  Branch (3213:9): [True: 3, False: 47.0k]
  ------------------
 3214|      3|        return xasprintf("%s: missing field name following `->'", arg);
 3215|      3|    }
 3216|       |
 3217|  47.0k|    return NULL;
 3218|  47.0k|}
ofp-actions.c:parse_SET_VLAN_VID:
 1634|  1.04k|{
 1635|       |    return parse_set_vlan_vid(arg, false, pp);
 1636|  1.04k|}
ofp-actions.c:parse_SET_VLAN_PCP:
 1742|    901|{
 1743|       |    return parse_set_vlan_pcp(arg, false, pp);
 1744|    901|}
ofp-actions.c:parse_STRIP_VLAN:
 1801|    492|{
 1802|    492|    ofpact_put_STRIP_VLAN(pp->ofpacts)->ofpact.raw = OFPAT_RAW10_STRIP_VLAN;
 1803|       |    return NULL;
 1804|    492|}
ofp-actions.c:parse_PUSH_VLAN:
 1864|  1.30k|{
 1865|  1.30k|    struct ofpact_push_vlan *push_vlan;
 1866|  1.30k|    uint16_t ethertype;
 1867|  1.30k|    char *error;
 1868|       |
 1869|  1.30k|    *pp->usable_protocols &= OFPUTIL_P_OF11_UP;
  ------------------
  |  |   92|  1.30k|#define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|  1.30k|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|  1.30k|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|  1.30k|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|  1.30k|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1870|  1.30k|    error = str_to_u16(arg, "ethertype", &ethertype);
 1871|  1.30k|    if (error) {
  ------------------
  |  Branch (1871:9): [True: 6, False: 1.29k]
  ------------------
 1872|      6|        return error;
 1873|      6|    }
 1874|       |
 1875|  1.29k|    if (!eth_type_vlan(htons(ethertype))) {
  ------------------
  |  Branch (1875:9): [True: 24, False: 1.27k]
  ------------------
 1876|     24|        return xasprintf("%s: not a valid VLAN ethertype", arg);
 1877|     24|    }
 1878|  1.27k|    push_vlan = ofpact_put_PUSH_VLAN(pp->ofpacts);
 1879|  1.27k|    push_vlan->ethertype = htons(ethertype);
 1880|       |    return NULL;
 1881|  1.29k|}
ofp-actions.c:parse_SET_ETH_SRC:
 1969|    459|{
 1970|    459|    return str_to_mac(arg, &ofpact_put_SET_ETH_SRC(pp->ofpacts)->mac);
 1971|    459|}
ofp-actions.c:parse_SET_ETH_DST:
 1975|    640|{
 1976|    640|    return str_to_mac(arg, &ofpact_put_SET_ETH_DST(pp->ofpacts)->mac);
 1977|    640|}
ofp-actions.c:parse_SET_IPV4_SRC:
 2061|    865|{
 2062|    865|    return str_to_ip(arg, &ofpact_put_SET_IPV4_SRC(pp->ofpacts)->ipv4);
 2063|    865|}
ofp-actions.c:parse_SET_IPV4_DST:
 2067|    749|{
 2068|    749|    return str_to_ip(arg, &ofpact_put_SET_IPV4_DST(pp->ofpacts)->ipv4);
 2069|    749|}
ofp-actions.c:parse_SET_IP_DSCP:
 2140|  1.30k|{
 2141|  1.30k|    uint8_t tos;
 2142|  1.30k|    char *error;
 2143|       |
 2144|  1.30k|    error = str_to_u8(arg, "TOS", &tos);
 2145|  1.30k|    if (error) {
  ------------------
  |  Branch (2145:9): [True: 11, False: 1.29k]
  ------------------
 2146|     11|        return error;
 2147|     11|    }
 2148|       |
 2149|  1.29k|    if (tos & ~IP_DSCP_MASK) {
  ------------------
  |  |  724|  1.29k|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (2149:9): [True: 1, False: 1.29k]
  ------------------
 2150|      1|        return xasprintf("%s: not a valid TOS", arg);
 2151|      1|    }
 2152|  1.29k|    ofpact_put_SET_IP_DSCP(pp->ofpacts)->dscp = tos;
 2153|       |    return NULL;
 2154|  1.29k|}
ofp-actions.c:parse_SET_IP_ECN:
 2213|  1.59k|{
 2214|  1.59k|    uint8_t ecn;
 2215|  1.59k|    char *error;
 2216|       |
 2217|  1.59k|    error = str_to_u8(arg, "ECN", &ecn);
 2218|  1.59k|    if (error) {
  ------------------
  |  Branch (2218:9): [True: 21, False: 1.57k]
  ------------------
 2219|     21|        return error;
 2220|     21|    }
 2221|       |
 2222|  1.57k|    if (ecn & ~IP_ECN_MASK) {
  ------------------
  |  |  722|  1.57k|#define IP_ECN_MASK 0x03
  ------------------
  |  Branch (2222:9): [True: 2, False: 1.56k]
  ------------------
 2223|      2|        return xasprintf("%s: not a valid ECN", arg);
 2224|      2|    }
 2225|  1.56k|    ofpact_put_SET_IP_ECN(pp->ofpacts)->ecn = ecn;
 2226|       |    return NULL;
 2227|  1.57k|}
ofp-actions.c:parse_SET_L4_SRC_PORT:
 2362|  2.11k|{
 2363|  2.11k|    return str_to_u16(arg, "source port",
 2364|  2.11k|                      &ofpact_put_SET_L4_SRC_PORT(pp->ofpacts)->port);
 2365|  2.11k|}
ofp-actions.c:parse_SET_L4_DST_PORT:
 2369|  2.13k|{
 2370|  2.13k|    return str_to_u16(arg, "destination port",
 2371|  2.13k|                      &ofpact_put_SET_L4_DST_PORT(pp->ofpacts)->port);
 2372|  2.13k|}
ofp-actions.c:parse_REG_MOVE:
 2707|    431|{
 2708|    431|    struct ofpact_reg_move *move = ofpact_put_REG_MOVE(pp->ofpacts);
 2709|    431|    return nxm_parse_reg_move(move, arg);
 2710|    431|}
ofp-actions.c:parse_STACK_PUSH:
 3545|    509|{
 3546|    509|    return nxm_parse_stack_action(ofpact_put_STACK_PUSH(pp->ofpacts), arg);
 3547|    509|}
ofp-actions.c:parse_STACK_POP:
 3551|  2.16k|{
 3552|  2.16k|    return nxm_parse_stack_action(ofpact_put_STACK_POP(pp->ofpacts), arg);
 3553|  2.16k|}
ofp-actions.c:parse_DEC_TTL:
 3702|  2.85k|{
 3703|  2.85k|    if (*arg == '\0') {
  ------------------
  |  Branch (3703:9): [True: 744, False: 2.11k]
  ------------------
 3704|    744|        parse_noargs_dec_ttl(pp);
 3705|  2.11k|    } else {
 3706|  2.11k|        struct ofpact_cnt_ids *ids;
 3707|  2.11k|        char *cntr;
 3708|       |
 3709|  2.11k|        ids = ofpact_put_DEC_TTL(pp->ofpacts);
 3710|  2.11k|        ids->ofpact.raw = NXAST_RAW_DEC_TTL_CNT_IDS;
 3711|   740k|        for (cntr = strtok_r(arg, ", ", &arg); cntr != NULL;
  ------------------
  |  Branch (3711:48): [True: 737k, False: 2.11k]
  ------------------
 3712|   737k|             cntr = strtok_r(NULL, ", ", &arg)) {
 3713|   737k|            uint16_t id = atoi(cntr);
 3714|       |
 3715|   737k|            ofpbuf_put(pp->ofpacts, &id, sizeof id);
 3716|   737k|            ids = pp->ofpacts->header;
 3717|   737k|            ids->n_controllers++;
 3718|   737k|        }
 3719|  2.11k|        if (!ids->n_controllers) {
  ------------------
  |  Branch (3719:13): [True: 2, False: 2.11k]
  ------------------
 3720|      2|            return xstrdup("dec_ttl_cnt_ids: expected at least one controller "
 3721|      2|                           "id.");
 3722|      2|        }
 3723|       |
 3724|  2.11k|        if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (3724:13): [True: 4, False: 2.10k]
  ------------------
 3725|      4|            return xasprintf("input too big");
 3726|      4|        }
 3727|       |
 3728|  2.10k|        ofpact_finish_DEC_TTL(pp->ofpacts, &ids);
 3729|  2.10k|    }
 3730|  2.85k|    return NULL;
 3731|  2.85k|}
ofp-actions.c:parse_noargs_dec_ttl:
 3689|    744|{
 3690|    744|    struct ofpact_cnt_ids *ids;
 3691|    744|    uint16_t id = 0;
 3692|       |
 3693|    744|    ofpact_put_DEC_TTL(pp->ofpacts);
 3694|    744|    ofpbuf_put(pp->ofpacts, &id, sizeof id);
 3695|    744|    ids = pp->ofpacts->header;
 3696|    744|    ids->n_controllers++;
 3697|    744|    ofpact_finish_DEC_TTL(pp->ofpacts, &ids);
 3698|    744|}
ofp-actions.c:parse_SET_MPLS_LABEL:
 3784|  2.72k|{
 3785|  2.72k|    struct ofpact_mpls_label *mpls_label
 3786|  2.72k|        = ofpact_put_SET_MPLS_LABEL(pp->ofpacts);
 3787|  2.72k|    uint32_t label;
 3788|  2.72k|    char *error;
 3789|       |
 3790|  2.72k|    if (*arg == '\0') {
  ------------------
  |  Branch (3790:9): [True: 3, False: 2.71k]
  ------------------
 3791|      3|        return xstrdup("set_mpls_label: expected label.");
 3792|      3|    }
 3793|       |
 3794|  2.71k|    error = str_to_u32(arg, &label);
 3795|  2.71k|    if (error) {
  ------------------
  |  Branch (3795:9): [True: 3, False: 2.71k]
  ------------------
 3796|      3|        return error;
 3797|      3|    }
 3798|       |
 3799|  2.71k|    if (label & ~0xfffff) {
  ------------------
  |  Branch (3799:9): [True: 12, False: 2.70k]
  ------------------
 3800|     12|        return xasprintf("%s: not a valid MPLS label", arg);
 3801|     12|    }
 3802|  2.70k|    mpls_label->label = htonl(label);
 3803|       |    return NULL;
 3804|  2.71k|}
ofp-actions.c:parse_SET_MPLS_TC:
 3856|  1.30k|{
 3857|  1.30k|    struct ofpact_mpls_tc *mpls_tc = ofpact_put_SET_MPLS_TC(pp->ofpacts);
 3858|  1.30k|    uint8_t tc;
 3859|  1.30k|    char *error;
 3860|       |
 3861|  1.30k|    if (*arg == '\0') {
  ------------------
  |  Branch (3861:9): [True: 3, False: 1.30k]
  ------------------
 3862|      3|        return xstrdup("set_mpls_tc: expected tc.");
 3863|      3|    }
 3864|       |
 3865|  1.30k|    error = str_to_u8(arg, "MPLS TC", &tc);
 3866|  1.30k|    if (error) {
  ------------------
  |  Branch (3866:9): [True: 1, False: 1.30k]
  ------------------
 3867|      1|        return error;
 3868|      1|    }
 3869|       |
 3870|  1.30k|    if (tc & ~7) {
  ------------------
  |  Branch (3870:9): [True: 1, False: 1.30k]
  ------------------
 3871|      1|        return xasprintf("%s: not a valid MPLS TC", arg);
 3872|      1|    }
 3873|  1.30k|    mpls_tc->tc = tc;
 3874|       |    return NULL;
 3875|  1.30k|}
ofp-actions.c:parse_SET_MPLS_TTL:
 3918|    882|{
 3919|    882|    struct ofpact_mpls_ttl *mpls_ttl = ofpact_put_SET_MPLS_TTL(pp->ofpacts);
 3920|    882|    uint8_t ttl;
 3921|    882|    char *error;
 3922|       |
 3923|    882|    if (*arg == '\0') {
  ------------------
  |  Branch (3923:9): [True: 2, False: 880]
  ------------------
 3924|      2|        return xstrdup("set_mpls_ttl: expected ttl.");
 3925|      2|    }
 3926|       |
 3927|    880|    error = str_to_u8(arg, "MPLS TTL", &ttl);
 3928|    880|    if (error) {
  ------------------
  |  Branch (3928:9): [True: 4, False: 876]
  ------------------
 3929|      4|        return error;
 3930|      4|    }
 3931|    876|    mpls_ttl->ttl = ttl;
 3932|       |    return NULL;
 3933|    880|}
ofp-actions.c:parse_DEC_MPLS_TTL:
 3969|  2.87k|{
 3970|  2.87k|    ofpact_put_DEC_MPLS_TTL(pp->ofpacts);
 3971|       |    return NULL;
 3972|  2.87k|}
ofp-actions.c:parse_PUSH_MPLS:
 4015|    629|{
 4016|    629|    uint16_t ethertype;
 4017|    629|    char *error;
 4018|       |
 4019|    629|    error = str_to_u16(arg, "push_mpls", &ethertype);
 4020|    629|    if (!error) {
  ------------------
  |  Branch (4020:9): [True: 624, False: 5]
  ------------------
 4021|       |        ofpact_put_PUSH_MPLS(pp->ofpacts)->ethertype = htons(ethertype);
 4022|    624|    }
 4023|    629|    return error;
 4024|    629|}
ofp-actions.c:parse_POP_MPLS:
 4073|  2.12k|{
 4074|  2.12k|    uint16_t ethertype;
 4075|  2.12k|    char *error;
 4076|       |
 4077|  2.12k|    error = str_to_u16(arg, "pop_mpls", &ethertype);
 4078|  2.12k|    if (!error) {
  ------------------
  |  Branch (4078:9): [True: 2.12k, False: 6]
  ------------------
 4079|       |        ofpact_put_POP_MPLS(pp->ofpacts)->ethertype = htons(ethertype);
 4080|  2.12k|    }
 4081|  2.12k|    return error;
 4082|  2.12k|}
ofp-actions.c:parse_DEC_NSH_TTL:
 4814|  1.23k|{
 4815|  1.23k|    ofpact_put_DEC_NSH_TTL(pp->ofpacts);
 4816|       |    return NULL;
 4817|  1.23k|}
ofp-actions.c:parse_DELETE_FIELD:
 4237|    332|{
 4238|    332|    struct ofpact_delete_field *delete_field;
 4239|       |
 4240|    332|    delete_field = ofpact_put_DELETE_FIELD(pp->ofpacts);
 4241|    332|    return mf_parse_field(&delete_field->field, arg);
 4242|    332|}
ofp-actions.c:parse_ENCAP:
 4571|  2.32k|{
 4572|  2.32k|    *pp->usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|  2.32k|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|  2.32k|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|  2.32k|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4573|       |
 4574|  2.32k|    struct ofpact_encap *encap;
 4575|  2.32k|    char *key, *value, *str;
 4576|  2.32k|    char *error = NULL;
 4577|  2.32k|    uint16_t prop_class;
 4578|  2.32k|    int n_props = 0;
 4579|       |
 4580|  2.32k|    encap = ofpact_put_ENCAP(pp->ofpacts);
 4581|  2.32k|    encap->hdr_size = 0;
 4582|       |    /* Parse encap header type. */
 4583|  2.32k|    str = arg;
 4584|  2.32k|    if (!ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4584:9): [True: 5, False: 2.31k]
  ------------------
 4585|      5|        return xasprintf("Missing encap hdr: %s", str);
 4586|      5|    }
 4587|  2.31k|    if (!parse_encap_header(key, &encap->new_pkt_type)) {
  ------------------
  |  Branch (4587:9): [True: 138, False: 2.18k]
  ------------------
 4588|    138|        return xasprintf("Encap hdr not supported: %s", value);
 4589|    138|    }
 4590|  2.18k|    if (!parse_ed_prop_class(key, &prop_class)) {
  ------------------
  |  Branch (4590:9): [True: 0, False: 2.18k]
  ------------------
 4591|      0|        return xasprintf("Invalid encap prop class: %s", key);
 4592|      0|    }
 4593|       |    /* Parse encap properties. */
 4594|  2.18k|    error = parse_ed_props(prop_class, &value, &n_props, pp->ofpacts);
 4595|  2.18k|    if (error != NULL) {
  ------------------
  |  Branch (4595:9): [True: 61, False: 2.11k]
  ------------------
 4596|     61|        return error;
 4597|     61|    }
 4598|       |    /* ofpbuf may have been re-allocated. */
 4599|  2.11k|    encap = pp->ofpacts->header;
 4600|  2.11k|    encap->n_props = n_props;
 4601|       |
 4602|  2.11k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (4602:9): [True: 0, False: 2.11k]
  ------------------
 4603|      0|        return xasprintf("input too big");
 4604|      0|    }
 4605|       |
 4606|  2.11k|    ofpact_finish_ENCAP(pp->ofpacts, &encap);
 4607|       |    return NULL;
 4608|  2.11k|}
ofp-actions.c:parse_encap_header:
 4528|  2.31k|{
 4529|  2.31k|    if (strcmp(hdr, "ethernet") == 0) {
  ------------------
  |  Branch (4529:9): [True: 516, False: 1.80k]
  ------------------
 4530|    516|        *packet_type = htonl(PT_ETH);
 4531|  1.80k|    } else if (strcmp(hdr, "nsh") == 0) {
  ------------------
  |  Branch (4531:16): [True: 1.05k, False: 744]
  ------------------
 4532|  1.05k|        *packet_type = htonl(PT_NSH);
 4533|  1.05k|    } else if (strcmp(hdr, "mpls") == 0) {
  ------------------
  |  Branch (4533:16): [True: 234, False: 510]
  ------------------
 4534|    234|        *packet_type = htonl(PT_MPLS);
 4535|    510|    } else if (strcmp(hdr, "mpls_mc") == 0) {
  ------------------
  |  Branch (4535:16): [True: 372, False: 138]
  ------------------
 4536|    372|        *packet_type = htonl(PT_MPLS_MC);
 4537|    372|    } else {
 4538|    138|        return false;
 4539|    138|    }
 4540|  2.18k|    return true;
 4541|  2.31k|}
ofp-actions.c:parse_ed_props:
 4545|  2.18k|{
 4546|  2.18k|    char *key, *value, *err;
 4547|  2.18k|    uint8_t prop_type;
 4548|       |
 4549|  3.47k|    while (ofputil_parse_key_value(arg, &key, &value)) {
  ------------------
  |  Branch (4549:12): [True: 1.35k, False: 2.11k]
  ------------------
 4550|  1.35k|        if (!parse_ed_prop_type(prop_class, key, &prop_type)) {
  ------------------
  |  Branch (4550:13): [True: 51, False: 1.30k]
  ------------------
 4551|     51|            return xasprintf("Invalid property: %s", key);
 4552|     51|        }
 4553|  1.30k|        if (value == NULL) {
  ------------------
  |  Branch (4553:13): [True: 0, False: 1.30k]
  ------------------
 4554|      0|            return xasprintf("Missing the value for property: %s", key);
 4555|      0|        }
 4556|  1.30k|        err = parse_ed_prop_value(prop_class, prop_type, value, out);
 4557|  1.30k|        if (err != NULL) {
  ------------------
  |  Branch (4557:13): [True: 10, False: 1.29k]
  ------------------
 4558|     10|            return err;
 4559|     10|        }
 4560|  1.29k|        (*n_props)++;
 4561|  1.29k|    }
 4562|  2.11k|    return NULL;
 4563|  2.18k|}
ofp-actions.c:parse_DECAP:
 4724|  2.38k|{
 4725|  2.38k|    struct ofpact_decap *decap;
 4726|  2.38k|    char *key, *value, *pos;
 4727|  2.38k|    char *error = NULL;
 4728|  2.38k|    uint16_t ns, type;
 4729|       |
 4730|  2.38k|    decap = ofpact_put_DECAP(pp->ofpacts);
 4731|       |    /* Default next packet_type is PT_USE_NEXT_PROTO. */
 4732|  2.38k|    decap->new_pkt_type = htonl(PT_USE_NEXT_PROTO);
 4733|       |
 4734|       |    /* Parse decap packet_type if given. */
 4735|  2.38k|    if (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4735:9): [True: 118, False: 2.26k]
  ------------------
 4736|    118|        if (strcmp(key, "packet_type") == 0) {
  ------------------
  |  Branch (4736:13): [True: 37, False: 81]
  ------------------
 4737|     37|            pos = value;
 4738|     37|            if (!ofputil_parse_key_value(&pos, &key, &value)
  ------------------
  |  Branch (4738:17): [True: 1, False: 36]
  ------------------
 4739|     36|                || strcmp(key, "ns") != 0) {
  ------------------
  |  Branch (4739:20): [True: 7, False: 29]
  ------------------
 4740|      8|                return xstrdup("Missing packet_type attribute ns");
 4741|      8|            }
 4742|     29|            error = str_to_u16(value, "ns", &ns);
 4743|     29|            if (error) {
  ------------------
  |  Branch (4743:17): [True: 1, False: 28]
  ------------------
 4744|      1|                return error;
 4745|      1|            }
 4746|     28|            if (ns >= OFPHTN_N_TYPES) {
  ------------------
  |  Branch (4746:17): [True: 4, False: 24]
  ------------------
 4747|      4|                return xasprintf("Unsupported ns value: %"PRIu16, ns);
 4748|      4|            }
 4749|     24|            if (!ofputil_parse_key_value(&pos, &key, &value)
  ------------------
  |  Branch (4749:17): [True: 2, False: 22]
  ------------------
 4750|     22|                || strcmp(key, "type") != 0) {
  ------------------
  |  Branch (4750:20): [True: 20, False: 2]
  ------------------
 4751|     22|                return xstrdup("Missing packet_type attribute type");
 4752|     22|            }
 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|    118|    }
 4762|  2.26k|    return NULL;
 4763|  2.38k|}
ofp-actions.c:parse_SET_TUNNEL:
 4160|    749|{
 4161|    749|    return parse_set_tunnel(arg, NXAST_RAW_SET_TUNNEL, pp);
 4162|    749|}
ofp-actions.c:parse_SET_QUEUE:
 4284|    212|{
 4285|    212|    return str_to_u32(arg, &ofpact_put_SET_QUEUE(pp->ofpacts)->queue_id);
 4286|    212|}
ofp-actions.c:parse_POP_QUEUE:
 4322|    784|{
 4323|    784|    ofpact_put_POP_QUEUE(pp->ofpacts);
 4324|       |    return NULL;
 4325|    784|}
ofp-actions.c:parse_FIN_TIMEOUT:
 4400|  1.39k|{
 4401|  1.39k|    struct ofpact_fin_timeout *oft = ofpact_put_FIN_TIMEOUT(pp->ofpacts);
 4402|  1.39k|    char *key, *value;
 4403|       |
 4404|  2.29k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4404:12): [True: 1.02k, False: 1.27k]
  ------------------
 4405|  1.02k|        char *error;
 4406|       |
 4407|  1.02k|        if (!strcmp(key, "idle_timeout")) {
  ------------------
  |  Branch (4407:13): [True: 365, False: 659]
  ------------------
 4408|    365|            error =  str_to_u16(value, key, &oft->fin_idle_timeout);
 4409|    659|        } else if (!strcmp(key, "hard_timeout")) {
  ------------------
  |  Branch (4409:20): [True: 537, False: 122]
  ------------------
 4410|    537|            error = str_to_u16(value, key, &oft->fin_hard_timeout);
 4411|    537|        } else {
 4412|    122|            error = xasprintf("invalid key '%s' in 'fin_timeout' argument",
 4413|    122|                              key);
 4414|    122|        }
 4415|       |
 4416|  1.02k|        if (error) {
  ------------------
  |  Branch (4416:13): [True: 126, False: 898]
  ------------------
 4417|    126|            return error;
 4418|    126|        }
 4419|  1.02k|    }
 4420|  1.27k|    return NULL;
 4421|  1.39k|}
ofp-actions.c:parse_RESUBMIT:
 4982|  1.64k|{
 4983|  1.64k|    struct ofpact_resubmit *resubmit;
 4984|  1.64k|    char *in_port_s, *table_s, *ct_s;
 4985|       |
 4986|  1.64k|    resubmit = ofpact_put_RESUBMIT(pp->ofpacts);
 4987|       |
 4988|  1.64k|    in_port_s = strsep(&arg, ",");
 4989|  1.64k|    if (in_port_s && in_port_s[0]) {
  ------------------
  |  Branch (4989:9): [True: 1.64k, False: 0]
  |  Branch (4989:22): [True: 1.09k, False: 551]
  ------------------
 4990|  1.09k|        if (!ofputil_port_from_string(in_port_s, pp->port_map,
  ------------------
  |  Branch (4990:13): [True: 1, False: 1.09k]
  ------------------
 4991|  1.09k|                                      &resubmit->in_port)) {
 4992|      1|            return xasprintf("%s: resubmit to unknown port", in_port_s);
 4993|      1|        }
 4994|  1.09k|    } else {
 4995|    551|        resubmit->in_port = OFPP_IN_PORT;
  ------------------
  |  |   39|    551|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    551|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 4996|    551|    }
 4997|       |
 4998|  1.64k|    table_s = strsep(&arg, ",");
 4999|  1.64k|    if (table_s && table_s[0]) {
  ------------------
  |  Branch (4999:9): [True: 1.37k, False: 273]
  |  Branch (4999:20): [True: 723, False: 651]
  ------------------
 5000|    723|        if (!ofputil_table_from_string(table_s, pp->table_map,
  ------------------
  |  Branch (5000:13): [True: 1, False: 722]
  ------------------
 5001|    723|                                       &resubmit->table_id)) {
 5002|      1|            return xasprintf("%s: resubmit to unknown table", table_s);
 5003|      1|        }
 5004|    924|    } else {
 5005|    924|        resubmit->table_id = 255;
 5006|    924|    }
 5007|       |
 5008|  1.64k|    ct_s = strsep(&arg, ",");
 5009|  1.64k|    if (ct_s && ct_s[0]) {
  ------------------
  |  Branch (5009:9): [True: 834, False: 812]
  |  Branch (5009:17): [True: 424, False: 410]
  ------------------
 5010|    424|        if (strcmp(ct_s, "ct")) {
  ------------------
  |  Branch (5010:13): [True: 22, False: 402]
  ------------------
 5011|     22|            return xasprintf("%s: unknown parameter", ct_s);
 5012|     22|        }
 5013|    402|        resubmit->with_ct_orig = true;
 5014|  1.22k|    } else {
 5015|  1.22k|        resubmit->with_ct_orig = false;
 5016|  1.22k|    }
 5017|       |
 5018|  1.62k|    if (resubmit->in_port == OFPP_IN_PORT && resubmit->table_id == 255) {
  ------------------
  |  |   39|  1.62k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|  3.24k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (5018:9): [True: 532, False: 1.09k]
  |  Branch (5018:46): [True: 11, False: 521]
  ------------------
 5019|     11|        return xstrdup("at least one \"in_port\" or \"table\" must be "
 5020|     11|                       "specified on resubmit");
 5021|     11|    }
 5022|  1.61k|    return NULL;
 5023|  1.62k|}
ofp-actions.c:parse_LEARN:
 5632|  34.9k|{
 5633|  34.9k|    return learn_parse(arg, pp->port_map, pp->table_map, pp->ofpacts);
 5634|  34.9k|}
ofp-actions.c:parse_CONJUNCTION:
 5710|    564|{
 5711|    564|    uint8_t n_clauses;
 5712|    564|    uint8_t clause;
 5713|    564|    uint32_t id;
 5714|    564|    int n;
 5715|       |
 5716|    564|    if (!ovs_scan(arg, "%"SCNi32" , %"SCNu8" / %"SCNu8" %n",
  ------------------
  |  Branch (5716:9): [True: 6, False: 558]
  ------------------
 5717|    564|                  &id, &clause, &n_clauses, &n) || n != strlen(arg)) {
  ------------------
  |  Branch (5717:52): [True: 16, False: 542]
  ------------------
 5718|     22|        return xstrdup("\"conjunction\" syntax is \"conjunction(id,i/n)\"");
 5719|     22|    }
 5720|       |
 5721|    542|    if (n_clauses < 2) {
  ------------------
  |  Branch (5721:9): [True: 1, False: 541]
  ------------------
 5722|      1|        return xstrdup("conjunction must have at least 2 clauses");
 5723|    541|    } else if (n_clauses > 64) {
  ------------------
  |  Branch (5723:16): [True: 4, False: 537]
  ------------------
 5724|      4|        return xstrdup("conjunction must have at most 64 clauses");
 5725|    537|    } else if (clause < 1) {
  ------------------
  |  Branch (5725:16): [True: 1, False: 536]
  ------------------
 5726|      1|        return xstrdup("clause index must be positive");
 5727|    536|    } else if (clause > n_clauses) {
  ------------------
  |  Branch (5727:16): [True: 2, False: 534]
  ------------------
 5728|      2|        return xstrdup("clause index must be less than or equal to "
 5729|      2|                       "number of clauses");
 5730|      2|    }
 5731|       |
 5732|    534|    add_conjunction(pp->ofpacts, id, clause - 1, n_clauses);
 5733|       |    return NULL;
 5734|    542|}
ofp-actions.c:parse_MULTIPATH:
 5859|  2.68k|{
 5860|  2.68k|    return multipath_parse(ofpact_put_MULTIPATH(pp->ofpacts), arg);
 5861|  2.68k|}
ofp-actions.c:parse_NOTE:
 5929|  2.30k|{
 5930|  2.30k|    size_t start_ofs = pp->ofpacts->size;
 5931|  2.30k|    ofpact_put_NOTE(pp->ofpacts);
 5932|  2.30k|    arg = ofpbuf_put_hex(pp->ofpacts, arg, NULL);
 5933|  2.30k|    if (arg[0]) {
  ------------------
  |  Branch (5933:9): [True: 10, False: 2.29k]
  ------------------
 5934|     10|        return xstrdup("bad hex digit in `note' argument");
 5935|     10|    }
 5936|  2.29k|    struct ofpact_note *note = ofpbuf_at_assert(pp->ofpacts, start_ofs,
 5937|  2.29k|                                                sizeof *note);
 5938|  2.29k|    note->length = pp->ofpacts->size - (start_ofs + sizeof *note);
 5939|       |
 5940|  2.29k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (5940:9): [True: 2, False: 2.29k]
  ------------------
 5941|      2|        return xasprintf("input too big");
 5942|      2|    }
 5943|       |
 5944|  2.29k|    ofpact_finish_NOTE(pp->ofpacts, &note);
 5945|       |    return NULL;
 5946|  2.29k|}
ofp-actions.c:parse_EXIT:
 5981|  1.15k|{
 5982|  1.15k|    ofpact_put_EXIT(pp->ofpacts);
 5983|       |    return NULL;
 5984|  1.15k|}
ofp-actions.c:parse_SAMPLE:
 6454|  2.06k|{
 6455|  2.06k|    struct ofpact_sample *os = ofpact_put_SAMPLE(pp->ofpacts);
 6456|  2.06k|    os->sampling_port = OFPP_NONE;
  ------------------
  |  |   47|  2.06k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  2.06k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 6457|  2.06k|    os->direction = NX_ACTION_SAMPLE_DEFAULT;
 6458|       |
 6459|  2.06k|    char *key, *value;
 6460|  6.76k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (6460:12): [True: 4.89k, False: 1.87k]
  ------------------
 6461|  4.89k|        char *error = NULL;
 6462|       |
 6463|  4.89k|        if (!strcmp(key, "probability")) {
  ------------------
  |  Branch (6463:13): [True: 1.86k, False: 3.02k]
  ------------------
 6464|  1.86k|            error = str_to_u16(value, "probability", &os->probability);
 6465|  1.86k|            if (!error && os->probability == 0) {
  ------------------
  |  Branch (6465:17): [True: 1.86k, False: 1]
  |  Branch (6465:27): [True: 1, False: 1.86k]
  ------------------
 6466|      1|                error = xasprintf("invalid probability value \"%s\"", value);
 6467|      1|            }
 6468|  3.02k|        } else if (!strcmp(key, "collector_set_id")) {
  ------------------
  |  Branch (6468:20): [True: 66, False: 2.95k]
  ------------------
 6469|     66|            error = str_to_u32(value, &os->collector_set_id);
 6470|  2.95k|        } else if (!strcmp(key, "obs_domain_id")) {
  ------------------
  |  Branch (6470:20): [True: 774, False: 2.18k]
  ------------------
 6471|    774|            error = str_to_u32(value, &os->obs_domain_imm);
 6472|       |
 6473|    774|            if (error) {
  ------------------
  |  Branch (6473:17): [True: 316, False: 458]
  ------------------
 6474|    316|                free(error);
 6475|    316|                error = mf_parse_subfield(&os->obs_domain_src, value);
 6476|    316|                if (error) {
  ------------------
  |  Branch (6476:21): [True: 1, False: 315]
  ------------------
 6477|      1|                    return error;
 6478|      1|                }
 6479|    315|                if (os->obs_domain_src.n_bits > 32) {
  ------------------
  |  Branch (6479:21): [True: 1, False: 314]
  ------------------
 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|    315|            }
 6485|  2.18k|        } else if (!strcmp(key, "obs_point_id")) {
  ------------------
  |  Branch (6485:20): [True: 583, False: 1.60k]
  ------------------
 6486|    583|            error = str_to_u32(value, &os->obs_point_imm);
 6487|       |
 6488|    583|            if (error) {
  ------------------
  |  Branch (6488:17): [True: 274, False: 309]
  ------------------
 6489|    274|                free(error);
 6490|    274|                error = mf_parse_subfield(&os->obs_point_src, value);
 6491|    274|                if (error) {
  ------------------
  |  Branch (6491:21): [True: 4, False: 270]
  ------------------
 6492|      4|                    return error;
 6493|      4|                }
 6494|    270|                if (os->obs_point_src.n_bits > 32) {
  ------------------
  |  Branch (6494:21): [True: 1, False: 269]
  ------------------
 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|    270|            }
 6500|  1.60k|        } else if (!strcmp(key, "sampling_port")) {
  ------------------
  |  Branch (6500:20): [True: 396, False: 1.20k]
  ------------------
 6501|    396|            if (!ofputil_port_from_string(value, pp->port_map,
  ------------------
  |  Branch (6501:17): [True: 1, False: 395]
  ------------------
 6502|    396|                                          &os->sampling_port)) {
 6503|      1|                error = xasprintf("%s: unknown port", value);
 6504|      1|            }
 6505|  1.20k|        } else if (!strcmp(key, "ingress")) {
  ------------------
  |  Branch (6505:20): [True: 505, False: 701]
  ------------------
 6506|    505|            os->direction = NX_ACTION_SAMPLE_INGRESS;
 6507|    701|        } else if (!strcmp(key, "egress")) {
  ------------------
  |  Branch (6507:20): [True: 522, False: 179]
  ------------------
 6508|    522|            os->direction = NX_ACTION_SAMPLE_EGRESS;
 6509|    522|        } else {
 6510|    179|            error = xasprintf("invalid key \"%s\" in \"sample\" argument",
 6511|    179|                              key);
 6512|    179|        }
 6513|  4.88k|        if (error) {
  ------------------
  |  Branch (6513:13): [True: 188, False: 4.69k]
  ------------------
 6514|    188|            return error;
 6515|    188|        }
 6516|  4.88k|    }
 6517|  1.87k|    if (os->probability == 0) {
  ------------------
  |  Branch (6517:9): [True: 26, False: 1.84k]
  ------------------
 6518|     26|        return xstrdup("non-zero \"probability\" must be specified on sample");
 6519|     26|    }
 6520|       |
 6521|  1.84k|    return NULL;
 6522|  1.87k|}
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|  77.7k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (6933:12): [True: 67.7k, False: 10.0k]
  ------------------
 6934|  67.7k|        if (!strcmp(key, "commit")) {
  ------------------
  |  Branch (6934:13): [True: 230, False: 67.5k]
  ------------------
 6935|    230|            oc->flags |= NX_CT_F_COMMIT;
 6936|  67.5k|        } else if (!strcmp(key, "force")) {
  ------------------
  |  Branch (6936:20): [True: 242, False: 67.2k]
  ------------------
 6937|    242|            oc->flags |= NX_CT_F_FORCE;
 6938|  67.2k|        } else if (!strcmp(key, "table")) {
  ------------------
  |  Branch (6938:20): [True: 311, False: 66.9k]
  ------------------
 6939|    311|            if (!ofputil_table_from_string(value, pp->table_map,
  ------------------
  |  Branch (6939:17): [True: 1, False: 310]
  ------------------
 6940|    311|                                           &oc->recirc_table)) {
 6941|      1|                error = xasprintf("unknown table %s", value);
 6942|    310|            } else if (oc->recirc_table == NX_CT_RECIRC_NONE) {
  ------------------
  |  |  692|    310|#define NX_CT_RECIRC_NONE OFPTT_ALL
  ------------------
  |  Branch (6942:24): [True: 1, False: 309]
  ------------------
 6943|      1|                error = xasprintf("invalid table %#"PRIx8, oc->recirc_table);
 6944|      1|            }
 6945|  66.9k|        } else if (!strcmp(key, "zone")) {
  ------------------
  |  Branch (6945:20): [True: 1.09k, False: 65.8k]
  ------------------
 6946|  1.09k|            error = str_to_u16(value, "zone", &oc->zone_imm);
 6947|       |
 6948|  1.09k|            if (error) {
  ------------------
  |  Branch (6948:17): [True: 462, False: 630]
  ------------------
 6949|    462|                free(error);
 6950|    462|                error = mf_parse_subfield(&oc->zone_src, value);
 6951|    462|                if (error) {
  ------------------
  |  Branch (6951:21): [True: 16, False: 446]
  ------------------
 6952|     16|                    return error;
 6953|     16|                }
 6954|    462|            }
 6955|  65.8k|        } else if (!strcmp(key, "alg")) {
  ------------------
  |  Branch (6955:20): [True: 483, False: 65.3k]
  ------------------
 6956|    483|            error = str_to_connhelper(value, &oc->alg);
 6957|  65.3k|        } else if (!strcmp(key, "nat")) {
  ------------------
  |  Branch (6957:20): [True: 63.3k, False: 2.05k]
  ------------------
 6958|  63.3k|            const size_t nat_offset = ofpacts_pull(pp->ofpacts);
 6959|       |
 6960|  63.3k|            error = parse_NAT(value, pp);
 6961|       |            /* Update CT action pointer and length. */
 6962|  63.3k|            pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, nat_offset);
 6963|  63.3k|            oc = pp->ofpacts->header;
 6964|  63.3k|        } else if (!strcmp(key, "exec")) {
  ------------------
  |  Branch (6964:20): [True: 1.78k, False: 266]
  ------------------
 6965|       |            /* Hide existing actions from ofpacts_parse_copy(), so the
 6966|       |             * nesting can be handled transparently. */
 6967|  1.78k|            enum ofputil_protocol usable_protocols2;
 6968|  1.78k|            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.78k|            struct ofpact_parse_params pp2 = *pp;
 6974|  1.78k|            pp2.usable_protocols = &usable_protocols2;
 6975|  1.78k|            error = ofpacts_parse_copy(value, &pp2, false, OFPACT_CT);
 6976|  1.78k|            *pp->usable_protocols &= usable_protocols2;
 6977|  1.78k|            pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, exec_offset);
 6978|  1.78k|            oc = pp->ofpacts->header;
 6979|  1.78k|        } else {
 6980|    266|            error = xasprintf("invalid argument to \"ct\" action: `%s'", key);
 6981|    266|        }
 6982|  67.7k|        if (error) {
  ------------------
  |  Branch (6982:13): [True: 1.12k, False: 66.6k]
  ------------------
 6983|  1.12k|            break;
 6984|  1.12k|        }
 6985|  67.7k|    }
 6986|  11.1k|    if (!error && oc->flags & NX_CT_F_FORCE && !(oc->flags & NX_CT_F_COMMIT)) {
  ------------------
  |  Branch (6986:9): [True: 10.0k, False: 1.12k]
  |  Branch (6986:19): [True: 43, False: 9.97k]
  |  Branch (6986:48): [True: 8, False: 35]
  ------------------
 6987|      8|        error = xasprintf("\"force\" flag requires \"commit\" flag.");
 6988|      8|    }
 6989|       |
 6990|  11.1k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (6990:9): [True: 2, False: 11.1k]
  ------------------
 6991|      2|        free(error);
 6992|      2|        return xasprintf("input too big");
 6993|      2|    }
 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|  2.63k|{
 7108|  2.63k|    ofpact_put_CT_CLEAR(pp->ofpacts);
 7109|       |    return NULL;
 7110|  2.63k|}
ofp-actions.c:parse_NAT:
 7430|  75.3k|{
 7431|  75.3k|    struct ofpact_nat *on = ofpact_put_NAT(pp->ofpacts);
 7432|  75.3k|    char *key, *value;
 7433|       |
 7434|  75.3k|    on->flags = 0;
 7435|  75.3k|    on->range_af = AF_UNSPEC;
 7436|       |
 7437|   135k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (7437:12): [True: 60.4k, False: 75.2k]
  ------------------
 7438|  60.4k|        char *error = NULL;
 7439|       |
 7440|  60.4k|        if (!strcmp(key, "src")) {
  ------------------
  |  Branch (7440:13): [True: 1.35k, False: 59.0k]
  ------------------
 7441|  1.35k|            on->flags |= NX_NAT_F_SRC;
 7442|  1.35k|            error = str_to_nat_range(value, on);
 7443|  59.0k|        } else if (!strcmp(key, "dst")) {
  ------------------
  |  Branch (7443:20): [True: 58.3k, False: 730]
  ------------------
 7444|  58.3k|            on->flags |= NX_NAT_F_DST;
 7445|  58.3k|            error = str_to_nat_range(value, on);
 7446|  58.3k|        } else if (!strcmp(key, "persistent")) {
  ------------------
  |  Branch (7446:20): [True: 197, False: 533]
  ------------------
 7447|    197|            on->flags |= NX_NAT_F_PERSISTENT;
 7448|    533|        } else if (!strcmp(key, "hash")) {
  ------------------
  |  Branch (7448:20): [True: 272, False: 261]
  ------------------
 7449|    272|            on->flags |= NX_NAT_F_PROTO_HASH;
 7450|    272|        } else if (!strcmp(key, "random")) {
  ------------------
  |  Branch (7450:20): [True: 195, False: 66]
  ------------------
 7451|    195|            on->flags |= NX_NAT_F_PROTO_RANDOM;
 7452|    195|        } else {
 7453|     66|            error = xasprintf("invalid key \"%s\" in \"nat\" argument",
 7454|     66|                              key);
 7455|     66|        }
 7456|  60.4k|        if (error) {
  ------------------
  |  Branch (7456:13): [True: 170, False: 60.2k]
  ------------------
 7457|    170|            return error;
 7458|    170|        }
 7459|  60.4k|    }
 7460|  75.2k|    if (on->flags & NX_NAT_F_SRC && on->flags & NX_NAT_F_DST) {
  ------------------
  |  Branch (7460:9): [True: 333, False: 74.8k]
  |  Branch (7460:37): [True: 2, False: 331]
  ------------------
 7461|      2|        return xasprintf("May only specify one of \"src\" or \"dst\".");
 7462|      2|    }
 7463|  75.2k|    if (!(on->flags & NX_NAT_F_SRC || on->flags & NX_NAT_F_DST)) {
  ------------------
  |  Branch (7463:11): [True: 331, False: 74.8k]
  |  Branch (7463:39): [True: 57.4k, False: 17.4k]
  ------------------
 7464|  17.4k|        if (on->flags) {
  ------------------
  |  Branch (7464:13): [True: 15, False: 17.4k]
  ------------------
 7465|     15|            return xasprintf("Flags allowed only with \"src\" or \"dst\".");
 7466|     15|        }
 7467|  17.4k|        if (on->range_af != AF_UNSPEC) {
  ------------------
  |  Branch (7467:13): [True: 0, False: 17.4k]
  ------------------
 7468|      0|            return xasprintf("Range allowed only with \"src\" or \"dst\".");
 7469|      0|        }
 7470|  17.4k|    }
 7471|  75.2k|    if (on->flags & NX_NAT_F_PROTO_HASH && on->flags & NX_NAT_F_PROTO_RANDOM) {
  ------------------
  |  Branch (7471:9): [True: 196, False: 75.0k]
  |  Branch (7471:44): [True: 1, False: 195]
  ------------------
 7472|      1|        return xasprintf("Both \"hash\" and \"random\" are not allowed.");
 7473|      1|    }
 7474|       |
 7475|  75.2k|    return NULL;
 7476|  75.2k|}
ofp-actions.c:str_to_nat_range:
 7366|  59.7k|{
 7367|  59.7k|    char ipv6_s[IPV6_SCAN_LEN + 1];
 7368|  59.7k|    int n = 0;
 7369|       |
 7370|  59.7k|    on->range_af = AF_UNSPEC;
 7371|  59.7k|    if (ovs_scan_len(s, &n, IP_SCAN_FMT,
  ------------------
  |  |  645|  59.7k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (7371:9): [True: 842, False: 58.8k]
  ------------------
 7372|  59.7k|                     IP_SCAN_ARGS(&on->range.addr.ipv4.min))) {
  ------------------
  |  |  647|  59.7k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  59.7k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  59.7k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  59.7k|        &((uint8_t *) ip)[3]
  ------------------
 7373|    842|        on->range_af = AF_INET;
 7374|       |
 7375|    842|        if (s[n] == '-') {
  ------------------
  |  Branch (7375:13): [True: 300, False: 542]
  ------------------
 7376|    300|            n++;
 7377|    300|            if (!ovs_scan_len(s, &n, IP_SCAN_FMT,
  ------------------
  |  |  645|    300|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (7377:17): [True: 1, False: 299]
  ------------------
 7378|    300|                              IP_SCAN_ARGS(&on->range.addr.ipv4.max))
  ------------------
  |  |  647|    300|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|    300|        &((uint8_t *) ip)[1],                               \
  |  |  649|    300|        &((uint8_t *) ip)[2],                               \
  |  |  650|    300|        &((uint8_t *) ip)[3]
  ------------------
 7379|    299|                || (ntohl(on->range.addr.ipv4.max)
  ------------------
  |  Branch (7379:20): [True: 5, False: 294]
  ------------------
 7380|    299|                    < ntohl(on->range.addr.ipv4.min))) {
 7381|      6|                goto error;
 7382|      6|            }
 7383|    300|        }
 7384|  58.8k|    } else if ((ovs_scan_len(s, &n, IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  58.8k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (7384:17): [True: 56.3k, False: 2.51k]
  ------------------
 7385|  2.51k|                || ovs_scan_len(s, &n, "["IPV6_SCAN_FMT"]", ipv6_s))
  ------------------
  |  Branch (7385:20): [True: 1.59k, False: 922]
  ------------------
 7386|  57.9k|               && inet_pton(AF_INET6, ipv6_s, &on->range.addr.ipv6.min) == 1) {
  ------------------
  |  Branch (7386:19): [True: 32.7k, False: 25.1k]
  ------------------
 7387|  32.7k|        on->range_af = AF_INET6;
 7388|       |
 7389|  32.7k|        if (s[n] == '-') {
  ------------------
  |  Branch (7389:13): [True: 1.84k, False: 30.9k]
  ------------------
 7390|  1.84k|            n++;
 7391|  1.84k|            if (!(ovs_scan_len(s, &n, IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  1.84k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (7391:19): [True: 1.66k, False: 184]
  ------------------
 7392|    184|                  || ovs_scan_len(s, &n, "["IPV6_SCAN_FMT"]", ipv6_s))
  ------------------
  |  Branch (7392:22): [True: 175, False: 9]
  ------------------
 7393|  1.84k|                || inet_pton(AF_INET6, ipv6_s, &on->range.addr.ipv6.max) != 1
  ------------------
  |  Branch (7393:20): [True: 6, False: 1.83k]
  ------------------
 7394|  1.83k|                || memcmp(&on->range.addr.ipv6.max, &on->range.addr.ipv6.min,
  ------------------
  |  Branch (7394:20): [True: 8, False: 1.82k]
  ------------------
 7395|  1.83k|                          sizeof on->range.addr.ipv6.max) < 0) {
 7396|     23|                goto error;
 7397|     23|            }
 7398|  1.84k|        }
 7399|  32.7k|    }
 7400|  59.6k|    if (on->range_af != AF_UNSPEC && s[n] == ':') {
  ------------------
  |  Branch (7400:9): [True: 33.5k, False: 26.1k]
  |  Branch (7400:38): [True: 1.28k, False: 32.2k]
  ------------------
 7401|  1.28k|        n++;
 7402|  1.28k|        if (!ovs_scan_len(s, &n, "%"SCNu16, &on->range.proto.min)) {
  ------------------
  |  Branch (7402:13): [True: 3, False: 1.28k]
  ------------------
 7403|      3|            goto error;
 7404|      3|        }
 7405|  1.28k|        if (s[n] == '-') {
  ------------------
  |  Branch (7405:13): [True: 716, False: 564]
  ------------------
 7406|    716|            n++;
 7407|    716|            if (!ovs_scan_len(s, &n, "%"SCNu16, &on->range.proto.max)
  ------------------
  |  Branch (7407:17): [True: 2, False: 714]
  ------------------
 7408|    714|                || on->range.proto.max < on->range.proto.min) {
  ------------------
  |  Branch (7408:20): [True: 1, False: 713]
  ------------------
 7409|      3|                goto error;
 7410|      3|            }
 7411|    716|        }
 7412|  1.28k|    }
 7413|  59.6k|    if (strlen(s) != n) {
  ------------------
  |  Branch (7413:9): [True: 69, False: 59.6k]
  ------------------
 7414|     69|        return xasprintf("garbage (%s) after nat range \"%s\" (pos: %d)",
 7415|     69|                         &s[n], s, n);
 7416|     69|    }
 7417|  59.6k|    return NULL;
 7418|     35|error:
 7419|     35|    return xasprintf("invalid nat range \"%s\"", s);
 7420|  59.6k|}
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|  8.92k|{
 6091|  8.92k|    const size_t clone_offset = ofpacts_pull(pp->ofpacts);
 6092|  8.92k|    struct ofpact_nest *clone = ofpact_put_CLONE(pp->ofpacts);
 6093|  8.92k|    char *error;
 6094|       |
 6095|  8.92k|    ofpbuf_pull(pp->ofpacts, sizeof *clone);
 6096|  8.92k|    error = ofpacts_parse_copy(arg, pp, false, OFPACT_CLONE);
 6097|       |    /* header points to the action list */
 6098|  8.92k|    pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, sizeof *clone);
 6099|  8.92k|    clone = pp->ofpacts->header;
 6100|       |
 6101|  8.92k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (6101:9): [True: 1, False: 8.92k]
  ------------------
 6102|      1|        free(error);
 6103|      1|        return xasprintf("input too big");
 6104|      1|    }
 6105|       |
 6106|  8.92k|    ofpact_finish_CLONE(pp->ofpacts, &clone);
 6107|  8.92k|    ofpbuf_push_uninit(pp->ofpacts, clone_offset);
 6108|  8.92k|    return error;
 6109|  8.92k|}
ofp-actions.c:parse_CHECK_PKT_LARGER:
 7866|    559|{
 7867|    559|    char *value;
 7868|    559|    char *delim;
 7869|    559|    char *key;
 7870|    559|    char *error = set_field_split_str(arg, &key, &value, &delim);
 7871|    559|    if (error) {
  ------------------
  |  Branch (7871:9): [True: 5, False: 554]
  ------------------
 7872|      5|        return error;
 7873|      5|    }
 7874|       |
 7875|    554|    delim[0] = '\0';
 7876|    554|    if (value[strlen(value) - 1] == ')') {
  ------------------
  |  Branch (7876:9): [True: 427, False: 127]
  ------------------
 7877|    427|        value[strlen(value) - 1] = '\0';
 7878|    427|    }
 7879|    554|    struct mf_subfield dst;
 7880|    554|    error = mf_parse_subfield(&dst, key);
 7881|    554|    if (error) {
  ------------------
  |  Branch (7881:9): [True: 25, False: 529]
  ------------------
 7882|     25|        return error;
 7883|     25|    }
 7884|       |
 7885|    529|    if (dst.n_bits != 1) {
  ------------------
  |  Branch (7885:9): [True: 1, False: 528]
  ------------------
 7886|      1|        return xstrdup("Only 1-bit destination field is allowed");
 7887|      1|    }
 7888|       |
 7889|    528|    struct ofpact_check_pkt_larger *check_pkt_larger =
 7890|    528|        ofpact_put_CHECK_PKT_LARGER(pp->ofpacts);
 7891|    528|    error = str_to_u16(value, NULL, &check_pkt_larger->pkt_len);
 7892|    528|    if (error) {
  ------------------
  |  Branch (7892:9): [True: 2, False: 526]
  ------------------
 7893|      2|        return error;
 7894|      2|    }
 7895|    526|    check_pkt_larger->dst = dst;
 7896|       |    return NULL;
 7897|    528|}
ofp-actions.c:parse_DEBUG_RECIRC:
 6596|  1.11k|{
 6597|  1.11k|    ofpact_put_DEBUG_RECIRC(pp->ofpacts);
 6598|       |    return NULL;
 6599|  1.11k|}
ofp-actions.c:parse_DEBUG_SLOW:
 6636|  1.80k|{
 6637|  1.80k|    ofpact_put_DEBUG_SLOW(pp->ofpacts);
 6638|       |    return NULL;
 6639|  1.80k|}
ofp-actions.c:parse_METER:
 7585|    594|{
 7586|    594|    *pp->usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    594|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    594|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    594|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7587|    594|    return str_to_u32(arg, &ofpact_put_METER(pp->ofpacts)->meter_id);
 7588|    594|}
ofp-actions.c:parse_CLEAR_ACTIONS:
 7620|    254|{
 7621|    254|    ofpact_put_CLEAR_ACTIONS(pp->ofpacts);
 7622|       |    return NULL;
 7623|    254|}
ofp-actions.c:parse_WRITE_ACTIONS:
 7658|    789|{
 7659|    789|    size_t ofs = ofpacts_pull(pp->ofpacts);
 7660|    789|    struct ofpact_nest *on;
 7661|    789|    char *error;
 7662|       |
 7663|       |    /* Add a Write-Actions instruction and then pull it off. */
 7664|    789|    ofpact_put(pp->ofpacts, OFPACT_WRITE_ACTIONS, sizeof *on);
 7665|    789|    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|    789|    error = ofpacts_parse(arg, pp, false, OFPACT_WRITE_ACTIONS);
 7675|       |
 7676|       |    /* Put the Write-Actions back on and update its length. */
 7677|    789|    on = ofpbuf_push_uninit(pp->ofpacts, sizeof *on);
 7678|    789|    on->ofpact.len = pp->ofpacts->size;
 7679|       |
 7680|       |    /* Put any previous actions or instructions back on. */
 7681|    789|    ofpbuf_push_uninit(pp->ofpacts, ofs);
 7682|       |
 7683|    789|    return error;
 7684|    789|}
ofp-actions.c:parse_WRITE_METADATA:
 7758|    432|{
 7759|    432|    struct ofpact_metadata *om;
 7760|    432|    char *mask = strchr(arg, '/');
 7761|       |
 7762|    432|    *pp->usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
  ------------------
  |  |   87|    432|#define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
  |  |  ------------------
  |  |  |  |   59|    432|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |   88|    432|                               OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    432|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    432|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    432|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    432|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 7763|       |
 7764|    432|    om = ofpact_put_WRITE_METADATA(pp->ofpacts);
 7765|    432|    if (mask) {
  ------------------
  |  Branch (7765:9): [True: 129, False: 303]
  ------------------
 7766|    129|        char *error;
 7767|       |
 7768|    129|        *mask = '\0';
 7769|    129|        error = str_to_be64(mask + 1, &om->mask);
 7770|    129|        if (error) {
  ------------------
  |  Branch (7770:13): [True: 1, False: 128]
  ------------------
 7771|      1|            return error;
 7772|      1|        }
 7773|    303|    } else {
 7774|    303|        om->mask = OVS_BE64_MAX;
  ------------------
  |  |   44|    303|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 7775|    303|    }
 7776|       |
 7777|    431|    return str_to_be64(arg, &om->metadata);
 7778|    432|}
ofp-actions.c:parse_GOTO_TABLE:
 7939|    214|{
 7940|    214|    struct ofpact_goto_table *ogt = ofpact_put_GOTO_TABLE(pp->ofpacts);
 7941|    214|    if (!ofputil_table_from_string(arg, pp->table_map, &ogt->table_id)) {
  ------------------
  |  Branch (7941:9): [True: 4, False: 210]
  ------------------
 7942|      4|        return xasprintf("unknown table \"%s\"", arg);
 7943|      4|    }
 7944|    210|    return NULL;
 7945|    214|}
ofp-actions.c:parse_set_vlan_vid:
 1613|  1.87k|{
 1614|  1.87k|    struct ofpact_vlan_vid *vlan_vid;
 1615|  1.87k|    uint16_t vid;
 1616|  1.87k|    char *error;
 1617|       |
 1618|  1.87k|    error = str_to_u16(arg, "VLAN VID", &vid);
 1619|  1.87k|    if (error) {
  ------------------
  |  Branch (1619:9): [True: 2, False: 1.87k]
  ------------------
 1620|      2|        return error;
 1621|      2|    }
 1622|       |
 1623|  1.87k|    if (vid & ~VLAN_VID_MASK) {
  ------------------
  |  |  494|  1.87k|#define VLAN_VID_MASK 0x0fff
  ------------------
  |  Branch (1623:9): [True: 7, False: 1.86k]
  ------------------
 1624|      7|        return xasprintf("%s: not a valid VLAN VID", arg);
 1625|      7|    }
 1626|  1.86k|    vlan_vid = ofpact_put_SET_VLAN_VID(pp->ofpacts);
 1627|  1.86k|    vlan_vid->vlan_vid = vid;
 1628|  1.86k|    vlan_vid->push_vlan_if_needed = push_vlan_if_needed;
 1629|       |    return NULL;
 1630|  1.87k|}
ofp-actions.c:parse_set_vlan_pcp:
 1721|  1.64k|{
 1722|  1.64k|    struct ofpact_vlan_pcp *vlan_pcp;
 1723|  1.64k|    uint8_t pcp;
 1724|  1.64k|    char *error;
 1725|       |
 1726|  1.64k|    error = str_to_u8(arg, "VLAN PCP", &pcp);
 1727|  1.64k|    if (error) {
  ------------------
  |  Branch (1727:9): [True: 6, False: 1.63k]
  ------------------
 1728|      6|        return error;
 1729|      6|    }
 1730|       |
 1731|  1.63k|    if (pcp & ~7) {
  ------------------
  |  Branch (1731:9): [True: 4, False: 1.63k]
  ------------------
 1732|      4|        return xasprintf("%s: not a valid VLAN PCP", arg);
 1733|      4|    }
 1734|  1.63k|    vlan_pcp = ofpact_put_SET_VLAN_PCP(pp->ofpacts);
 1735|  1.63k|    vlan_pcp->vlan_pcp = pcp;
 1736|  1.63k|    vlan_pcp->push_vlan_if_needed = push_vlan_if_needed;
 1737|       |    return NULL;
 1738|  1.63k|}
ofp-actions.c:parse_SET_IP_TTL:
 2271|  2.15k|{
 2272|  2.15k|    uint8_t ttl;
 2273|  2.15k|    char *error;
 2274|       |
 2275|  2.15k|    error = str_to_u8(arg, "TTL", &ttl);
 2276|  2.15k|    if (error) {
  ------------------
  |  Branch (2276:9): [True: 38, False: 2.12k]
  ------------------
 2277|     38|        return error;
 2278|     38|    }
 2279|       |
 2280|  2.12k|    ofpact_put_SET_IP_TTL(pp->ofpacts)->ttl = ttl;
 2281|       |    return NULL;
 2282|  2.15k|}
ofp-actions.c:parse_pop_vlan:
 1808|  2.15k|{
 1809|  2.15k|    ofpact_put_STRIP_VLAN(pp->ofpacts)->ofpact.raw = OFPAT_RAW11_POP_VLAN;
 1810|       |    return NULL;
 1811|  2.15k|}
ofp-actions.c:parse_set_tunnel:
 4150|  1.25k|{
 4151|  1.25k|    struct ofpact_tunnel *tunnel;
 4152|       |
 4153|  1.25k|    tunnel = ofpact_put_SET_TUNNEL(pp->ofpacts);
 4154|  1.25k|    tunnel->ofpact.raw = raw;
 4155|  1.25k|    return str_to_u64(arg, &tunnel->tun_id);
 4156|  1.25k|}
ofp-actions.c:parse_reg_load:
 3280|    592|{
 3281|    592|    struct mf_subfield dst;
 3282|    592|    char *key, *value_str;
 3283|    592|    union mf_value value;
 3284|    592|    char *error;
 3285|       |
 3286|    592|    error = set_field_split_str(arg, &key, &value_str, NULL);
 3287|    592|    if (error) {
  ------------------
  |  Branch (3287:9): [True: 2, False: 590]
  ------------------
 3288|      2|        return error;
 3289|      2|    }
 3290|       |
 3291|    590|    error = mf_parse_subfield(&dst, key);
 3292|    590|    if (error) {
  ------------------
  |  Branch (3292:9): [True: 6, False: 584]
  ------------------
 3293|      6|        return error;
 3294|      6|    }
 3295|       |
 3296|    584|    if (parse_int_string(value_str, (uint8_t *)&value, dst.field->n_bytes,
  ------------------
  |  Branch (3296:9): [True: 2, False: 582]
  ------------------
 3297|    584|                         &key)) {
 3298|      2|        return xasprintf("%s: cannot parse integer value", arg);
 3299|      2|    }
 3300|       |
 3301|    582|    if (!bitwise_is_all_zeros(&value, dst.field->n_bytes, dst.n_bits,
  ------------------
  |  Branch (3301:9): [True: 1, False: 581]
  ------------------
 3302|    582|                              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|    581|    struct ofpact_set_field *sf = ofpact_put_reg_load(pp->ofpacts, dst.field,
 3314|    581|                                                      NULL, NULL);
 3315|       |
 3316|    581|    bitwise_copy(&value, dst.field->n_bytes, 0, sf->value,
 3317|    581|                 dst.field->n_bytes, dst.ofs, dst.n_bits);
 3318|    581|    bitwise_one(ofpact_set_field_mask(sf), dst.field->n_bytes, dst.ofs,
  ------------------
  |  |  563|    581|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|    581|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|    581|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|    581|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3319|    581|                dst.n_bits);
 3320|       |    return NULL;
 3321|    582|}
ofp-actions.c:parse_bundle_load:
 1538|     15|{
 1539|     15|    return bundle_parse_load(arg, pp->port_map, pp->ofpacts);
 1540|     15|}

ofp-actions.c:put_OFPAT10_OUTPUT:
 4266|  68.8k|put_OFPAT10_OUTPUT(struct ofpbuf *openflow){
 4267|  68.8k|    return ofpact_put_raw(openflow, 1, OFPAT_RAW10_OUTPUT, 0);
 4268|  68.8k|}
ofp-actions.c:put_OFPAT11_OUTPUT:
 4271|  29.6k|put_OFPAT11_OUTPUT(struct ofpbuf *openflow){
 4272|  29.6k|    return ofpact_put_raw(openflow, 2, OFPAT_RAW11_OUTPUT, 0);
 4273|  29.6k|}
ofp-actions.c:put_OFPAT_GROUP:
 4391|    221|put_OFPAT_GROUP(struct ofpbuf *openflow, enum ofp_version version, uint32_t arg){
 4392|    221|    ofpact_put_raw(openflow, version, OFPAT_RAW_GROUP, arg);
 4393|    221|}
ofp-actions.c:put_NXAST_CONTROLLER2:
 4536|  6.96k|put_NXAST_CONTROLLER2(struct ofpbuf *openflow){
 4537|  6.96k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONTROLLER2, 0);
 4538|  6.96k|}
ofp-actions.c:put_NXAST_CONTROLLER:
 4531|    297|put_NXAST_CONTROLLER(struct ofpbuf *openflow){
 4532|    297|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONTROLLER, 0);
 4533|    297|}
ofp-actions.c:put_OFPAT10_ENQUEUE:
 4351|    253|put_OFPAT10_ENQUEUE(struct ofpbuf *openflow){
 4352|    253|    return ofpact_put_raw(openflow, 1, OFPAT_RAW10_ENQUEUE, 0);
 4353|    253|}
ofp-actions.c:put_OFPAT_SET_QUEUE:
 4386|    808|put_OFPAT_SET_QUEUE(struct ofpbuf *openflow, enum ofp_version version, uint32_t arg){
 4387|    808|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_QUEUE, arg);
 4388|    808|}
ofp-actions.c:put_NXAST_POP_QUEUE:
 4476|  1.27k|put_NXAST_POP_QUEUE(struct ofpbuf *openflow){
 4477|  1.27k|    ofpact_put_raw(openflow, 1, NXAST_RAW_POP_QUEUE, 0);
 4478|  1.27k|}
ofp-actions.c:put_NXAST_OUTPUT_REG2:
 4506|    141|put_NXAST_OUTPUT_REG2(struct ofpbuf *openflow){
 4507|    141|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_REG2, 0);
 4508|    141|}
ofp-actions.c:put_NXAST_OUTPUT_REG:
 4501|    234|put_NXAST_OUTPUT_REG(struct ofpbuf *openflow){
 4502|    234|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_REG, 0);
 4503|    234|}
ofp-actions.c:put_NXAST_BUNDLE_LOAD:
 4496|      5|put_NXAST_BUNDLE_LOAD(struct ofpbuf *openflow){
 4497|      5|    return ofpact_put_raw(openflow, 1, NXAST_RAW_BUNDLE_LOAD, 0);
 4498|      5|}
ofp-actions.c:put_NXAST_BUNDLE:
 4491|  1.52k|put_NXAST_BUNDLE(struct ofpbuf *openflow){
 4492|  1.52k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_BUNDLE, 0);
 4493|  1.52k|}
ofp-actions.c:put_OFPAT12_SET_FIELD:
 4411|  6.12k|put_OFPAT12_SET_FIELD(struct ofpbuf *openflow){
 4412|  6.12k|    return ofpact_put_raw(openflow, 3, OFPAT_RAW12_SET_FIELD, 0);
 4413|  6.12k|}
ofp-actions.c:put_NXAST_REG_LOAD2:
 4426|  9.15k|put_NXAST_REG_LOAD2(struct ofpbuf *openflow){
 4427|  9.15k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_LOAD2, 0);
 4428|  9.15k|}
ofp-actions.c:put_NXAST_REG_LOAD:
 4421|   116k|put_NXAST_REG_LOAD(struct ofpbuf *openflow){
 4422|   116k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_LOAD, 0);
 4423|   116k|}
ofp-actions.c:put_OFPAT10_SET_VLAN_VID:
 4276|  1.08k|put_OFPAT10_SET_VLAN_VID(struct ofpbuf *openflow, uint16_t arg){
 4277|  1.08k|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_SET_VLAN_VID, arg);
 4278|  1.08k|}
ofp-actions.c:put_OFPAT10_SET_VLAN_PCP:
 4281|    972|put_OFPAT10_SET_VLAN_PCP(struct ofpbuf *openflow, uint8_t arg){
 4282|    972|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_SET_VLAN_PCP, arg);
 4283|    972|}
ofp-actions.c:put_OFPAT10_STRIP_VLAN:
 4301|  1.58k|put_OFPAT10_STRIP_VLAN(struct ofpbuf *openflow){
 4302|  1.58k|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_STRIP_VLAN, 0);
 4303|  1.58k|}
ofp-actions.c:put_OFPAT11_PUSH_VLAN:
 4296|  1.32k|put_OFPAT11_PUSH_VLAN(struct ofpbuf *openflow, ovs_be16 arg){
 4297|       |    ofpact_put_raw(openflow, 2, OFPAT_RAW11_PUSH_VLAN, ntohs(arg));
 4298|  1.32k|}
ofp-actions.c:put_OFPAT11_SET_VLAN_VID:
 4286|  1.05k|put_OFPAT11_SET_VLAN_VID(struct ofpbuf *openflow, uint16_t arg){
 4287|  1.05k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_VLAN_VID, arg);
 4288|  1.05k|}
ofp-actions.c:put_OFPAT11_SET_VLAN_PCP:
 4291|  1.37k|put_OFPAT11_SET_VLAN_PCP(struct ofpbuf *openflow, uint8_t arg){
 4292|  1.37k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_VLAN_PCP, arg);
 4293|  1.37k|}
ofp-actions.c:put_OFPAT11_POP_VLAN:
 4306|  1.26k|put_OFPAT11_POP_VLAN(struct ofpbuf *openflow){
 4307|  1.26k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_POP_VLAN, 0);
 4308|  1.26k|}
ofp-actions.c:put_OFPAT_SET_DL_SRC:
 4311|    196|put_OFPAT_SET_DL_SRC(struct ofpbuf *openflow, enum ofp_version version){
 4312|    196|    return ofpact_put_raw(openflow, version, OFPAT_RAW_SET_DL_SRC, 0);
 4313|    196|}
ofp-actions.c:put_OFPAT_SET_DL_DST:
 4316|     67|put_OFPAT_SET_DL_DST(struct ofpbuf *openflow, enum ofp_version version){
 4317|     67|    return ofpact_put_raw(openflow, version, OFPAT_RAW_SET_DL_DST, 0);
 4318|     67|}
ofp-actions.c:put_OFPAT_SET_NW_SRC:
 4321|    194|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|    194|}
ofp-actions.c:put_OFPAT_SET_NW_DST:
 4326|    289|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|    289|}
ofp-actions.c:put_OFPAT_SET_NW_TOS:
 4331|  1.33k|put_OFPAT_SET_NW_TOS(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4332|  1.33k|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_NW_TOS, arg);
 4333|  1.33k|}
ofp-actions.c:put_OFPAT_SET_TP_SRC:
 4341|    388|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|    388|}
ofp-actions.c:put_OFPAT_SET_TP_DST:
 4346|    496|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|    496|}
ofp-actions.c:put_OFPAT11_SET_NW_ECN:
 4336|    202|put_OFPAT11_SET_NW_ECN(struct ofpbuf *openflow, uint8_t arg){
 4337|    202|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_NW_ECN, arg);
 4338|    202|}
ofp-actions.c:put_OFPAT11_SET_NW_TTL:
 4396|    451|put_OFPAT11_SET_NW_TTL(struct ofpbuf *openflow, uint8_t arg){
 4397|    451|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_NW_TTL, arg);
 4398|    451|}
ofp-actions.c:put_NXAST_REG_MOVE:
 4441|    395|put_NXAST_REG_MOVE(struct ofpbuf *openflow){
 4442|    395|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_MOVE, 0);
 4443|    395|}
ofp-actions.c:put_NXAST_STACK_PUSH:
 4546|    470|put_NXAST_STACK_PUSH(struct ofpbuf *openflow){
 4547|    470|    return ofpact_put_raw(openflow, 1, NXAST_RAW_STACK_PUSH, 0);
 4548|    470|}
ofp-actions.c:put_NXAST_STACK_POP:
 4551|  1.84k|put_NXAST_STACK_POP(struct ofpbuf *openflow){
 4552|  1.84k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_STACK_POP, 0);
 4553|  1.84k|}
ofp-actions.c:put_NXAST_DEC_TTL_CNT_IDS:
 4406|  1.95k|put_NXAST_DEC_TTL_CNT_IDS(struct ofpbuf *openflow){
 4407|  1.95k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_DEC_TTL_CNT_IDS, 0);
 4408|  1.95k|}
ofp-actions.c:put_OFPAT_DEC_NW_TTL:
 4401|    710|put_OFPAT_DEC_NW_TTL(struct ofpbuf *openflow, enum ofp_version version){
 4402|    710|    ofpact_put_raw(openflow, version, OFPAT_RAW_DEC_NW_TTL, 0);
 4403|    710|}
ofp-actions.c:put_OFPAT_SET_MPLS_LABEL:
 4356|  1.61k|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|  1.61k|}
ofp-actions.c:put_OFPAT_SET_MPLS_TC:
 4361|    844|put_OFPAT_SET_MPLS_TC(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4362|    844|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_TC, arg);
 4363|    844|}
ofp-actions.c:put_OFPAT_SET_MPLS_TTL:
 4366|    844|put_OFPAT_SET_MPLS_TTL(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4367|    844|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_TTL, arg);
 4368|    844|}
ofp-actions.c:put_OFPAT_DEC_MPLS_TTL:
 4371|  2.83k|put_OFPAT_DEC_MPLS_TTL(struct ofpbuf *openflow, enum ofp_version version){
 4372|  2.83k|    ofpact_put_raw(openflow, version, OFPAT_RAW_DEC_MPLS_TTL, 0);
 4373|  2.83k|}
ofp-actions.c:put_OFPAT_PUSH_MPLS:
 4376|    529|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|    529|}
ofp-actions.c:put_OFPAT_POP_MPLS:
 4381|  2.10k|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.10k|}
ofp-actions.c:put_NXAST_DEC_NSH_TTL:
 4616|    509|put_NXAST_DEC_NSH_TTL(struct ofpbuf *openflow){
 4617|    509|    ofpact_put_raw(openflow, 4, NXAST_RAW_DEC_NSH_TTL, 0);
 4618|    509|}
ofp-actions.c:put_NXAST_DELETE_FIELD:
 4626|    260|put_NXAST_DELETE_FIELD(struct ofpbuf *openflow){
 4627|    260|    return ofpact_put_raw(openflow, 1, NXAST_RAW_DELETE_FIELD, 0);
 4628|    260|}
ofp-actions.c:put_NXAST_ENCAP:
 4606|  1.50k|put_NXAST_ENCAP(struct ofpbuf *openflow){
 4607|  1.50k|    return ofpact_put_raw(openflow, 4, NXAST_RAW_ENCAP, 0);
 4608|  1.50k|}
ofp-actions.c:put_NXAST_DECAP:
 4611|  1.95k|put_NXAST_DECAP(struct ofpbuf *openflow){
 4612|  1.95k|    return ofpact_put_raw(openflow, 4, NXAST_RAW_DECAP, 0);
 4613|  1.95k|}
ofp-actions.c:put_NXAST_SET_TUNNEL:
 4466|    399|put_NXAST_SET_TUNNEL(struct ofpbuf *openflow, uint32_t arg){
 4467|    399|    ofpact_put_raw(openflow, 1, NXAST_RAW_SET_TUNNEL, arg);
 4468|    399|}
ofp-actions.c:put_NXAST_SET_TUNNEL64:
 4471|    533|put_NXAST_SET_TUNNEL64(struct ofpbuf *openflow, uint64_t arg){
 4472|    533|    ofpact_put_raw(openflow, 1, NXAST_RAW_SET_TUNNEL64, arg);
 4473|    533|}
ofp-actions.c:put_NXAST_FIN_TIMEOUT:
 4526|  1.12k|put_NXAST_FIN_TIMEOUT(struct ofpbuf *openflow){
 4527|  1.12k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_FIN_TIMEOUT, 0);
 4528|  1.12k|}
ofp-actions.c:put_NXAST_RESUBMIT_TABLE_CT:
 4461|    391|put_NXAST_RESUBMIT_TABLE_CT(struct ofpbuf *openflow){
 4462|    391|    return ofpact_put_raw(openflow, 1, NXAST_RAW_RESUBMIT_TABLE_CT, 0);
 4463|    391|}
ofp-actions.c:put_NXAST_RESUBMIT_TABLE:
 4456|    653|put_NXAST_RESUBMIT_TABLE(struct ofpbuf *openflow){
 4457|    653|    return ofpact_put_raw(openflow, 1, NXAST_RAW_RESUBMIT_TABLE, 0);
 4458|    653|}
ofp-actions.c:put_NXAST_LEARN2:
 4516|    851|put_NXAST_LEARN2(struct ofpbuf *openflow){
 4517|    851|    return ofpact_put_raw(openflow, 1, NXAST_RAW_LEARN2, 0);
 4518|    851|}
ofp-actions.c:put_NXAST_LEARN:
 4511|  31.7k|put_NXAST_LEARN(struct ofpbuf *openflow){
 4512|  31.7k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_LEARN, 0);
 4513|  31.7k|}
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|    724|put_NXAST_MULTIPATH(struct ofpbuf *openflow){
 4487|    724|    return ofpact_put_raw(openflow, 1, NXAST_RAW_MULTIPATH, 0);
 4488|    724|}
ofp-actions.c:put_NXAST_NOTE:
 4481|  2.00k|put_NXAST_NOTE(struct ofpbuf *openflow){
 4482|  2.00k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_NOTE, 0);
 4483|  2.00k|}
ofp-actions.c:put_NXAST_EXIT:
 4521|    917|put_NXAST_EXIT(struct ofpbuf *openflow){
 4522|    917|    ofpact_put_raw(openflow, 1, NXAST_RAW_EXIT, 0);
 4523|    917|}
ofp-actions.c:put_NXAST_SAMPLE4:
 4571|    498|put_NXAST_SAMPLE4(struct ofpbuf *openflow){
 4572|    498|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE4, 0);
 4573|    498|}
ofp-actions.c:put_NXAST_SAMPLE3:
 4566|    289|put_NXAST_SAMPLE3(struct ofpbuf *openflow){
 4567|    289|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE3, 0);
 4568|    289|}
ofp-actions.c:put_NXAST_SAMPLE2:
 4561|     86|put_NXAST_SAMPLE2(struct ofpbuf *openflow){
 4562|     86|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE2, 0);
 4563|     86|}
ofp-actions.c:put_NXAST_SAMPLE:
 4556|    777|put_NXAST_SAMPLE(struct ofpbuf *openflow){
 4557|    777|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE, 0);
 4558|    777|}
ofp-actions.c:put_NXAST_CT:
 4581|  9.08k|put_NXAST_CT(struct ofpbuf *openflow){
 4582|  9.08k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CT, 0);
 4583|  9.08k|}
ofp-actions.c:put_NXAST_CT_CLEAR:
 4601|  2.03k|put_NXAST_CT_CLEAR(struct ofpbuf *openflow){
 4602|  2.03k|    ofpact_put_raw(openflow, 1, NXAST_RAW_CT_CLEAR, 0);
 4603|  2.03k|}
ofp-actions.c:put_NXAST_NAT:
 4586|  5.06k|put_NXAST_NAT(struct ofpbuf *openflow){
 4587|  5.06k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_NAT, 0);
 4588|  5.06k|}
ofp-actions.c:put_NXAST_OUTPUT_TRUNC:
 4591|    938|put_NXAST_OUTPUT_TRUNC(struct ofpbuf *openflow){
 4592|    938|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_TRUNC, 0);
 4593|    938|}
ofp-actions.c:put_NXAST_CLONE:
 4596|  6.19k|put_NXAST_CLONE(struct ofpbuf *openflow){
 4597|  6.19k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CLONE, 0);
 4598|  6.19k|}
ofp-actions.c:put_NXAST_CHECK_PKT_LARGER:
 4621|    407|put_NXAST_CHECK_PKT_LARGER(struct ofpbuf *openflow){
 4622|    407|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CHECK_PKT_LARGER, 0);
 4623|    407|}
ofp-actions.c:put_NXAST_DEBUG_RECIRC:
 4636|    834|put_NXAST_DEBUG_RECIRC(struct ofpbuf *openflow){
 4637|    834|    ofpact_put_raw(openflow, 1, NXAST_RAW_DEBUG_RECIRC, 0);
 4638|    834|}
ofp-actions.c:put_NXAST_DEBUG_SLOW:
 4631|  1.77k|put_NXAST_DEBUG_SLOW(struct ofpbuf *openflow){
 4632|  1.77k|    ofpact_put_raw(openflow, 1, NXAST_RAW_DEBUG_SLOW, 0);
 4633|  1.77k|}
ofp-actions.c:put_NXAST_WRITE_METADATA:
 4541|      6|put_NXAST_WRITE_METADATA(struct ofpbuf *openflow){
 4542|      6|    return ofpact_put_raw(openflow, 1, NXAST_RAW_WRITE_METADATA, 0);
 4543|      6|}

encode_ed_prop:
   95|    786|{
   96|    786|    size_t prop_len;
   97|       |
   98|    786|    switch ((*prop)->prop_class) {
   99|    786|    case OFPPPC_NSH: {
  ------------------
  |  Branch (99:5): [True: 786, False: 0]
  ------------------
  100|    786|        switch ((*prop)->type) {
  101|    786|        case OFPPPT_PROP_NSH_MDTYPE: {
  ------------------
  |  Branch (101:9): [True: 786, False: 0]
  ------------------
  102|    786|            struct ofpact_ed_prop_nsh_md_type *pnmt =
  103|    786|                ALIGNED_CAST(struct ofpact_ed_prop_nsh_md_type *, *prop);
  ------------------
  |  |  434|    786|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  104|    786|            struct ofp_ed_prop_nsh_md_type *opnmt =
  105|    786|                    ofpbuf_put_uninit(out, sizeof(*opnmt));
  106|    786|            opnmt->header.prop_class = htons((*prop)->prop_class);
  107|    786|            opnmt->header.type = (*prop)->type;
  108|    786|            opnmt->header.len =
  109|    786|                    offsetof(struct ofp_ed_prop_nsh_md_type, pad);
  110|    786|            opnmt->md_type = pnmt->md_type;
  111|    786|            memset(opnmt->pad, 0, sizeof opnmt->pad);
  112|    786|            prop_len = sizeof(*pnmt);
  113|    786|            break;
  114|      0|        }
  115|      0|        case OFPPPT_PROP_NSH_TLV: {
  ------------------
  |  Branch (115:9): [True: 0, False: 786]
  ------------------
  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: 786]
  ------------------
  133|      0|            return OFPERR_OFPBAC_BAD_ARGUMENT;
  134|    786|        }
  135|    786|        break;
  136|    786|    }
  137|    786|    default:
  ------------------
  |  Branch (137:5): [True: 0, False: 786]
  ------------------
  138|      0|        return OFPERR_OFPBAC_BAD_ARGUMENT;
  139|    786|    }
  140|       |
  141|    786|    *prop = ALIGNED_CAST(const struct ofpact_ed_prop *,
  ------------------
  |  |  434|    786|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  142|    786|                         ((char *)(*prop) + prop_len));
  143|    786|    return 0;
  144|    786|}
parse_ed_prop_class:
  149|  2.18k|{
  150|  2.18k|    if (!strcmp(str,"basic")) {
  ------------------
  |  Branch (150:9): [True: 0, False: 2.18k]
  ------------------
  151|      0|        *prop_class = OFPPPC_BASIC;
  152|  2.18k|    } else if (!strcmp(str,"ethernet")) {
  ------------------
  |  Branch (152:16): [True: 516, False: 1.66k]
  ------------------
  153|    516|        *prop_class = OFPPPC_BASIC;
  154|  1.66k|    } else if (!strcmp(str,"mpls")) {
  ------------------
  |  Branch (154:16): [True: 234, False: 1.43k]
  ------------------
  155|    234|        *prop_class = OFPPPC_MPLS;
  156|  1.43k|    } else if (!strcmp(str,"mpls_mc")) {
  ------------------
  |  Branch (156:16): [True: 372, False: 1.05k]
  ------------------
  157|    372|        *prop_class = OFPPPC_MPLS;
  158|  1.05k|    } else if (!strcmp(str,"gre")) {
  ------------------
  |  Branch (158:16): [True: 0, False: 1.05k]
  ------------------
  159|      0|        *prop_class = OFPPPC_GRE;
  160|  1.05k|    } else if (!strcmp(str,"gtp")) {
  ------------------
  |  Branch (160:16): [True: 0, False: 1.05k]
  ------------------
  161|      0|        *prop_class = OFPPPC_GTP;
  162|  1.05k|    } else if (!strcmp(str,"nsh")) {
  ------------------
  |  Branch (162:16): [True: 1.05k, False: 0]
  ------------------
  163|  1.05k|        *prop_class = OFPPPC_NSH;
  164|  1.05k|    } else {
  165|      0|        return false;
  166|      0|    }
  167|  2.18k|    return true;
  168|  2.18k|}
parse_ed_prop_type:
  174|  1.35k|{
  175|  1.35k|    switch (prop_class) {
  176|  1.34k|    case OFPPPC_NSH:
  ------------------
  |  Branch (176:5): [True: 1.34k, False: 4]
  ------------------
  177|  1.34k|        if (!strcmp(str, "md_type")) {
  ------------------
  |  Branch (177:13): [True: 1.29k, False: 50]
  ------------------
  178|  1.29k|            *type = OFPPPT_PROP_NSH_MDTYPE;
  179|  1.29k|            return true;
  180|  1.29k|        } else if (!strcmp(str, "tlv")) {
  ------------------
  |  Branch (180:20): [True: 3, False: 47]
  ------------------
  181|      3|            *type = OFPPPT_PROP_NSH_TLV;
  182|      3|            return true;
  183|     47|        } else {
  184|     47|            return false;
  185|     47|        }
  186|      4|    default:
  ------------------
  |  Branch (186:5): [True: 4, False: 1.34k]
  ------------------
  187|       |        return false;
  188|  1.35k|    }
  189|  1.35k|}
parse_ed_prop_value:
  201|  1.30k|{
  202|  1.30k|    char *error = NULL;
  203|       |
  204|  1.30k|    if (value == NULL || *value == '\0') {
  ------------------
  |  Branch (204:9): [True: 0, False: 1.30k]
  |  Branch (204:26): [True: 5, False: 1.29k]
  ------------------
  205|      5|        return xstrdup("Value missing for encap property");
  206|      5|    }
  207|       |
  208|  1.29k|    switch (prop_class) {
  209|  1.29k|    case OFPPPC_NSH:
  ------------------
  |  Branch (209:5): [True: 1.29k, False: 0]
  ------------------
  210|  1.29k|        switch (prop_type) {
  211|  1.29k|        case OFPPPT_PROP_NSH_MDTYPE: {
  ------------------
  |  Branch (211:9): [True: 1.29k, False: 1]
  ------------------
  212|       |            /* Format: "<md_type>:uint8_t". */
  213|  1.29k|            uint8_t md_type;
  214|  1.29k|            error = str_to_u8(value, "md_type", &md_type);
  215|  1.29k|            if (error != NULL) {
  ------------------
  |  Branch (215:17): [True: 1, False: 1.29k]
  ------------------
  216|      1|                return error;
  217|      1|            }
  218|  1.29k|            if (md_type < 1 || md_type > 2) {
  ------------------
  |  Branch (218:17): [True: 2, False: 1.29k]
  |  Branch (218:32): [True: 1, False: 1.29k]
  ------------------
  219|      3|                return xstrdup("invalid md_type");
  220|      3|            }
  221|  1.29k|            struct ofpact_ed_prop_nsh_md_type *pnmt =
  222|  1.29k|                    ofpbuf_put_uninit(out, sizeof(*pnmt));
  223|  1.29k|            pnmt->header.prop_class = prop_class;
  224|  1.29k|            pnmt->header.type = prop_type;
  225|  1.29k|            pnmt->header.len =
  226|  1.29k|                    offsetof(struct ofp_ed_prop_nsh_md_type, pad);
  227|  1.29k|            pnmt->md_type = md_type;
  228|  1.29k|            break;
  229|  1.29k|        }
  230|      1|        case OFPPPT_PROP_NSH_TLV: {
  ------------------
  |  Branch (230:9): [True: 1, False: 1.29k]
  ------------------
  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.29k]
  ------------------
  260|       |            /* Unsupported property types rejected before. */
  261|      0|            OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  262|  1.29k|        }
  263|  1.29k|        break;
  264|  1.29k|    default:
  ------------------
  |  Branch (264:5): [True: 0, False: 1.29k]
  ------------------
  265|       |        /* Unsupported property classes rejected before. */
  266|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  267|  1.29k|    }
  268|       |
  269|  1.29k|    return NULL;
  270|  1.29k|}

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

ofputil_encode_flow_mod:
  374|  9.82k|{
  375|  9.82k|    enum ofp_version version = ofputil_protocol_to_ofp_version(protocol);
  376|  9.82k|    ovs_be16 raw_flags = ofputil_encode_flow_mod_flags(fm->flags, version);
  377|  9.82k|    struct ofpbuf *msg;
  378|       |
  379|  9.82k|    struct match match;
  380|  9.82k|    minimatch_expand(&fm->match, &match);
  381|       |
  382|  9.82k|    switch (protocol) {
  383|    201|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (383:5): [True: 201, False: 9.62k]
  ------------------
  384|    316|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (384:5): [True: 115, False: 9.71k]
  ------------------
  385|    698|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (385:5): [True: 382, False: 9.44k]
  ------------------
  386|    698|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (386:5): [True: 0, False: 9.82k]
  ------------------
  387|    698|    case OFPUTIL_P_OF15_OXM: {
  ------------------
  |  Branch (387:5): [True: 0, False: 9.82k]
  ------------------
  388|    698|        struct ofp11_flow_mod *ofm;
  389|    698|        int tailroom;
  390|       |
  391|    698|        tailroom = ofputil_match_typical_len(protocol) + fm->ofpacts_len;
  392|    698|        msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, version, tailroom);
  393|    698|        ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
  394|    698|        if ((protocol == OFPUTIL_P_OF11_STD
  ------------------
  |  Branch (394:14): [True: 201, False: 497]
  ------------------
  395|    201|             && (fm->command == OFPFC_MODIFY ||
  ------------------
  |  Branch (395:18): [True: 31, False: 170]
  ------------------
  396|    170|                 fm->command == OFPFC_MODIFY_STRICT)
  ------------------
  |  Branch (396:18): [True: 78, False: 92]
  ------------------
  397|    109|             && fm->cookie_mask == htonll(0))
  ------------------
  |  Branch (397:17): [True: 54, False: 55]
  ------------------
  398|    644|            || fm->command == OFPFC_ADD) {
  ------------------
  |  Branch (398:16): [True: 185, False: 459]
  ------------------
  399|    239|            ofm->cookie = fm->new_cookie;
  400|    459|        } else {
  401|    459|            ofm->cookie = fm->cookie & fm->cookie_mask;
  402|    459|        }
  403|    698|        ofm->cookie_mask = fm->cookie_mask;
  404|    698|        if (fm->table_id != OFPTT_ALL
  ------------------
  |  Branch (404:13): [True: 1, False: 697]
  ------------------
  405|    697|            || (protocol != OFPUTIL_P_OF11_STD
  ------------------
  |  Branch (405:17): [True: 497, False: 200]
  ------------------
  406|    497|                && (fm->command == OFPFC_DELETE ||
  ------------------
  |  Branch (406:21): [True: 4, False: 493]
  ------------------
  407|    493|                    fm->command == OFPFC_DELETE_STRICT))) {
  ------------------
  |  Branch (407:21): [True: 3, False: 490]
  ------------------
  408|      8|            ofm->table_id = fm->table_id;
  409|    690|        } else {
  410|    690|            ofm->table_id = 0;
  411|    690|        }
  412|    698|        ofm->command = fm->command;
  413|    698|        ofm->idle_timeout = htons(fm->idle_timeout);
  414|    698|        ofm->hard_timeout = htons(fm->hard_timeout);
  415|    698|        ofm->priority = htons(fm->priority);
  416|    698|        ofm->buffer_id = htonl(fm->buffer_id);
  417|    698|        ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
  418|    698|        ofm->out_group = htonl(fm->out_group);
  419|    698|        ofm->flags = raw_flags;
  420|    698|        if (version >= OFP14_VERSION && fm->command == OFPFC_ADD) {
  ------------------
  |  Branch (420:13): [True: 0, False: 698]
  |  Branch (420:41): [True: 0, False: 0]
  ------------------
  421|      0|            ofm->importance = htons(fm->importance);
  422|    698|        } else {
  423|    698|            ofm->importance = 0;
  424|    698|        }
  425|    698|        ofputil_put_ofp11_match(msg, &match, protocol);
  426|    698|        ofpacts_put_openflow_instructions(fm->ofpacts, fm->ofpacts_len, msg,
  427|    698|                                          version);
  428|    698|        break;
  429|    698|    }
  430|       |
  431|  4.86k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (431:5): [True: 4.86k, False: 4.96k]
  ------------------
  432|  5.13k|    case OFPUTIL_P_OF10_STD_TID: {
  ------------------
  |  Branch (432:5): [True: 269, False: 9.55k]
  ------------------
  433|  5.13k|        struct ofp10_flow_mod *ofm;
  434|       |
  435|  5.13k|        msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
  436|  5.13k|                           fm->ofpacts_len);
  437|  5.13k|        ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
  438|  5.13k|        ofputil_match_to_ofp10_match(&match, &ofm->match);
  439|  5.13k|        ofm->cookie = fm->new_cookie;
  440|  5.13k|        ofm->command = ofputil_tid_command(fm, protocol);
  441|  5.13k|        ofm->idle_timeout = htons(fm->idle_timeout);
  442|  5.13k|        ofm->hard_timeout = htons(fm->hard_timeout);
  443|  5.13k|        ofm->priority = htons(fm->priority);
  444|  5.13k|        ofm->buffer_id = htonl(fm->buffer_id);
  445|  5.13k|        ofm->out_port = htons(ofp_to_u16(fm->out_port));
  446|  5.13k|        ofm->flags = raw_flags;
  447|  5.13k|        ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
  448|  5.13k|                                     version);
  449|  5.13k|        break;
  450|  4.86k|    }
  451|       |
  452|  3.98k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (452:5): [True: 3.98k, False: 5.83k]
  ------------------
  453|  3.99k|    case OFPUTIL_P_OF10_NXM_TID: {
  ------------------
  |  Branch (453:5): [True: 11, False: 9.81k]
  ------------------
  454|  3.99k|        struct nx_flow_mod *nfm;
  455|  3.99k|        int match_len;
  456|       |
  457|  3.99k|        msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
  458|  3.99k|                           NXM_TYPICAL_LEN + fm->ofpacts_len);
  ------------------
  |  |  179|  3.99k|#define NXM_TYPICAL_LEN 64
  ------------------
  459|  3.99k|        nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
  460|  3.99k|        nfm->command = ofputil_tid_command(fm, protocol);
  461|  3.99k|        nfm->cookie = fm->new_cookie;
  462|  3.99k|        match_len = nx_put_match(msg, &match, fm->cookie, fm->cookie_mask);
  463|  3.99k|        nfm = msg->msg;
  464|  3.99k|        nfm->idle_timeout = htons(fm->idle_timeout);
  465|  3.99k|        nfm->hard_timeout = htons(fm->hard_timeout);
  466|  3.99k|        nfm->priority = htons(fm->priority);
  467|  3.99k|        nfm->buffer_id = htonl(fm->buffer_id);
  468|  3.99k|        nfm->out_port = htons(ofp_to_u16(fm->out_port));
  469|  3.99k|        nfm->flags = raw_flags;
  470|  3.99k|        nfm->match_len = htons(match_len);
  471|  3.99k|        ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
  472|  3.99k|                                     version);
  473|  3.99k|        break;
  474|  3.98k|    }
  475|       |
  476|      0|    default:
  ------------------
  |  Branch (476:5): [True: 0, False: 9.82k]
  ------------------
  477|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  478|  9.82k|    }
  479|       |
  480|  9.82k|    ofpmsg_update_length(msg);
  481|  9.82k|    return msg;
  482|  9.82k|}
parse_ofp_str:
 1795|  23.3k|{
 1796|  23.3k|    char *string = xstrdup(str_);
 1797|  23.3k|    char *error;
 1798|       |
 1799|  23.3k|    error = parse_ofp_str__(fm, command, string, port_map, table_map,
 1800|  23.3k|                            usable_protocols);
 1801|  23.3k|    if (error) {
  ------------------
  |  Branch (1801:9): [True: 13.3k, False: 10.0k]
  ------------------
 1802|  13.3k|        fm->ofpacts = NULL;
 1803|  13.3k|        fm->ofpacts_len = 0;
 1804|  13.3k|    }
 1805|       |
 1806|  23.3k|    free(string);
 1807|  23.3k|    return error;
 1808|  23.3k|}
parse_ofp_flow_mod_str:
 1825|  23.3k|{
 1826|  23.3k|    char *error = parse_ofp_str(fm, command, string, port_map, table_map,
 1827|  23.3k|                                usable_protocols);
 1828|       |
 1829|  23.3k|    if (!error) {
  ------------------
  |  Branch (1829:9): [True: 10.0k, False: 13.3k]
  ------------------
 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.0k|        struct match match;
 1834|  10.0k|        minimatch_expand(&fm->match, &match);
 1835|  10.0k|        ofputil_normalize_match(&match);
 1836|  10.0k|    }
 1837|       |
 1838|  23.3k|    return error;
 1839|  23.3k|}
ofp-flow.c:ofputil_encode_flow_mod_flags:
   93|  9.82k|{
   94|  9.82k|    const struct ofputil_flow_mod_flag *f;
   95|  9.82k|    uint16_t raw_flags;
   96|       |
   97|  9.82k|    raw_flags = 0;
   98|  68.7k|    for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
  ------------------
  |  Branch (98:38): [True: 58.9k, False: 9.82k]
  ------------------
   99|  58.9k|        if (f->flag & flags
  ------------------
  |  Branch (99:13): [True: 156, False: 58.8k]
  ------------------
  100|    156|            && version >= f->min_version
  ------------------
  |  Branch (100:16): [True: 156, False: 0]
  ------------------
  101|    156|            && (!f->max_version || version <= f->max_version)) {
  ------------------
  |  Branch (101:17): [True: 156, False: 0]
  |  Branch (101:36): [True: 0, False: 0]
  ------------------
  102|    156|            raw_flags |= f->raw_flag;
  103|    156|        }
  104|  58.9k|    }
  105|       |
  106|       |    return htons(raw_flags);
  107|  9.82k|}
ofp-flow.c:ofputil_tid_command:
  363|  9.12k|{
  364|       |    return htons(protocol & OFPUTIL_P_TID
  ------------------
  |  Branch (364:12): [True: 280, False: 8.84k]
  ------------------
  365|  9.12k|                 ? (fm->command & 0xff) | (fm->table_id << 8)
  366|  9.12k|                 : fm->command);
  367|  9.12k|}
ofp-flow.c:parse_ofp_str__:
 1490|  23.3k|{
 1491|  23.3k|    enum {
 1492|  23.3k|        F_OUT_PORT = 1 << 0,
 1493|  23.3k|        F_ACTIONS = 1 << 1,
 1494|  23.3k|        F_IMPORTANCE = 1 << 2,
 1495|  23.3k|        F_TIMEOUT = 1 << 3,
 1496|  23.3k|        F_PRIORITY = 1 << 4,
 1497|  23.3k|        F_FLAGS = 1 << 5,
 1498|  23.3k|    } fields;
 1499|  23.3k|    char *act_str = NULL;
 1500|  23.3k|    char *name, *value;
 1501|       |
 1502|  23.3k|    *usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  23.3k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 1503|       |
 1504|  23.3k|    if (command == -2) {
  ------------------
  |  Branch (1504:9): [True: 2.47k, False: 20.9k]
  ------------------
 1505|  2.47k|        size_t len;
 1506|       |
 1507|  2.47k|        string += strspn(string, " \t\r\n");   /* Skip white space. */
 1508|  2.47k|        len = strcspn(string, ", \t\r\n"); /* Get length of the first token. */
 1509|       |
 1510|  2.47k|        if (!strncmp(string, "add", len)) {
  ------------------
  |  Branch (1510:13): [True: 1, False: 2.47k]
  ------------------
 1511|      1|            command = OFPFC_ADD;
 1512|  2.47k|        } else if (!strncmp(string, "delete", len)) {
  ------------------
  |  Branch (1512:20): [True: 16, False: 2.46k]
  ------------------
 1513|     16|            command = OFPFC_DELETE;
 1514|  2.46k|        } else if (!strncmp(string, "delete_strict", len)) {
  ------------------
  |  Branch (1514:20): [True: 1, False: 2.45k]
  ------------------
 1515|      1|            command = OFPFC_DELETE_STRICT;
 1516|  2.45k|        } else if (!strncmp(string, "modify", len)) {
  ------------------
  |  Branch (1516:20): [True: 1, False: 2.45k]
  ------------------
 1517|      1|            command = OFPFC_MODIFY;
 1518|  2.45k|        } else if (!strncmp(string, "modify_strict", len)) {
  ------------------
  |  Branch (1518:20): [True: 1, False: 2.45k]
  ------------------
 1519|      1|            command = OFPFC_MODIFY_STRICT;
 1520|  2.45k|        } else {
 1521|  2.45k|            len = 0;
 1522|  2.45k|            command = OFPFC_ADD;
 1523|  2.45k|        }
 1524|  2.47k|        string += len;
 1525|  2.47k|    }
 1526|       |
 1527|  23.3k|    switch (command) {
 1528|    966|    case -1:
  ------------------
  |  Branch (1528:5): [True: 966, False: 22.4k]
  ------------------
 1529|    966|        fields = F_OUT_PORT;
 1530|    966|        break;
 1531|       |
 1532|  4.30k|    case OFPFC_ADD:
  ------------------
  |  Branch (1532:5): [True: 4.30k, False: 19.0k]
  ------------------
 1533|  4.30k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS | F_IMPORTANCE;
 1534|  4.30k|        break;
 1535|       |
 1536|  3.34k|    case OFPFC_DELETE:
  ------------------
  |  Branch (1536:5): [True: 3.34k, False: 20.0k]
  ------------------
 1537|  3.34k|        fields = F_OUT_PORT;
 1538|  3.34k|        break;
 1539|       |
 1540|  3.67k|    case OFPFC_DELETE_STRICT:
  ------------------
  |  Branch (1540:5): [True: 3.67k, False: 19.7k]
  ------------------
 1541|  3.67k|        fields = F_OUT_PORT | F_PRIORITY;
 1542|  3.67k|        break;
 1543|       |
 1544|  6.83k|    case OFPFC_MODIFY:
  ------------------
  |  Branch (1544:5): [True: 6.83k, False: 16.5k]
  ------------------
 1545|  6.83k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
 1546|  6.83k|        break;
 1547|       |
 1548|  4.27k|    case OFPFC_MODIFY_STRICT:
  ------------------
  |  Branch (1548:5): [True: 4.27k, False: 19.1k]
  ------------------
 1549|  4.27k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
 1550|  4.27k|        break;
 1551|       |
 1552|      0|    default:
  ------------------
  |  Branch (1552:5): [True: 0, False: 23.3k]
  ------------------
 1553|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 1554|  23.3k|    }
 1555|       |
 1556|  23.3k|    *fm = (struct ofputil_flow_mod) {
 1557|  23.3k|        .priority = OFP_DEFAULT_PRIORITY,
  ------------------
  |  |  138|  23.3k|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
 1558|  23.3k|        .table_id = 0xff,
 1559|  23.3k|        .command = command,
 1560|  23.3k|        .buffer_id = UINT32_MAX,
 1561|  23.3k|        .out_port = OFPP_ANY,
  ------------------
  |  |   80|  23.3k|#define OFPP_ANY OFPP_NONE
  |  |  ------------------
  |  |  |  |   47|  23.3k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  ------------------
  |  |  |  |  |  |  157|  23.3k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1562|  23.3k|        .out_group = OFPG_ANY,
 1563|  23.3k|    };
 1564|       |    /* For modify, by default, don't update the cookie. */
 1565|  23.3k|    if (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT) {
  ------------------
  |  Branch (1565:9): [True: 6.83k, False: 16.5k]
  |  Branch (1565:36): [True: 4.27k, False: 12.2k]
  ------------------
 1566|  11.1k|        fm->new_cookie = OVS_BE64_MAX;
  ------------------
  |  |   44|  11.1k|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 1567|  11.1k|    }
 1568|       |
 1569|  23.3k|    if (fields & F_ACTIONS) {
  ------------------
  |  Branch (1569:9): [True: 15.4k, False: 7.98k]
  ------------------
 1570|  15.4k|        act_str = ofp_extract_actions(string);
 1571|  15.4k|        if (!act_str) {
  ------------------
  |  Branch (1571:13): [True: 185, False: 15.2k]
  ------------------
 1572|    185|            return xstrdup("must specify an action");
 1573|    185|        }
 1574|  15.4k|    }
 1575|       |
 1576|  23.2k|    struct match match = MATCH_CATCHALL_INITIALIZER;
  ------------------
  |  |   47|  23.2k|#define MATCH_CATCHALL_INITIALIZER { .flow = { .dl_type = 0 } }
  ------------------
 1577|   188k|    while (ofputil_parse_key_value(&string, &name, &value)) {
  ------------------
  |  Branch (1577:12): [True: 169k, False: 18.4k]
  ------------------
 1578|   169k|        const struct ofp_protocol *p;
 1579|   169k|        const struct mf_field *mf;
 1580|   169k|        char *error = NULL;
 1581|       |
 1582|   169k|        if (ofp_parse_protocol(name, &p)) {
  ------------------
  |  Branch (1582:13): [True: 13.1k, False: 156k]
  ------------------
 1583|  13.1k|            match_set_dl_type(&match, htons(p->dl_type));
 1584|  13.1k|            if (p->nw_proto) {
  ------------------
  |  Branch (1584:17): [True: 3.67k, False: 9.48k]
  ------------------
 1585|  3.67k|                match_set_nw_proto(&match, p->nw_proto);
 1586|  3.67k|            }
 1587|  13.1k|            match_set_default_packet_type(&match);
 1588|   156k|        } else if (!strcmp(name, "eth")) {
  ------------------
  |  Branch (1588:20): [True: 2.71k, False: 153k]
  ------------------
 1589|  2.71k|            match_set_packet_type(&match, htonl(PT_ETH));
 1590|   153k|        } else if (fields & F_FLAGS && !strcmp(name, "send_flow_rem")) {
  ------------------
  |  Branch (1590:20): [True: 16.1k, False: 137k]
  |  Branch (1590:40): [True: 74, False: 16.0k]
  ------------------
 1591|     74|            fm->flags |= OFPUTIL_FF_SEND_FLOW_REM;
 1592|   153k|        } else if (fields & F_FLAGS && !strcmp(name, "check_overlap")) {
  ------------------
  |  Branch (1592:20): [True: 16.0k, False: 137k]
  |  Branch (1592:40): [True: 199, False: 15.8k]
  ------------------
 1593|    199|            fm->flags |= OFPUTIL_FF_CHECK_OVERLAP;
 1594|   153k|        } else if (fields & F_FLAGS && !strcmp(name, "reset_counts")) {
  ------------------
  |  Branch (1594:20): [True: 15.8k, False: 137k]
  |  Branch (1594:40): [True: 711, False: 15.1k]
  ------------------
 1595|    711|            fm->flags |= OFPUTIL_FF_RESET_COUNTS;
 1596|    711|            *usable_protocols &= OFPUTIL_P_OF12_UP;
  ------------------
  |  |   94|    711|#define OFPUTIL_P_OF12_UP (OFPUTIL_P_OF12_OXM | OFPUTIL_P_OF13_UP)
  |  |  ------------------
  |  |  |  |   95|    711|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   96|    711|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   97|    711|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1597|   152k|        } else if (fields & F_FLAGS && !strcmp(name, "no_packet_counts")) {
  ------------------
  |  Branch (1597:20): [True: 15.1k, False: 137k]
  |  Branch (1597:40): [True: 227, False: 14.8k]
  ------------------
 1598|    227|            fm->flags |= OFPUTIL_FF_NO_PKT_COUNTS;
 1599|    227|            *usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    227|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    227|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    227|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1600|   152k|        } else if (fields & F_FLAGS && !strcmp(name, "no_byte_counts")) {
  ------------------
  |  Branch (1600:20): [True: 14.8k, False: 137k]
  |  Branch (1600:40): [True: 266, False: 14.6k]
  ------------------
 1601|    266|            fm->flags |= OFPUTIL_FF_NO_BYT_COUNTS;
 1602|    266|            *usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    266|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    266|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    266|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1603|   152k|        } else if (!strcmp(name, "no_readonly_table")
  ------------------
  |  Branch (1603:20): [True: 195, False: 152k]
  ------------------
 1604|   152k|                   || !strcmp(name, "allow_hidden_fields")) {
  ------------------
  |  Branch (1604:23): [True: 194, False: 152k]
  ------------------
 1605|       |             /* ignore these fields. */
 1606|   152k|        } else if ((mf = mf_from_name(name)) != NULL) {
  ------------------
  |  Branch (1606:20): [True: 76.2k, False: 75.8k]
  ------------------
 1607|  76.2k|            error = ofp_parse_field(mf, value, port_map,
 1608|  76.2k|                                    &match, usable_protocols);
 1609|  76.2k|        } else if (strchr(name, '[')) {
  ------------------
  |  Branch (1609:20): [True: 60.1k, False: 15.6k]
  ------------------
 1610|  60.1k|            error = parse_subfield(name, value, &match, usable_protocols);
 1611|  60.1k|        } else {
 1612|  15.6k|            if (!*value) {
  ------------------
  |  Branch (1612:17): [True: 1.70k, False: 13.9k]
  ------------------
 1613|  1.70k|                return xasprintf("field %s missing value", name);
 1614|  1.70k|            }
 1615|       |
 1616|  13.9k|            if (!strcmp(name, "table")) {
  ------------------
  |  Branch (1616:17): [True: 7.87k, False: 6.11k]
  ------------------
 1617|  7.87k|                if (!ofputil_table_from_string(value, table_map,
  ------------------
  |  Branch (1617:21): [True: 280, False: 7.59k]
  ------------------
 1618|  7.87k|                                               &fm->table_id)) {
 1619|    280|                    return xasprintf("unknown table \"%s\"", value);
 1620|    280|                }
 1621|  7.59k|                if (fm->table_id != 0xff) {
  ------------------
  |  Branch (1621:21): [True: 7.26k, False: 326]
  ------------------
 1622|  7.26k|                    *usable_protocols &= OFPUTIL_P_TID;
  ------------------
  |  |  103|  7.26k|#define OFPUTIL_P_TID (OFPUTIL_P_OF10_STD_TID | \
  |  |  104|  7.26k|                       OFPUTIL_P_OF10_NXM_TID | \
  |  |  105|  7.26k|                       OFPUTIL_P_OF11_STD |     \
  |  |  106|  7.26k|                       OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|  7.26k|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|  7.26k|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|  7.26k|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|  7.26k|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1623|  7.26k|                }
 1624|  7.59k|            } else if (fields & F_OUT_PORT && !strcmp(name, "out_port")) {
  ------------------
  |  Branch (1624:24): [True: 3.84k, False: 2.27k]
  |  Branch (1624:47): [True: 195, False: 3.65k]
  ------------------
 1625|    195|                if (!ofputil_port_from_string(value, port_map,
  ------------------
  |  Branch (1625:21): [True: 1, False: 194]
  ------------------
 1626|    195|                                              &fm->out_port)) {
 1627|      1|                    error = xasprintf("%s is not a valid OpenFlow port",
 1628|      1|                                      value);
 1629|      1|                }
 1630|  5.92k|            } else if (fields & F_OUT_PORT && !strcmp(name, "out_group")) {
  ------------------
  |  Branch (1630:24): [True: 3.65k, False: 2.27k]
  |  Branch (1630:47): [True: 669, False: 2.98k]
  ------------------
 1631|    669|                *usable_protocols &= OFPUTIL_P_OF11_UP;
  ------------------
  |  |   92|    669|#define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    669|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    669|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    669|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    669|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1632|    669|                if (!ofputil_group_from_string(value, &fm->out_group)) {
  ------------------
  |  Branch (1632:21): [True: 44, False: 625]
  ------------------
 1633|     44|                    error = xasprintf("%s is not a valid OpenFlow group",
 1634|     44|                                      value);
 1635|     44|                }
 1636|  5.25k|            } else if (fields & F_PRIORITY && !strcmp(name, "priority")) {
  ------------------
  |  Branch (1636:24): [True: 3.86k, False: 1.39k]
  |  Branch (1636:47): [True: 340, False: 3.52k]
  ------------------
 1637|    340|                uint16_t priority = 0;
 1638|       |
 1639|    340|                error = str_to_u16(value, name, &priority);
 1640|    340|                fm->priority = priority;
 1641|  4.91k|            } else if (fields & F_TIMEOUT && !strcmp(name, "idle_timeout")) {
  ------------------
  |  Branch (1641:24): [True: 2.27k, False: 2.64k]
  |  Branch (1641:46): [True: 194, False: 2.07k]
  ------------------
 1642|    194|                error = str_to_u16(value, name, &fm->idle_timeout);
 1643|  4.72k|            } else if (fields & F_TIMEOUT && !strcmp(name, "hard_timeout")) {
  ------------------
  |  Branch (1643:24): [True: 2.07k, False: 2.64k]
  |  Branch (1643:46): [True: 194, False: 1.88k]
  ------------------
 1644|    194|                error = str_to_u16(value, name, &fm->hard_timeout);
 1645|  4.52k|            } else if (fields & F_IMPORTANCE && !strcmp(name, "importance")) {
  ------------------
  |  Branch (1645:24): [True: 779, False: 3.74k]
  |  Branch (1645:49): [True: 196, False: 583]
  ------------------
 1646|    196|                error = str_to_u16(value, name, &fm->importance);
 1647|  4.33k|            } else if (!strcmp(name, "cookie")) {
  ------------------
  |  Branch (1647:24): [True: 1.51k, False: 2.81k]
  ------------------
 1648|  1.51k|                char *mask = strchr(value, '/');
 1649|       |
 1650|  1.51k|                if (mask) {
  ------------------
  |  Branch (1650:21): [True: 718, False: 799]
  ------------------
 1651|       |                    /* A mask means we're searching for a cookie. */
 1652|    718|                    if (command == OFPFC_ADD) {
  ------------------
  |  Branch (1652:25): [True: 1, False: 717]
  ------------------
 1653|      1|                        return xstrdup("flow additions cannot use "
 1654|      1|                                       "a cookie mask");
 1655|      1|                    }
 1656|    717|                    *mask = '\0';
 1657|    717|                    error = str_to_be64(value, &fm->cookie);
 1658|    717|                    if (error) {
  ------------------
  |  Branch (1658:25): [True: 11, False: 706]
  ------------------
 1659|     11|                        return error;
 1660|     11|                    }
 1661|    706|                    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|    706|                    if (fm->cookie_mask != htonll(0)) {
  ------------------
  |  Branch (1665:25): [True: 555, False: 151]
  ------------------
 1666|    555|                        *usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
  ------------------
  |  |   87|    555|#define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
  |  |  ------------------
  |  |  |  |   59|    555|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |   88|    555|                               OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    555|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    555|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    555|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    555|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1667|    555|                    }
 1668|    799|                } else {
 1669|       |                    /* No mask means that the cookie is being set. */
 1670|    799|                    if (command != OFPFC_ADD && command != OFPFC_MODIFY
  ------------------
  |  Branch (1670:25): [True: 591, False: 208]
  |  Branch (1670:49): [True: 324, False: 267]
  ------------------
 1671|    324|                        && command != OFPFC_MODIFY_STRICT) {
  ------------------
  |  Branch (1671:28): [True: 1, False: 323]
  ------------------
 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|    798|                    error = str_to_be64(value, &fm->new_cookie);
 1677|    798|                    fm->modify_cookie = true;
 1678|    798|                }
 1679|  2.81k|            } else if (!strcmp(name, "duration")
  ------------------
  |  Branch (1679:24): [True: 287, False: 2.52k]
  ------------------
 1680|  2.52k|                       || !strcmp(name, "n_packets")
  ------------------
  |  Branch (1680:27): [True: 204, False: 2.32k]
  ------------------
 1681|  2.32k|                       || !strcmp(name, "n_bytes")
  ------------------
  |  Branch (1681:27): [True: 530, False: 1.79k]
  ------------------
 1682|  1.79k|                       || !strcmp(name, "idle_age")
  ------------------
  |  Branch (1682:27): [True: 219, False: 1.57k]
  ------------------
 1683|  1.79k|                       || !strcmp(name, "hard_age")) {
  ------------------
  |  Branch (1683:27): [True: 558, False: 1.01k]
  ------------------
 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.79k|            } else {
 1688|  1.01k|                error = xasprintf("unknown keyword %s", name);
 1689|  1.01k|            }
 1690|  13.9k|        }
 1691|       |
 1692|   167k|        if (error) {
  ------------------
  |  Branch (1692:13): [True: 2.76k, False: 165k]
  ------------------
 1693|  2.76k|            return error;
 1694|  2.76k|        }
 1695|   167k|    }
 1696|       |    /* Copy ethertype to flow->dl_type for matches on packet_type
 1697|       |     * (OFPHTN_ETHERTYPE, ethertype). */
 1698|  18.4k|    if (match.wc.masks.packet_type == OVS_BE32_MAX &&
  ------------------
  |  |   43|  36.9k|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (1698:9): [True: 4.70k, False: 13.7k]
  ------------------
 1699|  4.70k|            pt_ns(match.flow.packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1699:13): [True: 132, False: 4.57k]
  ------------------
 1700|    132|        match.flow.dl_type = pt_ns_type_be(match.flow.packet_type);
 1701|    132|    }
 1702|       |    /* Check for usable protocol interdependencies between match fields. */
 1703|  18.4k|    if (match.flow.dl_type == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1703:9): [True: 991, False: 17.4k]
  ------------------
 1704|    991|        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|    991|        if (wc->masks.nw_proto || wc->masks.nw_tos
  ------------------
  |  Branch (1711:13): [True: 404, False: 587]
  |  Branch (1711:35): [True: 2, False: 585]
  ------------------
 1712|    585|            || wc->masks.tp_src || wc->masks.tp_dst) {
  ------------------
  |  Branch (1712:16): [True: 8, False: 577]
  |  Branch (1712:36): [True: 2, False: 575]
  ------------------
 1713|    416|            *usable_protocols &= OFPUTIL_P_NXM_OXM_ANY;
  ------------------
  |  |   90|    416|#define OFPUTIL_P_NXM_OXM_ANY (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   59|    416|#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|    416|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    416|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    416|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    416|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1714|    416|        }
 1715|    991|    }
 1716|  18.4k|    if (!fm->cookie_mask && fm->new_cookie == OVS_BE64_MAX
  ------------------
  |  |   44|  36.7k|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
  |  Branch (1716:9): [True: 18.2k, False: 162]
  |  Branch (1716:29): [True: 10.4k, False: 7.86k]
  ------------------
 1717|  10.4k|        && (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT)) {
  ------------------
  |  Branch (1717:13): [True: 6.45k, False: 3.96k]
  |  Branch (1717:40): [True: 3.96k, False: 0]
  ------------------
 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.4k|        fm->new_cookie = htonll(0);
 1722|  10.4k|    }
 1723|  18.4k|    if (fields & F_ACTIONS) {
  ------------------
  |  Branch (1723:9): [True: 14.4k, False: 4.04k]
  ------------------
 1724|  14.4k|        enum ofputil_protocol action_usable_protocols;
 1725|  14.4k|        struct ofpbuf ofpacts;
 1726|  14.4k|        char *error;
 1727|       |
 1728|  14.4k|        ofpbuf_init(&ofpacts, 32);
 1729|  14.4k|        struct ofpact_parse_params pp = {
 1730|  14.4k|            .port_map = port_map,
 1731|  14.4k|            .table_map = table_map,
 1732|  14.4k|            .ofpacts = &ofpacts,
 1733|  14.4k|            .usable_protocols = &action_usable_protocols
 1734|  14.4k|        };
 1735|  14.4k|        error = ofpacts_parse_instructions(act_str, &pp);
 1736|  14.4k|        *usable_protocols &= action_usable_protocols;
 1737|  14.4k|        if (!error) {
  ------------------
  |  Branch (1737:13): [True: 6.71k, False: 7.69k]
  ------------------
 1738|  6.71k|            enum ofperr err;
 1739|       |
 1740|  6.71k|            struct ofpact_check_params cp = {
 1741|  6.71k|                .match = &match,
 1742|  6.71k|                .max_ports = OFPP_MAX,
  ------------------
  |  |   33|  6.71k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  6.71k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 1743|  6.71k|                .table_id = fm->table_id,
 1744|  6.71k|                .n_tables = 255,
 1745|  6.71k|            };
 1746|  6.71k|            err = ofpacts_check(ofpacts.data, ofpacts.size, &cp);
 1747|  6.71k|            *usable_protocols &= cp.usable_protocols;
 1748|  6.71k|            if (!err && !*usable_protocols) {
  ------------------
  |  Branch (1748:17): [True: 6.00k, False: 712]
  |  Branch (1748:25): [True: 19, False: 5.98k]
  ------------------
 1749|     19|                err = OFPERR_OFPBAC_MATCH_INCONSISTENT;
 1750|     19|            }
 1751|  6.71k|            if (err) {
  ------------------
  |  Branch (1751:17): [True: 731, False: 5.98k]
  ------------------
 1752|    731|                error = xasprintf("actions are invalid with specified match "
 1753|    731|                                  "(%s)", ofperr_to_string(err));
 1754|    731|            }
 1755|       |
 1756|  6.71k|        }
 1757|  14.4k|        if (error) {
  ------------------
  |  Branch (1757:13): [True: 8.42k, False: 5.98k]
  ------------------
 1758|  8.42k|            ofpbuf_uninit(&ofpacts);
 1759|  8.42k|            return error;
 1760|  8.42k|        }
 1761|       |
 1762|  5.98k|        fm->ofpacts_len = ofpacts.size;
 1763|  5.98k|        fm->ofpacts = ofpbuf_steal_data(&ofpacts);
 1764|  5.98k|    } else {
 1765|  4.04k|        fm->ofpacts_len = 0;
 1766|  4.04k|        fm->ofpacts = NULL;
 1767|  4.04k|    }
 1768|  10.0k|    minimatch_init(&fm->match, &match);
 1769|       |
 1770|       |    return NULL;
 1771|  18.4k|}
ofp-flow.c:parse_subfield:
 1446|  60.1k|{
 1447|  60.1k|    struct mf_subfield sf;
 1448|  60.1k|    char *error;
 1449|       |
 1450|  60.1k|    error = mf_parse_subfield(&sf, name);
 1451|  60.1k|    if (!error) {
  ------------------
  |  Branch (1451:9): [True: 59.6k, False: 521]
  ------------------
 1452|  59.6k|        union mf_value val;
 1453|  59.6k|        char *tail;
 1454|  59.6k|        if (parse_int_string(str_value, (uint8_t *)&val, sf.field->n_bytes,
  ------------------
  |  Branch (1454:13): [True: 36, False: 59.6k]
  ------------------
 1455|  59.6k|                             &tail) || *tail != 0) {
  ------------------
  |  Branch (1455:40): [True: 24, False: 59.5k]
  ------------------
 1456|     60|            return xasprintf("%s: cannot parse integer value: %s", name,
 1457|     60|                             str_value);
 1458|     60|        }
 1459|  59.5k|        if (!bitwise_is_all_zeros(&val, sf.field->n_bytes, sf.n_bits,
  ------------------
  |  Branch (1459:13): [True: 137, False: 59.4k]
  ------------------
 1460|  59.5k|                                  sf.field->n_bytes * 8 - sf.n_bits)) {
 1461|    137|            struct ds ds;
 1462|       |
 1463|    137|            ds_init(&ds);
 1464|    137|            mf_format(sf.field, &val, NULL, NULL, &ds);
 1465|    137|            error = xasprintf("%s: value %s does not fit into %d bits",
 1466|    137|                              name, ds_cstr(&ds), sf.n_bits);
 1467|    137|            ds_destroy(&ds);
 1468|    137|            return error;
 1469|    137|        }
 1470|       |
 1471|  59.4k|        const struct mf_field *field = sf.field;
 1472|  59.4k|        union mf_value value, mask;
 1473|  59.4k|        unsigned int size = field->n_bytes;
 1474|       |
 1475|  59.4k|        mf_get(field, match, &value, &mask);
 1476|  59.4k|        bitwise_copy(&val, size, 0, &value, size, sf.ofs, sf.n_bits);
 1477|  59.4k|        bitwise_one (               &mask,  size, sf.ofs, sf.n_bits);
 1478|  59.4k|        *usable_protocols &= mf_set(field, &value, &mask, match, &error);
 1479|       |
 1480|  59.4k|        match_add_ethernet_prereq(match, sf.field);
 1481|  59.4k|    }
 1482|  59.9k|    return error;
 1483|  60.1k|}

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

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

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

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

str_to_u8:
   39|  10.1k|{
   40|  10.1k|    int value;
   41|       |
   42|  10.1k|    if (!str_to_int(str, 0, &value) || value < 0 || value > 255) {
  ------------------
  |  Branch (42:9): [True: 23, False: 10.1k]
  |  Branch (42:40): [True: 32, False: 10.1k]
  |  Branch (42:53): [True: 27, False: 10.0k]
  ------------------
   43|     82|        return xasprintf("invalid %s \"%s\"", name, str);
   44|     82|    }
   45|  10.0k|    *valuep = value;
   46|       |    return NULL;
   47|  10.1k|}
str_to_u16:
   57|  17.6k|{
   58|  17.6k|    int value;
   59|       |
   60|  17.6k|    if (!str_to_int(str, 0, &value) || value < 0 || value > 65535) {
  ------------------
  |  Branch (60:9): [True: 567, False: 17.0k]
  |  Branch (60:40): [True: 38, False: 17.0k]
  |  Branch (60:53): [True: 36, False: 16.9k]
  ------------------
   61|    641|        return xasprintf("invalid %s \"%s\"", name, str);
   62|    641|    }
   63|  16.9k|    *valuep = value;
   64|       |    return NULL;
   65|  17.6k|}
str_to_u32:
   73|  8.26k|{
   74|  8.26k|    unsigned long long value;
   75|       |
   76|  8.26k|    if (!str[0]) {
  ------------------
  |  Branch (76:9): [True: 40, False: 8.22k]
  ------------------
   77|     40|        return xstrdup("missing required numeric argument");
   78|     40|    }
   79|       |
   80|  8.22k|    if (!str_to_ullong(str, 0, &value) || value > UINT32_MAX) {
  ------------------
  |  Branch (80:9): [True: 607, False: 7.61k]
  |  Branch (80:43): [True: 39, False: 7.57k]
  ------------------
   81|    646|        return xasprintf("invalid numeric format %s", str);
   82|    646|    }
   83|  7.57k|    *valuep = value;
   84|       |    return NULL;
   85|  8.22k|}
str_to_u64:
   93|  4.03k|{
   94|  4.03k|    char *tail;
   95|  4.03k|    uint64_t value;
   96|       |
   97|  4.03k|    if (!str[0]) {
  ------------------
  |  Branch (97:9): [True: 23, False: 4.00k]
  ------------------
   98|     23|        return xstrdup("missing required numeric argument");
   99|     23|    }
  100|       |
  101|  4.03k|    errno = 0;
  102|  4.00k|    value = strtoull(str, &tail, 0);
  103|  4.00k|    if (errno == EINVAL || errno == ERANGE || *tail) {
  ------------------
  |  Branch (103:9): [True: 0, False: 4.00k]
  |  Branch (103:28): [True: 2, False: 4.00k]
  |  Branch (103:47): [True: 26, False: 3.98k]
  ------------------
  104|     28|        return xasprintf("invalid numeric format %s", str);
  105|     28|    }
  106|  3.98k|    *valuep = value;
  107|       |    return NULL;
  108|  4.00k|}
str_to_be64:
  117|  2.78k|{
  118|  2.78k|    uint64_t value = 0;
  119|  2.78k|    char *error;
  120|       |
  121|  2.78k|    error = str_to_u64(str, &value);
  122|  2.78k|    if (!error) {
  ------------------
  |  Branch (122:9): [True: 2.74k, False: 37]
  ------------------
  123|  2.74k|        *valuep = htonll(value);
  124|  2.74k|    }
  125|  2.78k|    return error;
  126|  2.78k|}
str_to_mac:
  134|  1.09k|{
  135|  1.09k|    if (!ovs_scan(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(*mac))) {
  ------------------
  |  |  403|  1.09k|#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.09k|    &(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.09k]
  ------------------
  136|      9|        return xasprintf("invalid mac address %s", str);
  137|      9|    }
  138|  1.09k|    return NULL;
  139|  1.09k|}
str_to_ip:
  147|  1.61k|{
  148|  1.61k|    struct in_addr in_addr;
  149|       |
  150|  1.61k|    if (lookup_ip(str, &in_addr)) {
  ------------------
  |  Branch (150:9): [True: 8, False: 1.60k]
  ------------------
  151|      8|        return xasprintf("%s: could not convert to IP address", str);
  152|      8|    }
  153|  1.60k|    *ip = in_addr.s_addr;
  154|       |    return NULL;
  155|  1.61k|}
str_to_connhelper:
  163|    483|{
  164|    483|    if (!strcmp(str, "ftp")) {
  ------------------
  |  Branch (164:9): [True: 240, False: 243]
  ------------------
  165|    240|        *alg = IPPORT_FTP;
  ------------------
  |  |  695|    240|#define IPPORT_FTP  21
  ------------------
  166|    240|        return NULL;
  167|    240|    }
  168|    243|    if (!strcmp(str, "tftp")) {
  ------------------
  |  Branch (168:9): [True: 196, False: 47]
  ------------------
  169|    196|        *alg = IPPORT_TFTP;
  ------------------
  |  |  699|    196|#define IPPORT_TFTP  69
  ------------------
  170|    196|        return NULL;
  171|    196|    }
  172|     47|    return xasprintf("invalid conntrack helper \"%s\"", str);
  173|    243|}
ofp_parse_protocol:
  177|   169k|{
  178|   169k|    static const struct ofp_protocol protocols[] = {
  179|   169k|        { "ip", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  180|   169k|        { "ipv4", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  181|   169k|        { "ip4", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  182|   169k|        { "arp", ETH_TYPE_ARP, 0 },
  ------------------
  |  |  408|   169k|#define ETH_TYPE_ARP           0x0806
  ------------------
  183|   169k|        { "icmp", ETH_TYPE_IP, IPPROTO_ICMP },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  184|   169k|        { "tcp", ETH_TYPE_IP, IPPROTO_TCP },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  185|   169k|        { "udp", ETH_TYPE_IP, IPPROTO_UDP },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  186|   169k|        { "sctp", ETH_TYPE_IP, IPPROTO_SCTP },
  ------------------
  |  |  407|   169k|#define ETH_TYPE_IP            0x0800
  ------------------
  187|   169k|        { "ipv6", ETH_TYPE_IPV6, 0 },
  ------------------
  |  |  413|   169k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  188|   169k|        { "ip6", ETH_TYPE_IPV6, 0 },
  ------------------
  |  |  413|   169k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  189|   169k|        { "icmp6", ETH_TYPE_IPV6, IPPROTO_ICMPV6 },
  ------------------
  |  |  413|   169k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  190|   169k|        { "tcp6", ETH_TYPE_IPV6, IPPROTO_TCP },
  ------------------
  |  |  413|   169k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  191|   169k|        { "udp6", ETH_TYPE_IPV6, IPPROTO_UDP },
  ------------------
  |  |  413|   169k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  192|   169k|        { "sctp6", ETH_TYPE_IPV6, IPPROTO_SCTP },
  ------------------
  |  |  413|   169k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  193|   169k|        { "rarp", ETH_TYPE_RARP, 0},
  ------------------
  |  |  415|   169k|#define ETH_TYPE_RARP          0x8035
  ------------------
  194|   169k|        { "mpls", ETH_TYPE_MPLS, 0 },
  ------------------
  |  |  416|   169k|#define ETH_TYPE_MPLS          0x8847
  ------------------
  195|   169k|        { "mplsm", ETH_TYPE_MPLS_MCAST, 0 },
  ------------------
  |  |  417|   169k|#define ETH_TYPE_MPLS_MCAST    0x8848
  ------------------
  196|   169k|    };
  197|   169k|    const struct ofp_protocol *p;
  198|       |
  199|  2.89M|    for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
  ------------------
  |  |  297|  2.89M|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  2.89M|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  2.89M|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  2.89M|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.89M|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  2.89M|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (199:25): [True: 2.73M, False: 156k]
  ------------------
  200|  2.73M|        if (!strcmp(p->name, name)) {
  ------------------
  |  Branch (200:13): [True: 13.1k, False: 2.72M]
  ------------------
  201|  13.1k|            *p_out = p;
  202|  13.1k|            return true;
  203|  13.1k|        }
  204|  2.73M|    }
  205|   156k|    *p_out = NULL;
  206|       |    return false;
  207|   169k|}
ofp_parse_field:
  219|  76.2k|{
  220|  76.2k|    union mf_value value, mask;
  221|  76.2k|    char *error;
  222|       |
  223|  76.2k|    if (!*s) {
  ------------------
  |  Branch (223:9): [True: 39.2k, False: 36.9k]
  ------------------
  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|  39.2k|        s = "0/0";
  227|  39.2k|    }
  228|       |
  229|  76.2k|    error = mf_parse(mf, s, port_map, &value, &mask);
  230|  76.2k|    if (!error) {
  ------------------
  |  Branch (230:9): [True: 75.5k, False: 687]
  ------------------
  231|  75.5k|        *usable_protocols &= mf_set(mf, &value, &mask, match, &error);
  232|  75.5k|        match_add_ethernet_prereq(match, mf);
  233|  75.5k|    }
  234|  76.2k|    return error;
  235|  76.2k|}
ofp_extract_actions:
  239|  15.4k|{
  240|  15.4k|    s = strstr(s, "action");
  241|  15.4k|    if (s) {
  ------------------
  |  Branch (241:9): [True: 15.2k, False: 184]
  ------------------
  242|  15.2k|        *s = '\0';
  243|  15.2k|        s = strchr(s + 1, '=');
  244|  15.2k|        return s ? s + 1 : NULL;
  ------------------
  |  Branch (244:16): [True: 15.2k, False: 1]
  ------------------
  245|  15.2k|    } else {
  246|       |        return NULL;
  247|    184|    }
  248|  15.4k|}
ofputil_parse_key_value:
  294|   892k|{
  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|   892k|    *stringp += strspn(*stringp, ", \t\r\n");
  298|   892k|    if (**stringp == '\0') {
  ------------------
  |  Branch (298:9): [True: 170k, False: 721k]
  ------------------
  299|   170k|        *keyp = *valuep = NULL;
  300|   170k|        return false;
  301|   170k|    }
  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|   721k|    char *key = *stringp;
  306|   721k|    size_t key_len = strcspn(key, ":=(, \t\r\n");
  307|   721k|    char key_delim = key[key_len];
  308|   721k|    key[key_len] = '\0';
  309|   721k|    *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|   721k|    const char *value_delims;
  320|   721k|    if (key_delim == ':' || key_delim == '=') {
  ------------------
  |  Branch (320:9): [True: 232k, False: 489k]
  |  Branch (320:29): [True: 308k, False: 180k]
  ------------------
  321|   541k|        value_delims = ", \t\r\n";
  322|   541k|    } else if (key_delim == '(') {
  ------------------
  |  Branch (322:16): [True: 62.8k, False: 117k]
  ------------------
  323|  62.8k|        value_delims = ")";
  324|   117k|    } else {
  325|   117k|        *keyp = key;
  326|   117k|        *valuep = key + key_len; /* Empty string. */
  327|   117k|        return true;
  328|   117k|    }
  329|       |
  330|       |    /* Extract the value.  Advance the input position past the value and
  331|       |     * delimiter. */
  332|   603k|    char *value = *stringp;
  333|   603k|    size_t value_len = parse_value(value, value_delims);
  334|   603k|    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|   603k|    if (key_delim == '(' && value[value_len] == ')' &&
  ------------------
  |  Branch (339:9): [True: 62.8k, False: 541k]
  |  Branch (339:29): [True: 54.9k, False: 7.93k]
  ------------------
  340|  54.9k|        value[value_len + 1] == '-' && value[value_len + 2] == '>') {
  ------------------
  |  Branch (340:9): [True: 1.43k, False: 53.5k]
  |  Branch (340:40): [True: 1.06k, False: 369]
  ------------------
  341|  1.06k|        value_delims = ", \t\r\n";
  342|  1.06k|        value_len += parse_value(&value[value_len], value_delims);
  343|  1.06k|        value_delim = value[value_len];
  344|  1.06k|    }
  345|   603k|    value[value_len] = '\0';
  346|   603k|    *stringp += value_len + (value_delim != '\0');
  347|       |
  348|   603k|    *keyp = key;
  349|   603k|    *valuep = value;
  350|       |    return true;
  351|   721k|}
ofp-parse.c:parse_value:
  252|   604k|{
  253|   604k|    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.1M|    while (!strchr(delimiters, s[n])) {
  ------------------
  |  Branch (259:12): [True: 15.5M, False: 601k]
  ------------------
  260|  15.5M|        if (s[n] == '(') {
  ------------------
  |  Branch (260:13): [True: 20.5k, False: 15.4M]
  ------------------
  261|  20.5k|            int level = 0;
  262|  42.4M|            do {
  263|  42.4M|                switch (s[n]) {
  ------------------
  |  Branch (263:25): [True: 346k, False: 42.0M]
  ------------------
  264|  3.75k|                case '\0':
  ------------------
  |  Branch (264:17): [True: 3.75k, False: 42.4M]
  ------------------
  265|  3.75k|                    return n;
  266|   223k|                case '(':
  ------------------
  |  Branch (266:17): [True: 223k, False: 42.1M]
  ------------------
  267|   223k|                    level++;
  268|   223k|                    break;
  269|   118k|                case ')':
  ------------------
  |  Branch (269:17): [True: 118k, False: 42.2M]
  ------------------
  270|   118k|                    level--;
  271|   118k|                    break;
  272|  42.4M|                }
  273|  42.4M|                n++;
  274|  42.4M|            } while (level > 0);
  ------------------
  |  Branch (274:22): [True: 42.3M, False: 16.7k]
  ------------------
  275|  15.4M|        } else {
  276|  15.4M|            n++;
  277|  15.4M|        }
  278|  15.5M|    }
  279|   601k|    return n;
  280|   604k|}

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

ofpprop_put:
  323|  2.09k|{
  324|  2.09k|    size_t start_ofs = ofpprop_start(msg, type);
  325|  2.09k|    ofpbuf_put(msg, value, len);
  326|  2.09k|    ofpprop_end(msg, start_ofs);
  327|  2.09k|}
ofpprop_put_be16:
  354|    302|{
  355|    302|    if (!ofpprop_is_experimenter(type)) {
  ------------------
  |  Branch (355:9): [True: 302, 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|    302|        ovs_be16 padded_value[2] = { value, 0 };
  360|    302|        ofpprop_put(msg, type, padded_value, sizeof padded_value);
  361|    302|    } 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|    302|}
ofpprop_put_be32:
  371|    614|{
  372|    614|    ofpprop_put(msg, type, &value, sizeof value);
  373|    614|}
ofpprop_put_u8:
  395|    216|{
  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|    216|    ofpprop_put(msg, type, &value, 1);
  399|    216|}
ofpprop_put_u16:
  404|    302|{
  405|       |    ofpprop_put_be16(msg, type, htons(value));
  406|    302|}
ofpprop_put_u32:
  411|    614|{
  412|       |    ofpprop_put_be32(msg, type, htonl(value));
  413|    614|}
ofpprop_put_flag:
  447|  5.38k|{
  448|  5.38k|    size_t start = ofpprop_start(msg, type);
  449|  5.38k|    ofpprop_end(msg, start);
  450|  5.38k|}
ofpprop_start:
  478|  7.48k|{
  479|  7.48k|    size_t start_ofs = msg->size;
  480|  7.48k|    if (!ofpprop_is_experimenter(type)) {
  ------------------
  |  Branch (480:9): [True: 7.48k, False: 0]
  ------------------
  481|  7.48k|        struct ofp_prop_header *oph = ofpbuf_put_uninit(msg, sizeof *oph);
  482|  7.48k|        oph->type = htons(type);
  483|  7.48k|        oph->len = htons(4);
  484|  7.48k|    } 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.48k|    return start_ofs;
  493|  7.48k|}
ofpprop_end:
  501|  7.48k|{
  502|  7.48k|    struct ofp_prop_header *oph;
  503|       |
  504|  7.48k|    oph = ofpbuf_at_assert(msg, start_ofs, sizeof *oph);
  505|  7.48k|    oph->len = htons(msg->size - start_ofs);
  506|  7.48k|    ofpbuf_padto(msg, ROUND_UP(msg->size, 8));
  ------------------
  |  |  303|  7.48k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  7.48k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  507|  7.48k|}

ofputil_protocol_to_ofp_version:
   99|  10.3k|{
  100|  10.3k|    switch (protocol) {
  ------------------
  |  Branch (100:13): [True: 10.3k, False: 0]
  ------------------
  101|  4.86k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (101:5): [True: 4.86k, False: 5.46k]
  ------------------
  102|  5.13k|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (102:5): [True: 269, False: 10.0k]
  ------------------
  103|  9.11k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (103:5): [True: 3.98k, False: 6.33k]
  ------------------
  104|  9.12k|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (104:5): [True: 11, False: 10.3k]
  ------------------
  105|  9.12k|        return OFP10_VERSION;
  106|    201|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (106:5): [True: 201, False: 10.1k]
  ------------------
  107|    201|        return OFP11_VERSION;
  108|    230|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (108:5): [True: 230, False: 10.0k]
  ------------------
  109|    230|        return OFP12_VERSION;
  110|    764|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (110:5): [True: 764, False: 9.56k]
  ------------------
  111|    764|        return OFP13_VERSION;
  112|      0|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (112:5): [True: 0, False: 10.3k]
  ------------------
  113|      0|        return OFP14_VERSION;
  114|      0|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (114:5): [True: 0, False: 10.3k]
  ------------------
  115|      0|        return OFP15_VERSION;
  116|  10.3k|    }
  117|       |
  118|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  119|  10.3k|}
ofputil_protocol_to_string:
  254|  12.2k|{
  255|  12.2k|    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|  12.2k|    switch (protocol) {
  ------------------
  |  Branch (259:13): [True: 12.2k, False: 0]
  ------------------
  260|  3.98k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (260:5): [True: 3.98k, False: 8.26k]
  ------------------
  261|  3.98k|        return "NXM-table_id";
  262|       |
  263|    291|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (263:5): [True: 291, False: 11.9k]
  ------------------
  264|    291|        return "NXM+table_id";
  265|       |
  266|  4.86k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (266:5): [True: 4.86k, False: 7.39k]
  ------------------
  267|  4.86k|        return "OpenFlow10-table_id";
  268|       |
  269|    538|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (269:5): [True: 538, False: 11.7k]
  ------------------
  270|    538|        return "OpenFlow10+table_id";
  271|       |
  272|    932|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (272:5): [True: 932, False: 11.3k]
  ------------------
  273|    932|        return "OpenFlow11";
  274|       |
  275|    115|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (275:5): [True: 115, False: 12.1k]
  ------------------
  276|    115|        return "OXM-OpenFlow12";
  277|       |
  278|    764|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (278:5): [True: 764, False: 11.4k]
  ------------------
  279|    764|        return "OXM-OpenFlow13";
  280|       |
  281|    382|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (281:5): [True: 382, False: 11.8k]
  ------------------
  282|    382|        return "OXM-OpenFlow14";
  283|       |
  284|    382|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (284:5): [True: 382, False: 11.8k]
  ------------------
  285|    382|        return "OXM-OpenFlow15";
  286|  12.2k|    }
  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.0k|{
  306|  10.0k|    struct ds s;
  307|       |
  308|  10.0k|    ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
  ------------------
  |  |   62|  10.0k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
  ------------------
  |  |  100|  10.0k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  309|  10.0k|    if (protocols == 0) {
  ------------------
  |  Branch (309:9): [True: 203, False: 9.82k]
  ------------------
  310|    203|        return xstrdup("none");
  311|    203|    }
  312|       |
  313|  9.82k|    ds_init(&s);
  314|  25.7k|    while (protocols) {
  ------------------
  |  Branch (314:12): [True: 15.9k, False: 9.82k]
  ------------------
  315|  15.9k|        const struct proto_abbrev *p;
  316|  15.9k|        int i;
  317|       |
  318|  15.9k|        if (s.length) {
  ------------------
  |  Branch (318:13): [True: 6.07k, False: 9.82k]
  ------------------
  319|  6.07k|            ds_put_char(&s, ',');
  320|  6.07k|        }
  321|       |
  322|  47.4k|        for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
  ------------------
  |  |   46|  47.4k|#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
  |  |  ------------------
  |  |  |  |  297|  47.4k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  |  |  ------------------
  |  |  |  |  |  |   46|  47.4k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   41|  47.4k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   47|  47.4k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  47.4k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|  47.4k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (322:33): [True: 45.0k, False: 2.42k]
  ------------------
  323|  45.0k|            if ((protocols & p->protocol) == p->protocol) {
  ------------------
  |  Branch (323:17): [True: 13.4k, False: 31.5k]
  ------------------
  324|  13.4k|                ds_put_cstr(&s, p->name);
  325|  13.4k|                protocols &= ~p->protocol;
  326|  13.4k|                goto match;
  327|  13.4k|            }
  328|  45.0k|        }
  329|       |
  330|  14.4k|        for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
  ------------------
  |  Branch (330:21): [True: 14.4k, False: 0]
  ------------------
  331|  14.4k|            enum ofputil_protocol bit = 1u << i;
  332|       |
  333|  14.4k|            if (protocols & bit) {
  ------------------
  |  Branch (333:17): [True: 2.42k, False: 12.0k]
  ------------------
  334|  2.42k|                ds_put_cstr(&s, ofputil_protocol_to_string(bit));
  335|  2.42k|                protocols &= ~bit;
  336|  2.42k|                goto match;
  337|  2.42k|            }
  338|  14.4k|        }
  339|  2.42k|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  340|       |
  341|  15.9k|    match: ;
  342|  15.9k|    }
  343|  9.82k|    return ds_steal_cstr(&s);
  344|  9.82k|}

ofputil_table_map_get_number:
  132|    249|{
  133|    249|    struct namemap_node *node
  134|    249|        = map ? namemap_find_by_name(&map->map, name) : NULL;
  ------------------
  |  Branch (134:11): [True: 0, False: 249]
  ------------------
  135|    249|    return node && !node->duplicate ? node->number : UINT8_MAX;
  ------------------
  |  Branch (135:12): [True: 0, False: 249]
  |  Branch (135:20): [True: 0, False: 0]
  ------------------
  136|    249|}
ofputil_table_from_string:
  158|  9.57k|{
  159|  9.57k|    *tablep = 0;
  160|  9.57k|    if (*s == '-') {
  ------------------
  |  Branch (160:9): [True: 1, False: 9.57k]
  ------------------
  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|  9.57k|    unsigned int table;
  166|  9.57k|    if (str_to_uint(s, 10, &table)) {
  ------------------
  |  Branch (166:9): [True: 1.29k, False: 8.27k]
  ------------------
  167|  1.29k|        if (table > 255) {
  ------------------
  |  Branch (167:13): [True: 38, False: 1.25k]
  ------------------
  168|     38|            VLOG_WARN("table %u is outside the supported range 0 through 255",
  ------------------
  |  |  209|     38|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|     38|    do {                                                \
  |  |  |  |  281|     38|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|     38|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 38]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|     38|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 38]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  169|     38|                      table);
  170|     38|            return false;
  171|     38|        }
  172|  1.25k|        *tablep = table;
  173|  1.25k|        return true;
  174|  8.27k|    } else {
  175|  8.27k|        if (s[0] != '"') {
  ------------------
  |  Branch (175:13): [True: 51, False: 8.22k]
  ------------------
  176|     51|            table = ofputil_table_map_get_number(table_map, s);
  177|  8.22k|        } else {
  178|  8.22k|            size_t length = strlen(s);
  179|  8.22k|            char *name = NULL;
  180|  8.22k|            if (length > 1
  ------------------
  |  Branch (180:17): [True: 7.73k, False: 489]
  ------------------
  181|  7.73k|                && s[length - 1] == '"'
  ------------------
  |  Branch (181:20): [True: 4.49k, False: 3.24k]
  ------------------
  182|  4.49k|                && json_string_unescape(s + 1, length - 2, &name)) {
  ------------------
  |  Branch (182:20): [True: 198, False: 4.29k]
  ------------------
  183|    198|                table = ofputil_table_map_get_number(table_map, name);
  184|    198|            }
  185|  8.22k|            free(name);
  186|  8.22k|        }
  187|  8.27k|        if (table != UINT8_MAX) {
  ------------------
  |  Branch (187:13): [True: 8.02k, False: 249]
  ------------------
  188|  8.02k|            *tablep = table;
  189|  8.02k|            return true;
  190|  8.02k|        }
  191|       |
  192|    249|        return false;
  193|  8.27k|    }
  194|  9.57k|}

ofpbuf_use_stack:
   81|  2.66k|{
   82|  2.66k|    ofpbuf_use__(b, base, allocated, 0, OFPBUF_STACK);
   83|  2.66k|}
ofpbuf_init:
  140|  24.2k|{
  141|  24.2k|    ofpbuf_use(b, size ? xmalloc(size) : NULL, size);
  ------------------
  |  Branch (141:19): [True: 14.4k, False: 9.82k]
  ------------------
  142|  24.2k|}
ofpbuf_uninit:
  147|  18.2k|{
  148|  18.2k|    if (b) {
  ------------------
  |  Branch (148:9): [True: 18.2k, False: 0]
  ------------------
  149|  18.2k|        if (b->source == OFPBUF_MALLOC) {
  ------------------
  |  Branch (149:13): [True: 18.2k, False: 0]
  ------------------
  150|  18.2k|            free(b->base);
  151|  18.2k|        }
  152|  18.2k|    }
  153|  18.2k|}
ofpbuf_new:
  167|  9.82k|{
  168|  9.82k|    struct ofpbuf *b = xmalloc(sizeof *b);
  169|  9.82k|    ofpbuf_init(b, size);
  170|  9.82k|    return b;
  171|  9.82k|}
ofpbuf_prealloc_tailroom:
  306|  3.40M|{
  307|  3.40M|    if (size > ofpbuf_tailroom(b)) {
  ------------------
  |  Branch (307:9): [True: 398k, False: 3.00M]
  ------------------
  308|   398k|        ofpbuf_resize__(b, ofpbuf_headroom(b), MAX(size, 64));
  ------------------
  |  |   95|   398k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 44.7k, False: 353k]
  |  |  ------------------
  ------------------
  309|   398k|    }
  310|  3.40M|}
ofpbuf_prealloc_headroom:
  317|  91.1k|{
  318|  91.1k|    if (size > ofpbuf_headroom(b)) {
  ------------------
  |  Branch (318:9): [True: 0, False: 91.1k]
  ------------------
  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|  91.1k|}
ofpbuf_padto:
  368|   126k|{
  369|   126k|    if (b->size < length) {
  ------------------
  |  Branch (369:9): [True: 11.2k, False: 115k]
  ------------------
  370|  11.2k|        ofpbuf_put_zeros(b, length - b->size);
  371|  11.2k|    }
  372|   126k|}
ofpbuf_put_uninit:
  401|  3.39M|{
  402|  3.39M|    void *p;
  403|  3.39M|    ofpbuf_prealloc_tailroom(b, size);
  404|  3.39M|    p = ofpbuf_tail(b);
  405|  3.39M|    b->size += size;
  406|  3.39M|    return p;
  407|  3.39M|}
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.33M|{
  426|  2.33M|    if (!size) {
  ------------------
  |  Branch (426:9): [True: 10.5k, False: 2.32M]
  ------------------
  427|  10.5k|        return ofpbuf_tail(b);
  428|  10.5k|    }
  429|       |
  430|  2.32M|    void *dst = ofpbuf_put_uninit(b, size);
  431|  2.32M|    memcpy(dst, p, size);
  432|  2.32M|    return dst;
  433|  2.33M|}
ofpbuf_put_hex:
  442|  3.55k|{
  443|  3.55k|    size_t initial_size = b->size;
  444|  1.29M|    for (;;) {
  445|  1.29M|        uint8_t byte;
  446|  1.29M|        bool ok;
  447|       |
  448|  1.29M|        s += strspn(s, " .\t\r\n");
  449|  1.29M|        byte = hexits_value(s, 2, &ok);
  450|  1.29M|        if (!ok) {
  ------------------
  |  Branch (450:13): [True: 3.55k, False: 1.28M]
  ------------------
  451|  3.55k|            if (n) {
  ------------------
  |  Branch (451:17): [True: 0, False: 3.55k]
  ------------------
  452|      0|                *n = b->size - initial_size;
  453|      0|            }
  454|  3.55k|            return CONST_CAST(char *, s);
  ------------------
  |  |   85|  3.55k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  3.55k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  3.55k|     (TYPE) (POINTER))
  ------------------
  455|  3.55k|        }
  456|       |
  457|  1.28M|        ofpbuf_put(b, &byte, 1);
  458|  1.28M|        s += 2;
  459|  1.28M|    }
  460|  3.55k|}
ofpbuf_push_uninit:
  481|  95.6k|{
  482|  95.6k|    if (!size) {
  ------------------
  |  Branch (482:9): [True: 4.57k, False: 91.1k]
  ------------------
  483|  4.57k|        return b->data;
  484|  4.57k|    }
  485|       |
  486|  91.1k|    ofpbuf_prealloc_headroom(b, size);
  487|  91.1k|    b->data = (char*)b->data - size;
  488|  91.1k|    b->size += size;
  489|  91.1k|    return b->data;
  490|  95.6k|}
ofpbuf_insert:
  520|    356|{
  521|    356|    if (offset < b->size) {
  ------------------
  |  Branch (521:9): [True: 14, False: 342]
  ------------------
  522|     14|        ofpbuf_put_uninit(b, n); /* b->size gets increased. */
  523|     14|        memmove((char *) b->data + offset + n, (char *) b->data + offset,
  524|     14|                b->size - offset - n);
  525|     14|        memcpy((char *) b->data + offset, data, n);
  526|    342|    } else {
  527|    342|        ovs_assert(offset == b->size);
  ------------------
  |  |   62|    342|#define ovs_assert ovs_ignore
  ------------------
  528|    342|        ofpbuf_put(b, data, n);
  529|    342|    }
  530|    356|}
ofpbuf_steal_data:
  537|  5.98k|{
  538|  5.98k|    void *p;
  539|       |
  540|  5.98k|    if (b->source == OFPBUF_MALLOC && b->data == b->base) {
  ------------------
  |  Branch (540:9): [True: 5.98k, False: 0]
  |  Branch (540:39): [True: 5.98k, False: 0]
  ------------------
  541|  5.98k|        p = b->data;
  542|  5.98k|    } else {
  543|      0|        p = xmemdup(b->data, b->size);
  544|      0|        if (b->source == OFPBUF_MALLOC) {
  ------------------
  |  Branch (544:13): [True: 0, False: 0]
  ------------------
  545|      0|            free(b->base);
  546|      0|        }
  547|      0|    }
  548|  5.98k|    b->base = NULL;
  549|  5.98k|    b->data = NULL;
  550|  5.98k|    b->header = NULL;
  551|       |    b->msg = NULL;
  552|  5.98k|    return p;
  553|  5.98k|}
ofpbuf.c:ofpbuf_use__:
   37|  26.9k|{
   38|  26.9k|    b->base = base;
   39|  26.9k|    b->data = base;
   40|  26.9k|    b->size = size;
   41|       |
   42|  26.9k|    ofpbuf_init__(b, allocated, source);
   43|  26.9k|}
ofpbuf.c:ofpbuf_init__:
   26|  26.9k|{
   27|  26.9k|    b->allocated = allocated;
   28|  26.9k|    b->source = source;
   29|  26.9k|    b->header = NULL;
   30|       |    b->msg = NULL;
   31|  26.9k|    ovs_list_poison(&b->list_node);
   32|  26.9k|}
ofpbuf.c:ofpbuf_use:
   51|  24.2k|{
   52|  24.2k|    ofpbuf_use__(b, base, allocated, 0, OFPBUF_MALLOC);
   53|  24.2k|}
ofpbuf.c:ofpbuf_resize__:
  252|   398k|{
  253|   398k|    void *new_base, *new_data;
  254|   398k|    size_t new_allocated;
  255|       |
  256|   398k|    new_allocated = new_headroom + b->size + new_tailroom;
  257|       |
  258|   398k|    switch (b->source) {
  259|   398k|    case OFPBUF_MALLOC:
  ------------------
  |  Branch (259:5): [True: 398k, False: 0]
  ------------------
  260|   398k|        if (new_headroom == ofpbuf_headroom(b)) {
  ------------------
  |  Branch (260:13): [True: 398k, False: 0]
  ------------------
  261|   398k|            new_base = xrealloc(b->base, new_allocated);
  262|   398k|        } 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|   398k|        break;
  268|       |
  269|      0|    case OFPBUF_STACK:
  ------------------
  |  Branch (269:5): [True: 0, False: 398k]
  ------------------
  270|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  271|       |
  272|      0|    case OFPBUF_STUB:
  ------------------
  |  Branch (272:5): [True: 0, False: 398k]
  ------------------
  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: 398k]
  ------------------
  279|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  280|   398k|    }
  281|       |
  282|   398k|    b->allocated = new_allocated;
  283|   398k|    b->base = new_base;
  284|       |
  285|   398k|    new_data = (char *) new_base + new_headroom;
  286|   398k|    if (b->data != new_data) {
  ------------------
  |  Branch (286:9): [True: 41.7k, False: 356k]
  ------------------
  287|  41.7k|        if (b->header) {
  ------------------
  |  Branch (287:13): [True: 28.2k, False: 13.4k]
  ------------------
  288|  28.2k|            ptrdiff_t header_offset = (char *) b->header - (char *) b->data;
  289|       |
  290|  28.2k|            b->header = (char *) new_data + header_offset;
  291|  28.2k|        }
  292|  41.7k|        if (b->msg) {
  ------------------
  |  Branch (292:13): [True: 985, False: 40.7k]
  ------------------
  293|    985|            ptrdiff_t msg_offset = (char *) b->msg - (char *) b->data;
  294|       |
  295|    985|            b->msg = (char *) new_data + msg_offset;
  296|    985|        }
  297|  41.7k|        b->data = new_data;
  298|  41.7k|    }
  299|   398k|}

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

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|   668k|    {                                                                   \
  247|   668k|        return NAME##_get_unsafe();                                     \
  248|   668k|    }
util.c:counter_util_xalloc_get_unsafe:
  239|   668k|    {                                                                   \
  240|   668k|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|   668k|        return &var;                                                    \
  242|   668k|    }                                                                   \
flow.c:counter_miniflow_malloc_get:
  246|  10.0k|    {                                                                   \
  247|  10.0k|        return NAME##_get_unsafe();                                     \
  248|  10.0k|    }
flow.c:counter_miniflow_malloc_get_unsafe:
  239|  10.0k|    {                                                                   \
  240|  10.0k|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|  10.0k|        return &var;                                                    \
  242|  10.0k|    }                                                                   \
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|    446|{
   83|    446|    return (((uint64_t) ntohs(ea.be16[0]) << 32)
   84|    446|            | ((uint64_t) ntohs(ea.be16[1]) << 16)
   85|       |            | ntohs(ea.be16[2]));
   86|    446|}
set_mpls_lse_ttl:
  337|    725|{
  338|    725|    *lse &= ~htonl(MPLS_TTL_MASK);
  339|       |    *lse |= htonl((ttl << MPLS_TTL_SHIFT) & MPLS_TTL_MASK);
  340|    725|}
set_mpls_lse_tc:
  345|    800|{
  346|    800|    *lse &= ~htonl(MPLS_TC_MASK);
  347|       |    *lse |= htonl((tc << MPLS_TC_SHIFT) & MPLS_TC_MASK);
  348|    800|}
set_mpls_lse_label:
  353|    392|{
  354|    392|    *lse &= ~htonl(MPLS_LABEL_MASK);
  355|       |    *lse |= htonl((ntohl(label) << MPLS_LABEL_SHIFT) & MPLS_LABEL_MASK);
  356|    392|}
set_mpls_lse_bos:
  361|    432|{
  362|    432|    *lse &= ~htonl(MPLS_BOS_MASK);
  363|       |    *lse |= htonl((bos << MPLS_BOS_SHIFT) & MPLS_BOS_MASK);
  364|    432|}
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.2k|{
  678|       |    return 32 - ctz32(ntohl(netmask));
  679|  10.2k|}
ip_format_masked:
  683|      3|{
  684|      3|    ds_put_format(s, IP_FMT, IP_ARGS(ip));
  ------------------
  |  |  628|      3|#define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
  ------------------
                  ds_put_format(s, IP_FMT, IP_ARGS(ip));
  ------------------
  |  |  630|      3|    ntohl(ip) >> 24,                            \
  |  |  631|      3|    (ntohl(ip) >> 16) & 0xff,                   \
  |  |  632|      3|    (ntohl(ip) >> 8) & 0xff,                    \
  |  |  633|      3|    ntohl(ip) & 0xff
  ------------------
  685|      3|    if (mask != OVS_BE32_MAX) {
  ------------------
  |  |   43|      3|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (685:9): [True: 0, False: 3]
  ------------------
  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|      3|}
ip_parse:
  698|  1.61k|{
  699|       |    return inet_pton(AF_INET, s, ip) == 1;
  700|  1.61k|}
ip_parse_masked_len:
  730|  1.15k|{
  731|  1.15k|    int prefix;
  732|       |
  733|  1.15k|    if (ovs_scan_len(s, n, IP_SCAN_FMT"/"IP_SCAN_FMT,
  ------------------
  |  |  645|  1.15k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
                  if (ovs_scan_len(s, n, IP_SCAN_FMT"/"IP_SCAN_FMT,
  ------------------
  |  |  645|  1.15k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (733:9): [True: 70, False: 1.08k]
  ------------------
  734|  1.15k|                 IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask))) {
  ------------------
  |  |  647|  1.15k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.15k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.15k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.15k|        &((uint8_t *) ip)[3]
  ------------------
                               IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask))) {
  ------------------
  |  |  647|  1.15k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.15k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.15k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.15k|        &((uint8_t *) ip)[3]
  ------------------
  735|       |        /* OK. */
  736|  1.08k|    } else if (ovs_scan_len(s, n, IP_SCAN_FMT"/%d",
  ------------------
  |  |  645|  1.08k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (736:16): [True: 912, False: 174]
  ------------------
  737|  1.08k|                            IP_SCAN_ARGS(ip), &prefix)) {
  ------------------
  |  |  647|  1.08k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.08k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.08k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.08k|        &((uint8_t *) ip)[3]
  ------------------
  738|    912|        if (prefix < 0 || prefix > 32) {
  ------------------
  |  Branch (738:13): [True: 24, False: 888]
  |  Branch (738:27): [True: 27, False: 861]
  ------------------
  739|     51|            return xasprintf("%s: IPv4 network prefix bits not between 0 and "
  740|     51|                              "32, inclusive", s);
  741|     51|        }
  742|    861|        *mask = be32_prefix_mask(prefix);
  743|    861|    } else if (ovs_scan_len(s, n, IP_SCAN_FMT, IP_SCAN_ARGS(ip))) {
  ------------------
  |  |  645|    174|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
                  } else if (ovs_scan_len(s, n, IP_SCAN_FMT, IP_SCAN_ARGS(ip))) {
  ------------------
  |  |  647|    174|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|    174|        &((uint8_t *) ip)[1],                               \
  |  |  649|    174|        &((uint8_t *) ip)[2],                               \
  |  |  650|    174|        &((uint8_t *) ip)[3]
  ------------------
  |  Branch (743:16): [True: 141, False: 33]
  ------------------
  744|    141|        *mask = OVS_BE32_MAX;
  ------------------
  |  |   43|    141|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  745|    141|    } else {
  746|     33|        return xasprintf("%s: invalid IP address", s);
  747|     33|    }
  748|  1.07k|    return NULL;
  749|  1.15k|}
ip_parse_masked:
  759|  1.15k|{
  760|  1.15k|    int n = 0;
  761|       |
  762|  1.15k|    char *error = ip_parse_masked_len(s, &n, ip, mask);
  763|  1.15k|    if (!error && s[n]) {
  ------------------
  |  Branch (763:9): [True: 1.07k, False: 84]
  |  Branch (763:19): [True: 7, False: 1.06k]
  ------------------
  764|      7|        return xasprintf("%s: invalid IP address", s);
  765|      7|    }
  766|  1.14k|    return error;
  767|  1.15k|}
ipv6_parse:
  808|  3.30k|{
  809|       |    return inet_pton(AF_INET6, s, ip) == 1;
  810|  3.30k|}
ipv6_parse_masked_len:
  822|  3.19k|{
  823|  3.19k|    char ipv6_s[IPV6_SCAN_LEN + 1];
  824|  3.19k|    int prefix;
  825|       |
  826|  3.19k|    if (ovs_scan_len(s, n, " "IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  3.19k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (826:9): [True: 3.18k, False: 14]
  ------------------
  827|  3.18k|        && ipv6_parse(ipv6_s, ip)) {
  ------------------
  |  Branch (827:12): [True: 3.16k, False: 11]
  ------------------
  828|  3.16k|        if (ovs_scan_len(s, n, "/%d", &prefix)) {
  ------------------
  |  Branch (828:13): [True: 2.39k, False: 771]
  ------------------
  829|  2.39k|            if (prefix < 0 || prefix > 128) {
  ------------------
  |  Branch (829:17): [True: 13, False: 2.38k]
  |  Branch (829:31): [True: 18, False: 2.36k]
  ------------------
  830|     31|                return xasprintf("%s: IPv6 network prefix bits not between 0 "
  831|     31|                                 "and 128, inclusive", s);
  832|     31|            }
  833|  2.36k|            *mask = ipv6_create_mask(prefix);
  834|  2.36k|        } else if (ovs_scan_len(s, n, "/"IPV6_SCAN_FMT, ipv6_s)) {
  ------------------
  |  | 1162|    771|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (834:20): [True: 127, False: 644]
  ------------------
  835|    127|             if (!ipv6_parse(ipv6_s, mask)) {
  ------------------
  |  Branch (835:18): [True: 1, False: 126]
  ------------------
  836|      1|                 return xasprintf("%s: Invalid IPv6 mask", s);
  837|      1|             }
  838|       |            /* OK. */
  839|    644|        } else {
  840|       |            /* OK. No mask. */
  841|    644|            *mask = in6addr_exact;
  842|    644|        }
  843|  3.13k|        return NULL;
  844|  3.16k|    }
  845|     25|    return xasprintf("%s: invalid IPv6 address", s);
  846|  3.19k|}
ipv6_parse_masked:
  853|  3.19k|{
  854|  3.19k|    int n = 0;
  855|       |
  856|  3.19k|    char *error = ipv6_parse_masked_len(s, &n, ip, mask);
  857|  3.19k|    if (!error && s[n]) {
  ------------------
  |  Branch (857:9): [True: 3.13k, False: 57]
  |  Branch (857:19): [True: 11, False: 3.12k]
  ------------------
  858|     11|        return xasprintf("%s: invalid IPv6 address", s);
  859|     11|    }
  860|  3.18k|    return error;
  861|  3.19k|}
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.64k|{
  981|  2.64k|   struct in6_addr dst;
  982|  10.5k|   IPV6_FOR_EACH (i) {
  ------------------
  |  |  972|  13.2k|#define IPV6_FOR_EACH(VAR) for (int VAR = 0; VAR < 4; VAR++)
  |  |  ------------------
  |  |  |  Branch (972:46): [True: 10.5k, False: 2.64k]
  |  |  ------------------
  ------------------
  983|  10.5k|       dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  10.5k|#define s6_addrX s6_addr32
  ------------------
                     dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  10.5k|#define s6_addrX s6_addr32
  ------------------
                     dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  10.5k|#define s6_addrX s6_addr32
  ------------------
  984|  10.5k|   }
  985|  2.64k|   return dst;
  986|  2.64k|}
ipv6_create_mask:
 1013|  2.36k|{
 1014|  2.36k|    struct in6_addr netmask;
 1015|  2.36k|    uint8_t *netmaskp = &netmask.s6_addr[0];
 1016|       |
 1017|  2.36k|    memset(&netmask, 0, sizeof netmask);
 1018|  6.12k|    while (mask > 8) {
  ------------------
  |  Branch (1018:12): [True: 3.75k, False: 2.36k]
  ------------------
 1019|  3.75k|        *netmaskp = 0xff;
 1020|  3.75k|        netmaskp++;
 1021|  3.75k|        mask -= 8;
 1022|  3.75k|    }
 1023|       |
 1024|  2.36k|    if (mask) {
  ------------------
  |  Branch (1024:9): [True: 1.70k, False: 659]
  ------------------
 1025|  1.70k|        *netmaskp = 0xff << (8 - mask);
 1026|  1.70k|    }
 1027|       |
 1028|  2.36k|    return netmask;
 1029|  2.36k|}
packet_tcp_flag_to_string:
 1717|  12.3k|{
 1718|  12.3k|    switch (flag) {
 1719|  1.07k|    case TCP_FIN:
  ------------------
  |  |  893|  1.07k|#define TCP_FIN 0x001
  ------------------
  |  Branch (1719:5): [True: 1.07k, False: 11.2k]
  ------------------
 1720|  1.07k|        return "fin";
 1721|  1.08k|    case TCP_SYN:
  ------------------
  |  |  894|  1.08k|#define TCP_SYN 0x002
  ------------------
  |  Branch (1721:5): [True: 1.08k, False: 11.2k]
  ------------------
 1722|  1.08k|        return "syn";
 1723|  1.07k|    case TCP_RST:
  ------------------
  |  |  895|  1.07k|#define TCP_RST 0x004
  ------------------
  |  Branch (1723:5): [True: 1.07k, False: 11.2k]
  ------------------
 1724|  1.07k|        return "rst";
 1725|  1.07k|    case TCP_PSH:
  ------------------
  |  |  896|  1.07k|#define TCP_PSH 0x008
  ------------------
  |  Branch (1725:5): [True: 1.07k, False: 11.2k]
  ------------------
 1726|  1.07k|        return "psh";
 1727|  1.07k|    case TCP_ACK:
  ------------------
  |  |  897|  1.07k|#define TCP_ACK 0x010
  ------------------
  |  Branch (1727:5): [True: 1.07k, False: 11.2k]
  ------------------
 1728|  1.07k|        return "ack";
 1729|  1.07k|    case TCP_URG:
  ------------------
  |  |  898|  1.07k|#define TCP_URG 0x020
  ------------------
  |  Branch (1729:5): [True: 1.07k, False: 11.2k]
  ------------------
 1730|  1.07k|        return "urg";
 1731|  1.06k|    case TCP_ECE:
  ------------------
  |  |  899|  1.06k|#define TCP_ECE 0x040
  ------------------
  |  Branch (1731:5): [True: 1.06k, False: 11.2k]
  ------------------
 1732|  1.06k|        return "ece";
 1733|  1.06k|    case TCP_CWR:
  ------------------
  |  |  900|  1.06k|#define TCP_CWR 0x080
  ------------------
  |  Branch (1733:5): [True: 1.06k, False: 11.2k]
  ------------------
 1734|  1.06k|        return "cwr";
 1735|  1.06k|    case TCP_NS:
  ------------------
  |  |  901|  1.06k|#define TCP_NS  0x100
  ------------------
  |  Branch (1735:5): [True: 1.06k, False: 11.2k]
  ------------------
 1736|  1.06k|        return "ns";
 1737|    760|    case 0x200:
  ------------------
  |  Branch (1737:5): [True: 760, False: 11.5k]
  ------------------
 1738|    760|        return "[200]";
 1739|    611|    case 0x400:
  ------------------
  |  Branch (1739:5): [True: 611, False: 11.7k]
  ------------------
 1740|    611|        return "[400]";
 1741|    294|    case 0x800:
  ------------------
  |  Branch (1741:5): [True: 294, False: 12.0k]
  ------------------
 1742|    294|        return "[800]";
 1743|  1.03k|    default:
  ------------------
  |  Branch (1743:5): [True: 1.03k, False: 11.3k]
  ------------------
 1744|       |        return NULL;
 1745|  12.3k|    }
 1746|  12.3k|}

ofp-flow.c:pt_ns:
 1570|  4.70k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  4.70k|}
ofp-flow.c:pt_ns_type_be:
 1577|    132|{
 1578|    132|    return be32_to_be16(packet_type);
 1579|    132|}
ofp-match.c:eth_addr_is_zero:
  246|  10.2k|{
  247|  10.2k|    return !(a.be16[0] | a.be16[1] | a.be16[2]);
  248|  10.2k|}
ofp-match.c:vlan_tci_to_vid:
  507|     29|{
  508|     29|    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  494|     29|#define VLAN_VID_MASK 0x0fff
  ------------------
                  return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  495|     29|#define VLAN_VID_SHIFT 0
  ------------------
  509|     29|}
ofp-match.c:vlan_tci_to_pcp:
  515|     14|{
  516|     14|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|     14|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|     14|#define VLAN_PCP_SHIFT 13
  ------------------
  517|     14|}
ofp-match.c:eth_addr_invert:
  301|    402|{
  302|    402|    struct eth_addr dst;
  303|       |
  304|  1.60k|    for (int i = 0; i < ARRAY_SIZE(src.be16); i++) {
  ------------------
  |  |  297|  1.60k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  1.60k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  1.60k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  1.60k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.60k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  1.60k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (304:21): [True: 1.20k, False: 402]
  ------------------
  305|  1.20k|        dst.be16[i] = ~src.be16[i];
  306|  1.20k|    }
  307|       |
  308|    402|    return dst;
  309|    402|}
ofp-match.c:eth_type_mpls:
  423|  8.31k|{
  424|  8.31k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 103, False: 8.20k]
  ------------------
  425|  8.20k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 105, False: 8.10k]
  ------------------
  426|  8.31k|}
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|    577|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|    577|}
ofp-match.c:pt_ns_type_be:
 1577|    104|{
 1578|    104|    return be32_to_be16(packet_type);
 1579|    104|}
flow.c:pt_ns_type_be:
 1577|     88|{
 1578|     88|    return be32_to_be16(packet_type);
 1579|     88|}
flow.c:pt_ns:
 1570|     88|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|     88|}
flow.c:pt_ns_type:
 1584|     88|{
 1585|       |    return ntohs(pt_ns_type_be(packet_type));
 1586|     88|}
meta-flow.c:pt_ns:
 1570|  7.66k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  7.66k|}
meta-flow.c:pt_ns_type_be:
 1577|  6.48k|{
 1578|  6.48k|    return be32_to_be16(packet_type);
 1579|  6.48k|}
meta-flow.c:eth_type_mpls:
  423|    495|{
  424|    495|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 226, False: 269]
  ------------------
  425|    269|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 240, False: 29]
  ------------------
  426|    495|}
meta-flow.c:vlan_tci_to_pcp:
  515|  1.49k|{
  516|  1.49k|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|  1.49k|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|  1.49k|#define VLAN_PCP_SHIFT 13
  ------------------
  517|  1.49k|}
meta-flow.c:mpls_lse_to_label:
  568|    516|{
  569|    516|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|    516|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|    516|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|    516|}
meta-flow.c:mpls_lse_to_tc:
  576|    568|{
  577|    568|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|    568|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|    568|#define MPLS_TC_SHIFT       9
  ------------------
  578|    568|}
meta-flow.c:mpls_lse_to_bos:
  624|    536|{
  625|       |    return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
  626|    536|}
meta-flow.c:mpls_lse_to_ttl:
  584|    564|{
  585|    564|    return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  545|    564|#define MPLS_TTL_MASK       0x000000ff
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  546|    564|#define MPLS_TTL_SHIFT      0
  ------------------
  586|    564|}
meta-flow.c:ip_is_cidr:
  664|  1.46k|{
  665|       |    uint32_t x = ~ntohl(netmask);
  666|  1.46k|    return !(x & (x + 1));
  667|  1.46k|}
meta-flow.c:dl_type_is_ip_any:
 1256|  3.66k|{
 1257|  3.66k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 1.80k, False: 1.86k]
  ------------------
 1258|  1.86k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 1.74k, False: 117]
  ------------------
 1259|  3.66k|}
nx-match.c:pt_ns:
 1570|  1.15k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  1.15k|}
nx-match.c:pt_ns_type_be:
 1577|    215|{
 1578|    215|    return be32_to_be16(packet_type);
 1579|    215|}
nx-match.c:vlan_tci_to_pcp:
  515|     10|{
  516|     10|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|     10|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|     10|#define VLAN_PCP_SHIFT 13
  ------------------
  517|     10|}
nx-match.c:eth_type_mpls:
  423|  4.49k|{
  424|  4.49k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 29, False: 4.46k]
  ------------------
  425|  4.46k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 46, False: 4.42k]
  ------------------
  426|  4.49k|}
nx-match.c:mpls_lse_to_tc:
  576|      1|{
  577|      1|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|      1|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|      1|#define MPLS_TC_SHIFT       9
  ------------------
  578|      1|}
nx-match.c:mpls_lse_to_bos:
  624|      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|      1|{
  569|      1|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|      1|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|      1|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|      1|}
nx-match.c:dl_type_is_ip_any:
 1256|  4.49k|{
 1257|  4.49k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 265, False: 4.23k]
  ------------------
 1258|  4.23k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 329, False: 3.90k]
  ------------------
 1259|  4.49k|}
ofp-actions.c:eth_type_vlan:
  429|  1.29k|{
  430|  1.29k|    return eth_type == htons(ETH_TYPE_VLAN_8021Q) ||
  ------------------
  |  Branch (430:12): [True: 838, False: 461]
  ------------------
  431|    461|        eth_type == htons(ETH_TYPE_VLAN_8021AD);
  ------------------
  |  Branch (431:9): [True: 437, False: 24]
  ------------------
  432|  1.29k|}
ofp-actions.c:eth_type_mpls:
  423|  9.05k|{
  424|  9.05k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 1.97k, False: 7.08k]
  ------------------
  425|  7.08k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 3.22k, False: 3.86k]
  ------------------
  426|  9.05k|}
ofp-actions.c:ipv6_mask_is_any:
 1193|  5.69k|static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
 1194|  5.69k|    return ipv6_addr_equals(mask, &in6addr_any);
 1195|  5.69k|}
ofp-actions.c:ipv6_addr_equals:
 1184|  5.69k|{
 1185|  5.69k|#ifdef IN6_ARE_ADDR_EQUAL
 1186|  5.69k|    return IN6_ARE_ADDR_EQUAL(a, b);
 1187|       |#else
 1188|       |    return !memcmp(a, b, sizeof(*a));
 1189|       |#endif
 1190|  5.69k|}
ofp-actions.c:pt_ns:
 1570|  18.4k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  18.4k|}
ofp-actions.c:pt_ns_type_be:
 1577|  13.7k|{
 1578|  13.7k|    return be32_to_be16(packet_type);
 1579|  13.7k|}
ofp-actions.c:dl_type_is_ip_any:
 1256|  27.2k|{
 1257|  27.2k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 13.3k, False: 13.8k]
  ------------------
 1258|  13.8k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 7.40k, False: 6.45k]
  ------------------
 1259|  27.2k|}
ofp-actions.c:pt_ns_type:
 1584|  1.03k|{
 1585|       |    return ntohs(pt_ns_type_be(packet_type));
 1586|  1.03k|}
ofp-actions.c:vlan_tci_to_vid:
  507|  1.79k|{
  508|  1.79k|    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  494|  1.79k|#define VLAN_VID_MASK 0x0fff
  ------------------
                  return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  495|  1.79k|#define VLAN_VID_SHIFT 0
  ------------------
  509|  1.79k|}
ofp-actions.c:vlan_tci_to_pcp:
  515|  1.79k|{
  516|  1.79k|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|  1.79k|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|  1.79k|#define VLAN_PCP_SHIFT 13
  ------------------
  517|  1.79k|}

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

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

tun_metadata_read:
  223|  74.6k|{
  224|  74.6k|    const struct tun_table *map = tnl->metadata.tab;
  225|  74.6k|    unsigned int idx = mf->id - MFF_TUN_METADATA0;
  226|  74.6k|    const struct tun_metadata_loc *loc;
  227|       |
  228|  74.6k|    if (!map) {
  ------------------
  |  Branch (228:9): [True: 74.6k, False: 0]
  ------------------
  229|  74.6k|        memset(value->tun_metadata, 0, mf->n_bytes);
  230|  74.6k|        return;
  231|  74.6k|    }
  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|  37.8k|{
  355|  37.8k|    const struct tun_table *map = match->flow.tunnel.metadata.tab;
  356|  37.8k|    const struct tun_metadata_loc *loc;
  357|  37.8k|    unsigned int idx = mf->id - MFF_TUN_METADATA0;
  358|  37.8k|    unsigned int field_len;
  359|  37.8k|    bool is_masked;
  360|  37.8k|    unsigned int data_offset;
  361|  37.8k|    union mf_value data;
  362|       |
  363|  37.8k|    field_len = mf_field_len(mf, value, mask, &is_masked);
  364|  37.8k|    loc = metadata_loc_from_match(map, match, mf->name, idx, field_len,
  365|  37.8k|                                  is_masked, err_str);
  366|  37.8k|    if (!loc) {
  ------------------
  |  Branch (366:9): [True: 7.29k, False: 30.5k]
  ------------------
  367|  7.29k|        return;
  368|  7.29k|    }
  369|       |
  370|  30.5k|    data_offset = mf->n_bytes - loc->len;
  371|       |
  372|  30.5k|    if (!value) {
  ------------------
  |  Branch (372:9): [True: 0, False: 30.5k]
  ------------------
  373|      0|        memset(data.tun_metadata, 0, loc->len);
  374|  30.5k|    } else if (!mask) {
  ------------------
  |  Branch (374:16): [True: 14.5k, False: 16.0k]
  ------------------
  375|  14.5k|        memcpy(data.tun_metadata, value->tun_metadata + data_offset, loc->len);
  376|  16.0k|    } else {
  377|  16.0k|        int i;
  378|  45.2k|        for (i = 0; i < loc->len; i++) {
  ------------------
  |  Branch (378:21): [True: 29.2k, False: 16.0k]
  ------------------
  379|  29.2k|            data.tun_metadata[i] = value->tun_metadata[data_offset + i] &
  380|  29.2k|                                   mask->tun_metadata[data_offset + i];
  381|  29.2k|        }
  382|  16.0k|    }
  383|  30.5k|    memcpy_to_metadata(&match->flow.tunnel.metadata, data.tun_metadata,
  384|  30.5k|                       loc, idx);
  385|       |
  386|  30.5k|    if (!value) {
  ------------------
  |  Branch (386:9): [True: 0, False: 30.5k]
  ------------------
  387|      0|        memset(data.tun_metadata, 0, loc->len);
  388|  30.5k|    } else if (!mask) {
  ------------------
  |  Branch (388:16): [True: 14.5k, False: 16.0k]
  ------------------
  389|  14.5k|        memset(data.tun_metadata, 0xff, loc->len);
  390|  16.0k|    } else {
  391|  16.0k|        memcpy(data.tun_metadata, mask->tun_metadata + data_offset, loc->len);
  392|  16.0k|    }
  393|  30.5k|    memcpy_to_metadata(&match->wc.masks.tunnel.metadata, data.tun_metadata,
  394|  30.5k|                       loc, idx);
  395|  30.5k|}
tun_metadata_to_nx_match:
  879|  4.49k|{
  880|  4.49k|    int i;
  881|       |
  882|  4.49k|    ULLONG_FOR_EACH_1 (i, match->wc.masks.tunnel.metadata.present.map) {
  ------------------
  |  |  285|  4.49k|    for (uint64_t map__ = (MAP);                    \
  |  |  286|  4.93k|         map__ && (((IDX) = raw_ctz(map__)), true); \
  |  |  ------------------
  |  |  |  Branch (286:10): [True: 441, False: 4.49k]
  |  |  |  Branch (286:19): [True: 441, False: 0]
  |  |  ------------------
  |  |  287|  4.49k|         map__ = zero_rightmost_1bit(map__))
  ------------------
  883|    441|        const struct tun_metadata_loc *loc;
  884|    441|        bool is_masked;
  885|    441|        union mf_value opts;
  886|    441|        union mf_value mask_opts;
  887|       |
  888|    441|        loc = metadata_loc_from_match_read(match->flow.tunnel.metadata.tab,
  889|    441|                                           match, i, &match->wc.masks.tunnel,
  890|    441|                                           &is_masked);
  891|    441|        memcpy_from_metadata(opts.tun_metadata, &match->flow.tunnel.metadata,
  892|    441|                             loc);
  893|    441|        memcpy_from_metadata(mask_opts.tun_metadata,
  894|    441|                             &match->wc.masks.tunnel.metadata, loc);
  895|    441|        nxm_put_entry_raw(b, MFF_TUN_METADATA0 + i, oxm, opts.tun_metadata,
  896|    441|                          is_masked ? mask_opts.tun_metadata : NULL, loc->len);
  ------------------
  |  Branch (896:27): [True: 258, False: 183]
  ------------------
  897|    441|    }
  898|  4.49k|}
tun_metadata_allocation_clone:
  947|  10.0k|{
  948|  10.0k|    return src && src->valid ? xmemdup(src, sizeof *src) : NULL;
  ------------------
  |  Branch (948:12): [True: 10.0k, False: 0]
  |  Branch (948:19): [True: 359, False: 9.67k]
  ------------------
  949|  10.0k|}
tun_metadata_allocation_copy:
  954|  19.8k|{
  955|  19.8k|    if (src && src->valid) {
  ------------------
  |  Branch (955:9): [True: 717, False: 19.1k]
  |  Branch (955:16): [True: 717, False: 0]
  ------------------
  956|    717|        *dst = *src;
  957|  19.1k|    } else {
  958|  19.1k|        memset(dst, 0, sizeof *dst);
  959|  19.1k|    }
  960|  19.8k|}
tun-metadata.c:metadata_loc_from_match:
  285|  37.8k|{
  286|  37.8k|    ovs_assert(idx < TUN_METADATA_NUM_OPTS);
  ------------------
  |  |   62|  37.8k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(idx < TUN_METADATA_NUM_OPTS);
  ------------------
  |  |   26|  37.8k|#define TUN_METADATA_NUM_OPTS 64
  ------------------
  287|       |
  288|  37.8k|    if (err_str) {
  ------------------
  |  Branch (288:9): [True: 767, False: 37.1k]
  ------------------
  289|    767|        *err_str = NULL;
  290|    767|    }
  291|       |
  292|  37.8k|    if (map) {
  ------------------
  |  Branch (292:9): [True: 0, False: 37.8k]
  ------------------
  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|  37.8k|    if (match->tun_md.alloc_offset + field_len > TUN_METADATA_TOT_OPT_SIZE) {
  ------------------
  |  |   27|  37.8k|#define TUN_METADATA_TOT_OPT_SIZE 256
  ------------------
  |  Branch (300:9): [True: 598, False: 37.2k]
  ------------------
  301|    598|        if (err_str) {
  ------------------
  |  Branch (301:13): [True: 2, False: 596]
  ------------------
  302|      2|            *err_str = xasprintf("field %s exceeds maximum size for tunnel "
  303|      2|                                 "metadata (used %d, max %d)", name,
  304|      2|                                 match->tun_md.alloc_offset + field_len,
  305|      2|                                 TUN_METADATA_TOT_OPT_SIZE);
  ------------------
  |  |   27|      2|#define TUN_METADATA_TOT_OPT_SIZE 256
  ------------------
  306|      2|        }
  307|       |
  308|    598|        return NULL;
  309|    598|    }
  310|       |
  311|  37.2k|    if (ULLONG_GET(match->wc.masks.tunnel.metadata.present.map, idx)) {
  ------------------
  |  |  293|  37.2k|#define ULLONG_GET(MAP, OFFSET) !!((MAP) & (1ULL << (OFFSET)))
  |  |  ------------------
  |  |  |  Branch (293:33): [True: 6.69k, False: 30.5k]
  |  |  ------------------
  ------------------
  312|  6.69k|        if (err_str) {
  ------------------
  |  Branch (312:13): [True: 152, False: 6.54k]
  ------------------
  313|    152|            *err_str = xasprintf("field %s set multiple times", name);
  314|    152|        }
  315|       |
  316|  6.69k|        return NULL;
  317|  6.69k|    }
  318|       |
  319|  30.5k|    match->tun_md.entry[idx].loc.len = field_len;
  320|  30.5k|    match->tun_md.entry[idx].loc.c.offset = match->tun_md.alloc_offset;
  321|  30.5k|    match->tun_md.entry[idx].loc.c.len = field_len;
  322|  30.5k|    match->tun_md.entry[idx].loc.c.next = NULL;
  323|  30.5k|    match->tun_md.entry[idx].masked = masked;
  324|  30.5k|    match->tun_md.alloc_offset += field_len;
  325|  30.5k|    match->tun_md.valid = true;
  326|       |
  327|  30.5k|    return &match->tun_md.entry[idx].loc;
  328|  37.2k|}
tun-metadata.c:memcpy_to_metadata:
  445|  61.1k|{
  446|  61.1k|    const struct tun_metadata_loc_chain *chain = &loc->c;
  447|  61.1k|    int addr = 0;
  448|       |
  449|   122k|    while (chain) {
  ------------------
  |  Branch (449:12): [True: 61.1k, False: 61.1k]
  ------------------
  450|  61.1k|        memcpy(dst->opts.u8 + chain->offset, (uint8_t *)src + addr,
  451|  61.1k|               chain->len);
  452|  61.1k|        addr += chain->len;
  453|  61.1k|        chain = chain->next;
  454|  61.1k|    }
  455|       |
  456|  61.1k|    ULLONG_SET1(dst->present.map, idx);
  ------------------
  |  |  290|  61.1k|#define ULLONG_SET1(MAP, OFFSET) ((MAP) |= 1ULL << (OFFSET))
  ------------------
  457|  61.1k|}
tun-metadata.c:memcpy_from_metadata:
  462|    882|{
  463|    882|    const struct tun_metadata_loc_chain *chain = &loc->c;
  464|    882|    int addr = 0;
  465|       |
  466|  1.76k|    while (chain) {
  ------------------
  |  Branch (466:12): [True: 882, False: 882]
  ------------------
  467|    882|        memcpy((uint8_t *)dst + addr, src->opts.u8 + chain->offset,
  468|    882|               chain->len);
  469|    882|        addr += chain->len;
  470|    882|        chain = chain->next;
  471|    882|    }
  472|    882|}
tun-metadata.c:metadata_loc_from_match_read:
  857|    441|{
  858|    441|    union mf_value mask_opts;
  859|       |
  860|    441|    if (match->tun_md.valid) {
  ------------------
  |  Branch (860:9): [True: 441, False: 0]
  ------------------
  861|    441|        *is_masked = match->tun_md.entry[idx].masked;
  862|    441|        return &match->tun_md.entry[idx].loc;
  863|    441|    }
  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|    441|}

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

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

json.c:uc_is_leading_surrogate:
   34|  27.5k|{
   35|  27.5k|    return c >= 0xd800 && c <= 0xdbff;
  ------------------
  |  Branch (35:12): [True: 9.34k, False: 18.1k]
  |  Branch (35:27): [True: 3.60k, False: 5.73k]
  ------------------
   36|  27.5k|}
json.c:uc_is_trailing_surrogate:
   41|  2.09k|{
   42|  2.09k|    return c >= 0xdc00 && c <= 0xdfff;
  ------------------
  |  Branch (42:12): [True: 1.88k, False: 205]
  |  Branch (42:27): [True: 1.88k, False: 2]
  ------------------
   43|  2.09k|}

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|   418k|{
  148|   418k|    p = realloc(p, size ? size : 1);
  ------------------
  |  Branch (148:20): [True: 418k, False: 0]
  ------------------
  149|   418k|    if (p == NULL) {
  ------------------
  |  Branch (149:9): [True: 0, False: 418k]
  ------------------
  150|      0|        out_of_memory();
  151|      0|    }
  152|   418k|    return p;
  153|   418k|}
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|   418k|{
  179|   418k|    COVERAGE_INC(util_xalloc);
  ------------------
  |  |   83|   418k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|   418k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  180|   418k|    return xrealloc__(p, size);
  181|   418k|}
xmemdup:
  185|    359|{
  186|    359|    void *p = xmalloc(size);
  187|    359|    nullable_memcpy(p, p_, size);
  188|    359|    return p;
  189|    359|}
xmemdup0:
  193|   135k|{
  194|   135k|    char *p = xmalloc(length + 1);
  195|   135k|    memcpy(p, p_, length);
  196|   135k|    p[length] = '\0';
  197|   135k|    return p;
  198|   135k|}
xstrdup:
  202|   135k|{
  203|   135k|    return xmemdup0(s, strlen(s));
  204|   135k|}
xvasprintf:
  220|  70.9k|{
  221|  70.9k|    va_list args2;
  222|  70.9k|    size_t needed;
  223|  70.9k|    char *s;
  224|       |
  225|  70.9k|    ovs_assert(format);
  ------------------
  |  |   62|  70.9k|#define ovs_assert ovs_ignore
  ------------------
  226|       |
  227|  70.9k|    va_copy(args2, args);
  228|  70.9k|    needed = vsnprintf(NULL, 0, format, args);
  229|       |
  230|  70.9k|    s = xmalloc(needed + 1);
  231|       |
  232|  70.9k|    vsnprintf(s, needed + 1, format, args2);
  233|  70.9k|    va_end(args2);
  234|       |
  235|  70.9k|    return s;
  236|  70.9k|}
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|  70.7k|{
  367|  70.7k|    va_list args;
  368|  70.7k|    char *s;
  369|       |
  370|  70.7k|    va_start(args, format);
  371|  70.7k|    s = xvasprintf(format, args);
  372|  70.7k|    va_end(args);
  373|       |
  374|  70.7k|    return s;
  375|  70.7k|}
ovs_strlcpy:
  381|  4.06k|{
  382|  4.06k|    if (size > 0) {
  ------------------
  |  Branch (382:9): [True: 4.06k, False: 0]
  ------------------
  383|  4.06k|        size_t len = strnlen(src, size - 1);
  384|  4.06k|        memcpy(dst, src, len);
  385|  4.06k|        dst[len] = '\0';
  386|  4.06k|    }
  387|  4.06k|}
str_to_int:
  809|  27.8k|{
  810|  27.8k|    long long ll;
  811|  27.8k|    bool ok = str_to_llong(s, base, &ll);
  812|       |
  813|  27.8k|    if (!ok || ll < INT_MIN || ll > INT_MAX) {
  ------------------
  |  Branch (813:9): [True: 531, False: 27.2k]
  |  Branch (813:16): [True: 58, False: 27.2k]
  |  Branch (813:32): [True: 1, False: 27.2k]
  ------------------
  814|    590|        *i = 0;
  815|    590|        return false;
  816|    590|    }
  817|  27.2k|    *i = ll;
  818|       |    return true;
  819|  27.8k|}
str_to_llong:
  837|   258k|{
  838|   258k|    char *tail;
  839|   258k|    bool ok = str_to_llong_with_tail(s, &tail, base, x);
  840|   258k|    if (*tail != '\0') {
  ------------------
  |  Branch (840:9): [True: 16.3k, False: 242k]
  ------------------
  841|  16.3k|        *x = 0;
  842|  16.3k|        return false;
  843|  16.3k|    }
  844|   242k|    return ok;
  845|   258k|}
str_to_llong_with_tail:
  849|   258k|{
  850|   258k|    int save_errno = errno;
  851|   258k|    errno = 0;
  852|   258k|    *x = strtoll(s, tail, base);
  853|   258k|    if (errno == EINVAL || errno == ERANGE || *tail == s) {
  ------------------
  |  Branch (853:9): [True: 0, False: 258k]
  |  Branch (853:28): [True: 3, False: 258k]
  |  Branch (853:47): [True: 16.3k, False: 242k]
  ------------------
  854|  16.3k|        errno = save_errno;
  855|  16.3k|        *x = 0;
  856|  16.3k|        return false;
  857|   242k|    } else {
  858|   242k|        errno = save_errno;
  859|       |        return true;
  860|   242k|    }
  861|   258k|}
str_to_uint:
  865|   231k|{
  866|   231k|    long long ll;
  867|   231k|    bool ok = str_to_llong(s, base, &ll);
  868|   231k|    if (!ok || ll < 0 || ll > UINT_MAX) {
  ------------------
  |  Branch (868:9): [True: 15.9k, False: 215k]
  |  Branch (868:16): [True: 22, False: 215k]
  |  Branch (868:26): [True: 22, False: 215k]
  ------------------
  869|  15.9k|        *u = 0;
  870|  15.9k|        return false;
  871|   215k|    } else {
  872|   215k|        *u = ll;
  873|       |        return true;
  874|   215k|    }
  875|   231k|}
str_to_ullong:
  879|  8.22k|{
  880|  8.22k|    int save_errno = errno;
  881|  8.22k|    char *tail;
  882|       |
  883|  8.22k|    errno = 0;
  884|  8.22k|    *x = strtoull(s, &tail, base);
  885|  8.22k|    if (errno == EINVAL || errno == ERANGE || tail == s || *tail != '\0') {
  ------------------
  |  Branch (885:9): [True: 0, False: 8.22k]
  |  Branch (885:28): [True: 1, False: 8.22k]
  |  Branch (885:47): [True: 596, False: 7.62k]
  |  Branch (885:60): [True: 10, False: 7.61k]
  ------------------
  886|    607|        errno = save_errno;
  887|    607|        *x = 0;
  888|    607|        return false;
  889|  7.61k|    } else {
  890|  7.61k|        errno = save_errno;
  891|       |        return true;
  892|  7.61k|    }
  893|  8.22k|}
hexit_value:
  937|  3.83M|{
  938|  3.83M|    static const signed char tbl[UCHAR_MAX + 1] = {
  939|  3.83M|#define TBL(x)                                  \
  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  943|  3.83M|         : -1)
  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  946|  3.83M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  947|  3.83M|        TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.83M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.83M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 3.83M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.83M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  3.83M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  3.83M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  3.83M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  3.83M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  3.83M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  3.83M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  3.83M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  948|  3.83M|    };
  949|       |
  950|  3.83M|    return tbl[c];
  951|  3.83M|}
hexits_value:
  959|  1.46M|{
  960|  1.46M|    uintmax_t value;
  961|  1.46M|    size_t i;
  962|       |
  963|  1.46M|    value = 0;
  964|  4.29M|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (964:17): [True: 2.84M, False: 1.45M]
  ------------------
  965|  2.84M|        int hexit = hexit_value(s[i]);
  966|  2.84M|        if (hexit < 0) {
  ------------------
  |  Branch (966:13): [True: 12.5k, False: 2.83M]
  ------------------
  967|  12.5k|            *ok = false;
  968|  12.5k|            return UINTMAX_MAX;
  969|  12.5k|        }
  970|  2.83M|        value = (value << 4) + hexit;
  971|  2.83M|    }
  972|  1.45M|    *ok = true;
  973|  1.45M|    return value;
  974|  1.46M|}
parse_int_string:
  988|   250k|{
  989|   250k|    unsigned long long int integer;
  990|   250k|    int i;
  991|       |
  992|   250k|    if (!strncmp(s, "0x", 2) || !strncmp(s, "0X", 2)) {
  ------------------
  |  Branch (992:9): [True: 6.14k, False: 244k]
  |  Branch (992:33): [True: 2.07k, False: 242k]
  ------------------
  993|  8.22k|        uint8_t *hexit_str;
  994|  8.22k|        int len = 0;
  995|  8.22k|        int val_idx;
  996|  8.22k|        int err = 0;
  997|       |
  998|  8.22k|        s += 2;
  999|  8.22k|        hexit_str = xmalloc(field_width * 2);
 1000|       |
 1001|   144k|        for (;;) {
 1002|   144k|            uint8_t hexit;
 1003|   144k|            bool ok;
 1004|       |
 1005|   144k|            s += strspn(s, " \t\r\n");
 1006|   144k|            hexit = hexits_value(s, 1, &ok);
 1007|   144k|            if (!ok) {
  ------------------
  |  Branch (1007:17): [True: 8.21k, False: 136k]
  ------------------
 1008|  8.21k|                *tail = CONST_CAST(char *, s);
  ------------------
  |  |   85|  8.21k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  8.21k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  8.21k|     (TYPE) (POINTER))
  ------------------
 1009|  8.21k|                break;
 1010|  8.21k|            }
 1011|       |
 1012|   136k|            if (hexit != 0 || len) {
  ------------------
  |  Branch (1012:17): [True: 100k, False: 35.5k]
  |  Branch (1012:31): [True: 34.6k, False: 915]
  ------------------
 1013|   135k|                if (DIV_ROUND_UP(len + 1, 2) > field_width) {
  ------------------
  |  |  300|   135k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  |  Branch (1013:21): [True: 3, False: 135k]
  ------------------
 1014|      3|                    err = ERANGE;
 1015|      3|                    goto free;
 1016|      3|                }
 1017|       |
 1018|   135k|                hexit_str[len] = hexit;
 1019|   135k|                len++;
 1020|   135k|            }
 1021|   136k|            s++;
 1022|   136k|        }
 1023|       |
 1024|  8.21k|        val_idx = field_width;
 1025|  77.7k|        for (i = len - 1; i >= 0; i -= 2) {
  ------------------
  |  Branch (1025:27): [True: 69.5k, False: 8.21k]
  ------------------
 1026|  69.5k|            val_idx--;
 1027|  69.5k|            valuep[val_idx] = hexit_str[i];
 1028|  69.5k|            if (i > 0) {
  ------------------
  |  Branch (1028:17): [True: 65.2k, False: 4.24k]
  ------------------
 1029|  65.2k|                valuep[val_idx] += hexit_str[i - 1] << 4;
 1030|  65.2k|            }
 1031|  69.5k|        }
 1032|       |
 1033|  8.21k|        memset(valuep, 0, val_idx);
 1034|       |
 1035|  8.22k|free:
 1036|  8.22k|        free(hexit_str);
 1037|  8.22k|        return err;
 1038|  8.21k|    }
 1039|       |
 1040|   250k|    errno = 0;
 1041|   242k|    integer = strtoull(s, tail, 0);
 1042|   242k|    if (errno || s == *tail) {
  ------------------
  |  Branch (1042:9): [True: 2, False: 242k]
  |  Branch (1042:18): [True: 463, False: 242k]
  ------------------
 1043|    465|        return errno ? errno : EINVAL;
  ------------------
  |  Branch (1043:16): [True: 2, False: 463]
  ------------------
 1044|    465|    }
 1045|       |
 1046|  6.81M|    for (i = field_width - 1; i >= 0; i--) {
  ------------------
  |  Branch (1046:31): [True: 6.57M, False: 242k]
  ------------------
 1047|  6.57M|        valuep[i] = integer;
 1048|  6.57M|        integer >>= 8;
 1049|  6.57M|    }
 1050|   242k|    if (integer) {
  ------------------
  |  Branch (1050:9): [True: 57, False: 242k]
  ------------------
 1051|     57|        return ERANGE;
 1052|     57|    }
 1053|       |
 1054|   242k|    return 0;
 1055|   242k|}
ovs_ignore:
 1265|  12.2M|void ovs_ignore(bool x OVS_UNUSED) { }
is_all_byte:
 1356|   712k|{
 1357|   712k|    const uint8_t *p = p_;
 1358|   712k|    size_t i;
 1359|       |
 1360|  10.6M|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1360:17): [True: 10.1M, False: 497k]
  ------------------
 1361|  10.1M|        if (p[i] != byte) {
  ------------------
  |  Branch (1361:13): [True: 215k, False: 9.90M]
  ------------------
 1362|   215k|            return false;
 1363|   215k|        }
 1364|  10.1M|    }
 1365|   497k|    return true;
 1366|   712k|}
is_all_zeros:
 1371|   443k|{
 1372|   443k|    return is_all_byte(p, n, 0);
 1373|   443k|}
is_all_ones:
 1378|   268k|{
 1379|   268k|    return is_all_byte(p, n, 0xff);
 1380|   268k|}
bitwise_copy:
 1414|   227k|{
 1415|   227k|    const uint8_t *src = src_;
 1416|   227k|    uint8_t *dst = dst_;
 1417|       |
 1418|   227k|    src += src_len - (src_ofs / 8 + 1);
 1419|   227k|    src_ofs %= 8;
 1420|       |
 1421|   227k|    dst += dst_len - (dst_ofs / 8 + 1);
 1422|   227k|    dst_ofs %= 8;
 1423|       |
 1424|   227k|    if (src_ofs == 0 && dst_ofs == 0) {
  ------------------
  |  Branch (1424:9): [True: 132k, False: 94.8k]
  |  Branch (1424:25): [True: 96.2k, False: 36.3k]
  ------------------
 1425|  96.2k|        unsigned int n_bytes = n_bits / 8;
 1426|  96.2k|        if (n_bytes) {
  ------------------
  |  Branch (1426:13): [True: 51.1k, False: 45.1k]
  ------------------
 1427|  51.1k|            dst -= n_bytes - 1;
 1428|  51.1k|            src -= n_bytes - 1;
 1429|  51.1k|            memcpy(dst, src, n_bytes);
 1430|       |
 1431|  51.1k|            n_bits %= 8;
 1432|  51.1k|            src--;
 1433|  51.1k|            dst--;
 1434|  51.1k|        }
 1435|  96.2k|        if (n_bits) {
  ------------------
  |  Branch (1435:13): [True: 46.4k, False: 49.8k]
  ------------------
 1436|  46.4k|            uint8_t mask = (1 << n_bits) - 1;
 1437|  46.4k|            *dst = (*dst & ~mask) | (*src & mask);
 1438|  46.4k|        }
 1439|   131k|    } else {
 1440|   283k|        while (n_bits > 0) {
  ------------------
  |  Branch (1440:16): [True: 151k, False: 131k]
  ------------------
 1441|   151k|            unsigned int max_copy = 8 - MAX(src_ofs, dst_ofs);
  ------------------
  |  |   95|   151k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 102k, False: 48.9k]
  |  |  ------------------
  ------------------
 1442|   151k|            unsigned int chunk = MIN(n_bits, max_copy);
  ------------------
  |  |   91|   151k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 121k, False: 30.4k]
  |  |  ------------------
  ------------------
 1443|   151k|            uint8_t mask = ((1 << chunk) - 1) << dst_ofs;
 1444|       |
 1445|   151k|            *dst &= ~mask;
 1446|   151k|            *dst |= ((*src >> src_ofs) << dst_ofs) & mask;
 1447|       |
 1448|   151k|            src_ofs += chunk;
 1449|   151k|            if (src_ofs == 8) {
  ------------------
  |  Branch (1449:17): [True: 18.5k, False: 133k]
  ------------------
 1450|  18.5k|                src--;
 1451|  18.5k|                src_ofs = 0;
 1452|  18.5k|            }
 1453|   151k|            dst_ofs += chunk;
 1454|   151k|            if (dst_ofs == 8) {
  ------------------
  |  Branch (1454:17): [True: 11.9k, False: 139k]
  ------------------
 1455|  11.9k|                dst--;
 1456|  11.9k|                dst_ofs = 0;
 1457|  11.9k|            }
 1458|   151k|            n_bits -= chunk;
 1459|   151k|        }
 1460|   131k|    }
 1461|   227k|}
bitwise_one:
 1526|   112k|{
 1527|   112k|    uint8_t *dst = dst_;
 1528|       |
 1529|   112k|    if (!n_bits) {
  ------------------
  |  Branch (1529:9): [True: 0, False: 112k]
  ------------------
 1530|      0|        return;
 1531|      0|    }
 1532|       |
 1533|   112k|    dst += dst_len - (dst_ofs / 8 + 1);
 1534|   112k|    dst_ofs %= 8;
 1535|       |
 1536|   112k|    if (dst_ofs) {
  ------------------
  |  Branch (1536:9): [True: 36.3k, False: 76.4k]
  ------------------
 1537|  36.3k|        unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
  ------------------
  |  |   91|  36.3k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 32.2k, False: 4.09k]
  |  |  ------------------
  ------------------
 1538|       |
 1539|  36.3k|        *dst |= ((1 << chunk) - 1) << dst_ofs;
 1540|       |
 1541|  36.3k|        n_bits -= chunk;
 1542|  36.3k|        if (!n_bits) {
  ------------------
  |  Branch (1542:13): [True: 35.6k, False: 690]
  ------------------
 1543|  35.6k|            return;
 1544|  35.6k|        }
 1545|       |
 1546|    690|        dst--;
 1547|    690|    }
 1548|       |
 1549|  2.82M|    while (n_bits >= 8) {
  ------------------
  |  Branch (1549:12): [True: 2.75M, False: 77.1k]
  ------------------
 1550|  2.75M|        *dst-- = 0xff;
 1551|  2.75M|        n_bits -= 8;
 1552|  2.75M|    }
 1553|       |
 1554|  77.1k|    if (n_bits) {
  ------------------
  |  Branch (1554:9): [True: 30.2k, False: 46.8k]
  ------------------
 1555|  30.2k|        *dst |= (1 << n_bits) - 1;
 1556|  30.2k|    }
 1557|  77.1k|}
bitwise_is_all_zeros:
 1575|  78.3k|{
 1576|  78.3k|    const uint8_t *p = p_;
 1577|       |
 1578|  78.3k|    if (!n_bits) {
  ------------------
  |  Branch (1578:9): [True: 11.7k, False: 66.6k]
  ------------------
 1579|  11.7k|        return true;
 1580|  11.7k|    }
 1581|       |
 1582|  66.6k|    p += len - (ofs / 8 + 1);
 1583|  66.6k|    ofs %= 8;
 1584|       |
 1585|  66.6k|    if (ofs) {
  ------------------
  |  Branch (1585:9): [True: 65.7k, False: 914]
  ------------------
 1586|  65.7k|        unsigned int chunk = MIN(n_bits, 8 - ofs);
  ------------------
  |  |   91|  65.7k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 0, False: 65.7k]
  |  |  ------------------
  ------------------
 1587|       |
 1588|  65.7k|        if (*p & (((1 << chunk) - 1) << ofs)) {
  ------------------
  |  Branch (1588:13): [True: 130, False: 65.6k]
  ------------------
 1589|    130|            return false;
 1590|    130|        }
 1591|       |
 1592|  65.6k|        n_bits -= chunk;
 1593|  65.6k|        if (!n_bits) {
  ------------------
  |  Branch (1593:13): [True: 11.1k, False: 54.4k]
  ------------------
 1594|  11.1k|            return true;
 1595|  11.1k|        }
 1596|       |
 1597|  54.4k|        p--;
 1598|  54.4k|    }
 1599|       |
 1600|  2.36M|    while (n_bits >= 8) {
  ------------------
  |  Branch (1600:12): [True: 2.30M, False: 55.3k]
  ------------------
 1601|  2.30M|        if (*p) {
  ------------------
  |  Branch (1601:13): [True: 11, False: 2.30M]
  ------------------
 1602|     11|            return false;
 1603|     11|        }
 1604|  2.30M|        n_bits -= 8;
 1605|  2.30M|        p--;
 1606|  2.30M|    }
 1607|       |
 1608|  55.3k|    if (n_bits && *p & ((1 << n_bits) - 1)) {
  ------------------
  |  Branch (1608:9): [True: 0, False: 55.3k]
  |  Branch (1608:19): [True: 0, False: 0]
  ------------------
 1609|      0|        return false;
 1610|      0|    }
 1611|       |
 1612|  55.3k|    return true;
 1613|  55.3k|}
bitwise_scan:
 1630|   236k|{
 1631|   236k|    unsigned int ofs;
 1632|       |
 1633|   989k|    for (ofs = start; ofs < end; ofs++) {
  ------------------
  |  Branch (1633:23): [True: 977k, False: 12.1k]
  ------------------
 1634|   977k|        if (bitwise_get_bit(p, len, ofs) == target) {
  ------------------
  |  Branch (1634:13): [True: 224k, False: 753k]
  ------------------
 1635|   224k|            break;
 1636|   224k|        }
 1637|   977k|    }
 1638|   236k|    return ofs;
 1639|   236k|}
bitwise_get:
 1742|   114k|{
 1743|   114k|    ovs_be64 value = htonll(0);
 1744|       |
 1745|   114k|    bitwise_copy(src, src_len, src_ofs,
 1746|   114k|                 &value, sizeof value, 0,
 1747|   114k|                 n_bits);
 1748|   114k|    return ntohll(value);
 1749|   114k|}
bitwise_get_bit:
 1765|   977k|{
 1766|   977k|    const uint8_t *src = src_;
 1767|       |
 1768|   977k|    return (src[len - (ofs / 8 + 1)] & (1u << (ofs % 8))) != 0;
 1769|   977k|}
ovs_scan:
 2291|   137k|{
 2292|   137k|    va_list args;
 2293|   137k|    bool res;
 2294|       |
 2295|   137k|    va_start(args, format);
 2296|   137k|    res = ovs_scan__(s, NULL, format, &args);
 2297|       |    va_end(args);
 2298|   137k|    return res;
 2299|   137k|}
ovs_scan_len:
 2307|   134k|{
 2308|   134k|    va_list args;
 2309|   134k|    bool success;
 2310|   134k|    int n1;
 2311|       |
 2312|   134k|    va_start(args, format);
 2313|   134k|    success = ovs_scan__(s + *n, &n1, format, &args);
 2314|   134k|    va_end(args);
 2315|   134k|    if (success) {
  ------------------
  |  Branch (2315:9): [True: 69.7k, False: 65.2k]
  ------------------
 2316|  69.7k|        *n = *n + n1;
 2317|  69.7k|    }
 2318|   134k|    return success;
 2319|   134k|}
util.c:ovs_scan__:
 2111|   272k|{
 2112|   272k|    const char *const start = s;
 2113|   272k|    bool ok = false;
 2114|   272k|    const char *p;
 2115|       |
 2116|   272k|    p = format;
 2117|   768k|    while (*p != '\0') {
  ------------------
  |  Branch (2117:12): [True: 628k, False: 140k]
  ------------------
 2118|   628k|        struct scan_spec spec;
 2119|   628k|        unsigned char c = *p++;
 2120|   628k|        bool discard;
 2121|       |
 2122|   628k|        if (isspace(c)) {
  ------------------
  |  Branch (2122:13): [True: 5.99k, False: 622k]
  ------------------
 2123|  5.99k|            s = skip_spaces(s);
 2124|  5.99k|            continue;
 2125|   622k|        } else if (c != '%') {
  ------------------
  |  Branch (2125:20): [True: 318k, False: 303k]
  ------------------
 2126|   318k|            if (*s != c) {
  ------------------
  |  Branch (2126:17): [True: 91.9k, False: 226k]
  ------------------
 2127|  91.9k|                goto exit;
 2128|  91.9k|            }
 2129|   226k|            s++;
 2130|   226k|            continue;
 2131|   318k|        } else if (*p == '%') {
  ------------------
  |  Branch (2131:20): [True: 0, False: 303k]
  ------------------
 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|   303k|        discard = *p == '*';
 2141|   303k|        p += discard;
 2142|       |
 2143|       |        /* Parse field width. */
 2144|   303k|        spec.width = 0;
 2145|   435k|        while (*p >= '0' && *p <= '9') {
  ------------------
  |  Branch (2145:16): [True: 435k, False: 0]
  |  Branch (2145:29): [True: 131k, False: 303k]
  ------------------
 2146|   131k|            spec.width = spec.width * 10 + (*p++ - '0');
 2147|   131k|        }
 2148|   303k|        if (spec.width == 0) {
  ------------------
  |  Branch (2148:13): [True: 237k, False: 65.8k]
  ------------------
 2149|   237k|            spec.width = UINT_MAX;
 2150|   237k|        }
 2151|       |
 2152|       |        /* Parse type modifier. */
 2153|   303k|        switch (*p) {
 2154|  91.4k|        case 'h':
  ------------------
  |  Branch (2154:9): [True: 91.4k, False: 212k]
  ------------------
 2155|  91.4k|            if (p[1] == 'h') {
  ------------------
  |  Branch (2155:17): [True: 89.4k, False: 1.99k]
  ------------------
 2156|  89.4k|                spec.type = SCAN_CHAR;
 2157|  89.4k|                p += 2;
 2158|  89.4k|            } else {
 2159|  1.99k|                spec.type = SCAN_SHORT;
 2160|  1.99k|                p++;
 2161|  1.99k|            }
 2162|  91.4k|            break;
 2163|       |
 2164|      0|        case 'j':
  ------------------
  |  Branch (2164:9): [True: 0, False: 303k]
  ------------------
 2165|      0|            spec.type = SCAN_INTMAX_T;
 2166|      0|            p++;
 2167|      0|            break;
 2168|       |
 2169|  4.40k|        case 'l':
  ------------------
  |  Branch (2169:9): [True: 4.40k, False: 299k]
  ------------------
 2170|  4.40k|            if (p[1] == 'l') {
  ------------------
  |  Branch (2170:17): [True: 4.40k, False: 0]
  ------------------
 2171|  4.40k|                spec.type = SCAN_LLONG;
 2172|  4.40k|                p += 2;
 2173|  4.40k|            } else {
 2174|      0|                spec.type = SCAN_LONG;
 2175|      0|                p++;
 2176|      0|            }
 2177|  4.40k|            break;
 2178|       |
 2179|      0|        case 'L':
  ------------------
  |  Branch (2179:9): [True: 0, False: 303k]
  ------------------
 2180|      0|        case 'q':
  ------------------
  |  Branch (2180:9): [True: 0, False: 303k]
  ------------------
 2181|      0|            spec.type = SCAN_LLONG;
 2182|      0|            p++;
 2183|      0|            break;
 2184|       |
 2185|      0|        case 't':
  ------------------
  |  Branch (2185:9): [True: 0, False: 303k]
  ------------------
 2186|      0|            spec.type = SCAN_PTRDIFF_T;
 2187|      0|            p++;
 2188|      0|            break;
 2189|       |
 2190|      0|        case 'z':
  ------------------
  |  Branch (2190:9): [True: 0, False: 303k]
  ------------------
 2191|      0|            spec.type = SCAN_SIZE_T;
 2192|      0|            p++;
 2193|      0|            break;
 2194|       |
 2195|   207k|        default:
  ------------------
  |  Branch (2195:9): [True: 207k, False: 95.8k]
  ------------------
 2196|   207k|            spec.type = SCAN_INT;
 2197|   207k|            break;
 2198|   303k|        }
 2199|       |
 2200|   303k|        if (discard) {
  ------------------
  |  Branch (2200:13): [True: 0, False: 303k]
  ------------------
 2201|      0|            spec.type = SCAN_DISCARD;
 2202|      0|        }
 2203|       |
 2204|   303k|        c = *p++;
 2205|   303k|        if (c != 'c' && c != 'n' && c != '[') {
  ------------------
  |  Branch (2205:13): [True: 303k, False: 0]
  |  Branch (2205:25): [True: 298k, False: 5.49k]
  |  Branch (2205:37): [True: 232k, False: 65.8k]
  ------------------
 2206|   232k|            s = skip_spaces(s);
 2207|   232k|        }
 2208|   303k|        switch (c) {
  ------------------
  |  Branch (2208:17): [True: 303k, False: 0]
  ------------------
 2209|   131k|        case 'd':
  ------------------
  |  Branch (2209:9): [True: 131k, False: 171k]
  ------------------
 2210|   131k|            s = scan_int(s, &spec, 10, args);
 2211|   131k|            break;
 2212|       |
 2213|  9.03k|        case 'i':
  ------------------
  |  Branch (2213:9): [True: 9.03k, False: 294k]
  ------------------
 2214|  9.03k|            s = scan_int(s, &spec, 0, args);
 2215|  9.03k|            break;
 2216|       |
 2217|      0|        case 'o':
  ------------------
  |  Branch (2217:9): [True: 0, False: 303k]
  ------------------
 2218|      0|            s = scan_int(s, &spec, 8, args);
 2219|      0|            break;
 2220|       |
 2221|  77.4k|        case 'u':
  ------------------
  |  Branch (2221:9): [True: 77.4k, False: 226k]
  ------------------
 2222|  77.4k|            s = scan_int(s, &spec, 10, args);
 2223|  77.4k|            break;
 2224|       |
 2225|  13.9k|        case 'x':
  ------------------
  |  Branch (2225:9): [True: 13.9k, False: 289k]
  ------------------
 2226|  13.9k|        case 'X':
  ------------------
  |  Branch (2226:9): [True: 0, False: 303k]
  ------------------
 2227|  13.9k|            s = scan_int(s, &spec, 16, args);
 2228|  13.9k|            break;
 2229|       |
 2230|      0|        case 'e':
  ------------------
  |  Branch (2230:9): [True: 0, False: 303k]
  ------------------
 2231|      0|        case 'f':
  ------------------
  |  Branch (2231:9): [True: 0, False: 303k]
  ------------------
 2232|      0|        case 'g':
  ------------------
  |  Branch (2232:9): [True: 0, False: 303k]
  ------------------
 2233|      0|        case 'E':
  ------------------
  |  Branch (2233:9): [True: 0, False: 303k]
  ------------------
 2234|      0|        case 'G':
  ------------------
  |  Branch (2234:9): [True: 0, False: 303k]
  ------------------
 2235|      0|            s = scan_float(s, &spec, args);
 2236|      0|            break;
 2237|       |
 2238|      0|        case 's':
  ------------------
  |  Branch (2238:9): [True: 0, False: 303k]
  ------------------
 2239|      0|            s = scan_string(s, &spec, args);
 2240|      0|            break;
 2241|       |
 2242|  65.8k|        case '[':
  ------------------
  |  Branch (2242:9): [True: 65.8k, False: 237k]
  ------------------
 2243|  65.8k|            s = scan_set(s, &spec, &p, args);
 2244|  65.8k|            break;
 2245|       |
 2246|      0|        case 'c':
  ------------------
  |  Branch (2246:9): [True: 0, False: 303k]
  ------------------
 2247|      0|            s = scan_chars(s, &spec, args);
 2248|      0|            break;
 2249|       |
 2250|  5.49k|        case 'n':
  ------------------
  |  Branch (2250:9): [True: 5.49k, False: 298k]
  ------------------
 2251|  5.49k|            if (spec.type != SCAN_DISCARD) {
  ------------------
  |  Branch (2251:17): [True: 5.49k, False: 0]
  ------------------
 2252|  5.49k|                *va_arg(*args, int *) = s - start;
 2253|  5.49k|            }
 2254|  5.49k|            break;
 2255|   303k|        }
 2256|       |
 2257|   303k|        if (!s) {
  ------------------
  |  Branch (2257:13): [True: 40.2k, False: 263k]
  ------------------
 2258|  40.2k|            goto exit;
 2259|  40.2k|        }
 2260|   303k|    }
 2261|   140k|    if (n) {
  ------------------
  |  Branch (2261:9): [True: 69.7k, False: 70.7k]
  ------------------
 2262|  69.7k|        *n = s - start;
 2263|  69.7k|    }
 2264|       |
 2265|   140k|    ok = true;
 2266|   272k|exit:
 2267|   272k|    return ok;
 2268|   140k|}
util.c:skip_spaces:
 1868|   238k|{
 1869|   238k|    while (isspace((unsigned char) *s)) {
  ------------------
  |  Branch (1869:12): [True: 1.63k, False: 238k]
  ------------------
 1870|  1.63k|        s++;
 1871|  1.63k|    }
 1872|   238k|    return s;
 1873|   238k|}
util.c:scan_int:
 1877|   232k|{
 1878|   232k|    const char *start = s;
 1879|   232k|    uintmax_t value;
 1880|   232k|    bool negative;
 1881|   232k|    int n_digits;
 1882|       |
 1883|   232k|    negative = *s == '-';
 1884|   232k|    s += *s == '-' || *s == '+';
  ------------------
  |  Branch (1884:10): [True: 2.24k, False: 230k]
  |  Branch (1884:23): [True: 699, False: 229k]
  ------------------
 1885|       |
 1886|   232k|    if ((!base || base == 16) && *s == '0' && (s[1] == 'x' || s[1] == 'X')) {
  ------------------
  |  Branch (1886:10): [True: 9.03k, False: 223k]
  |  Branch (1886:19): [True: 13.9k, False: 209k]
  |  Branch (1886:34): [True: 8.24k, False: 14.7k]
  |  Branch (1886:48): [True: 228, False: 8.01k]
  |  Branch (1886:63): [True: 721, False: 7.29k]
  ------------------
 1887|    949|        base = 16;
 1888|    949|        s += 2;
 1889|   231k|    } else if (!base) {
  ------------------
  |  Branch (1889:16): [True: 8.55k, False: 222k]
  ------------------
 1890|  8.55k|        base = *s == '0' ? 8 : 10;
  ------------------
  |  Branch (1890:16): [True: 4.60k, False: 3.94k]
  ------------------
 1891|  8.55k|    }
 1892|       |
 1893|   232k|    if (s - start >= spec->width) {
  ------------------
  |  Branch (1893:9): [True: 0, False: 232k]
  ------------------
 1894|      0|        return NULL;
 1895|      0|    }
 1896|       |
 1897|   232k|    value = 0;
 1898|   232k|    n_digits = 0;
 1899|   992k|    while (s - start < spec->width) {
  ------------------
  |  Branch (1899:12): [True: 992k, False: 0]
  ------------------
 1900|   992k|        int digit = hexit_value(*s);
 1901|       |
 1902|   992k|        if (digit < 0 || digit >= base) {
  ------------------
  |  Branch (1902:13): [True: 230k, False: 761k]
  |  Branch (1902:26): [True: 1.38k, False: 760k]
  ------------------
 1903|   232k|            break;
 1904|   232k|        }
 1905|   760k|        value = value * base + digit;
 1906|   760k|        n_digits++;
 1907|   760k|        s++;
 1908|   760k|    }
 1909|   232k|    if (!n_digits) {
  ------------------
  |  Branch (1909:9): [True: 37.5k, False: 194k]
  ------------------
 1910|  37.5k|        return NULL;
 1911|  37.5k|    }
 1912|       |
 1913|   194k|    if (negative) {
  ------------------
  |  Branch (1913:9): [True: 1.79k, False: 193k]
  ------------------
 1914|  1.79k|        value = -value;
 1915|  1.79k|    }
 1916|       |
 1917|   194k|    switch (spec->type) {
  ------------------
  |  Branch (1917:13): [True: 194k, False: 0]
  ------------------
 1918|      0|    case SCAN_DISCARD:
  ------------------
  |  Branch (1918:5): [True: 0, False: 194k]
  ------------------
 1919|      0|        break;
 1920|  54.5k|    case SCAN_CHAR:
  ------------------
  |  Branch (1920:5): [True: 54.5k, False: 140k]
  ------------------
 1921|  54.5k|        *va_arg(*args, char *) = value;
 1922|  54.5k|        break;
 1923|  1.99k|    case SCAN_SHORT:
  ------------------
  |  Branch (1923:5): [True: 1.99k, False: 192k]
  ------------------
 1924|  1.99k|        *va_arg(*args, short int *) = value;
 1925|  1.99k|        break;
 1926|   135k|    case SCAN_INT:
  ------------------
  |  Branch (1926:5): [True: 135k, False: 59.6k]
  ------------------
 1927|   135k|        *va_arg(*args, int *) = value;
 1928|   135k|        break;
 1929|      0|    case SCAN_LONG:
  ------------------
  |  Branch (1929:5): [True: 0, False: 194k]
  ------------------
 1930|      0|        *va_arg(*args, long int *) = value;
 1931|      0|        break;
 1932|  3.11k|    case SCAN_LLONG:
  ------------------
  |  Branch (1932:5): [True: 3.11k, False: 191k]
  ------------------
 1933|  3.11k|        *va_arg(*args, long long int *) = value;
 1934|  3.11k|        break;
 1935|      0|    case SCAN_INTMAX_T:
  ------------------
  |  Branch (1935:5): [True: 0, False: 194k]
  ------------------
 1936|      0|        *va_arg(*args, intmax_t *) = value;
 1937|      0|        break;
 1938|      0|    case SCAN_PTRDIFF_T:
  ------------------
  |  Branch (1938:5): [True: 0, False: 194k]
  ------------------
 1939|      0|        *va_arg(*args, ptrdiff_t *) = value;
 1940|      0|        break;
 1941|      0|    case SCAN_SIZE_T:
  ------------------
  |  Branch (1941:5): [True: 0, False: 194k]
  ------------------
 1942|      0|        *va_arg(*args, size_t *) = value;
 1943|      0|        break;
 1944|   194k|    }
 1945|   194k|    return s;
 1946|   194k|}
util.c:scan_output_string:
 2016|  63.1k|{
 2017|  63.1k|    if (spec->type != SCAN_DISCARD) {
  ------------------
  |  Branch (2017:9): [True: 63.1k, False: 0]
  ------------------
 2018|       |        char *out = va_arg(*args, char *);
 2019|  63.1k|        memcpy(out, s, n);
 2020|  63.1k|        out[n] = '\0';
 2021|  63.1k|    }
 2022|  63.1k|}
util.c:scan_set:
 2072|  65.8k|{
 2073|  65.8k|    unsigned long set[BITMAP_N_LONGS(UCHAR_MAX + 1)];
 2074|  65.8k|    bool complemented;
 2075|  65.8k|    unsigned int n;
 2076|       |
 2077|       |    /* Parse the scan set. */
 2078|  65.8k|    memset(set, 0, sizeof set);
 2079|  65.8k|    *pp = parse_scanset(*pp, set, &complemented);
 2080|       |
 2081|       |    /* Parse the data. */
 2082|  65.8k|    n = 0;
 2083|   579k|    while (s[n]
  ------------------
  |  Branch (2083:12): [True: 521k, False: 58.0k]
  ------------------
 2084|   521k|           && bitmap_is_set(set, (unsigned char) s[n]) == !complemented
  ------------------
  |  Branch (2084:15): [True: 513k, False: 7.82k]
  ------------------
 2085|   513k|           && n < spec->width) {
  ------------------
  |  Branch (2085:15): [True: 513k, False: 0]
  ------------------
 2086|   513k|        n++;
 2087|   513k|    }
 2088|  65.8k|    if (!n) {
  ------------------
  |  Branch (2088:9): [True: 2.73k, False: 63.1k]
  ------------------
 2089|  2.73k|        return NULL;
 2090|  2.73k|    }
 2091|  63.1k|    scan_output_string(spec, s, n, args);
 2092|  63.1k|    return s + n;
 2093|  65.8k|}
util.c:parse_scanset:
 2044|  65.8k|{
 2045|  65.8k|    const uint8_t *p = (const uint8_t *) p_;
 2046|       |
 2047|  65.8k|    *complemented = *p == '^';
 2048|  65.8k|    p += *complemented;
 2049|       |
 2050|  65.8k|    if (*p == ']') {
  ------------------
  |  Branch (2050:9): [True: 0, False: 65.8k]
  ------------------
 2051|      0|        bitmap_set1(set, ']');
 2052|      0|        p++;
 2053|      0|    }
 2054|       |
 2055|  1.64M|    while (*p && *p != ']') {
  ------------------
  |  Branch (2055:12): [True: 1.64M, False: 0]
  |  Branch (2055:18): [True: 1.58M, False: 65.8k]
  ------------------
 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|  65.8k|    if (*p == ']') {
  ------------------
  |  Branch (2063:9): [True: 65.8k, False: 0]
  ------------------
 2064|  65.8k|        p++;
 2065|  65.8k|    }
 2066|  65.8k|    return (const char *) p;
 2067|  65.8k|}

match.c:ovs_u128_and:
  515|  16.2k|{
  516|  16.2k|    ovs_u128 dst;
  517|       |
  518|  16.2k|    dst.u64.hi = a.u64.hi & b.u64.hi;
  519|  16.2k|    dst.u64.lo = a.u64.lo & b.u64.lo;
  520|       |
  521|  16.2k|    return dst;
  522|  16.2k|}
ofpbuf.c:nullable_memset:
  198|   652k|{
  199|   652k|    if (n) {
  ------------------
  |  Branch (199:9): [True: 633k, False: 19.2k]
  ------------------
  200|   633k|        memset(dst, c, n);
  201|   633k|    }
  202|   652k|}
packets.c:ctz32:
  284|  10.2k|{
  285|  10.2k|    return n ? raw_ctz(n) : 32;
  ------------------
  |  Branch (285:12): [True: 58, False: 10.2k]
  ------------------
  286|  10.2k|}
packets.c:raw_ctz:
  261|     58|{
  262|       |    /* With GCC 4.7 on 32-bit x86, if a 32-bit integer is passed as 'n', using
  263|       |     * a plain __builtin_ctzll() here always generates an out-of-line function
  264|       |     * call.  The test below helps it to emit a single 'bsf' instruction. */
  265|     58|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 58, False: 0]
  |  Branch (265:54): [True: 58, False: 0]
  ------------------
  266|     58|            ? __builtin_ctz(n)
  267|     58|            : __builtin_ctzll(n));
  268|     58|}
packets.c:be32_prefix_mask:
  414|    861|{
  415|       |    return htonl((uint64_t)UINT32_MAX << (32 - plen));
  416|    861|}
tun-metadata.c:raw_ctz:
  261|    441|{
  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|    441|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 0, False: 441]
  |  Branch (265:54): [True: 0, False: 0]
  ------------------
  266|    441|            ? __builtin_ctz(n)
  267|    441|            : __builtin_ctzll(n));
  268|    441|}
tun-metadata.c:zero_rightmost_1bit:
  390|    441|{
  391|    441|    return x & (x - 1);
  392|    441|}
util.c:nullable_memcpy:
  188|    359|{
  189|    359|    if (n) {
  ------------------
  |  Branch (189:9): [True: 359, False: 0]
  ------------------
  190|    359|        memcpy(dst, src, n);
  191|    359|    }
  192|    359|}
flow.c:rightmost_1bit:
  382|    215|{
  383|    215|    return x & -x;
  384|    215|}
flow.c:count_1bits:
  332|  20.0k|{
  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|  20.0k|    const uint64_t h55 = UINT64_C(0x5555555555555555);
  341|  20.0k|    const uint64_t h33 = UINT64_C(0x3333333333333333);
  342|  20.0k|    const uint64_t h0F = UINT64_C(0x0F0F0F0F0F0F0F0F);
  343|       |    const uint64_t h01 = UINT64_C(0x0101010101010101);
  344|  20.0k|    x -= (x >> 1) & h55;               /* Count of each 2 bits in-place. */
  345|  20.0k|    x = (x & h33) + ((x >> 2) & h33);  /* Count of each 4 bits in-place. */
  346|  20.0k|    x = (x + (x >> 4)) & h0F;          /* Count of each 8 bits in-place. */
  347|  20.0k|    return (x * h01) >> 56;            /* Sum of all bytes. */
  348|  20.0k|#endif
  349|  20.0k|}
flow.c:raw_ctz:
  261|  62.6k|{
  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|  62.6k|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 0, False: 62.6k]
  |  Branch (265:54): [True: 0, False: 0]
  ------------------
  266|  62.6k|            ? __builtin_ctz(n)
  267|  62.6k|            : __builtin_ctzll(n));
  268|  62.6k|}
flow.c:zero_rightmost_1bit:
  390|  62.6k|{
  391|  62.6k|    return x & (x - 1);
  392|  62.6k|}

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|    429|{
 1001|    429|    return module->min_level >= level;
 1002|    429|}
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|    429|{
 1331|    429|    if (!module->honor_rate_limits) {
  ------------------
  |  Branch (1331:9): [True: 0, False: 429]
  ------------------
 1332|      0|        return false;
 1333|      0|    }
 1334|       |
 1335|    429|    if (!vlog_is_enabled(module, level)) {
  ------------------
  |  Branch (1335:9): [True: 429, False: 0]
  ------------------
 1336|    429|        return true;
 1337|    429|    }
 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|  23.4k|{
   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|  23.4k|    const char *stream = (const char *) data;
   93|  23.4k|    if (size < 3 || stream[size - 1] != '\0' || strchr(&stream[1], '\n') ||
  ------------------
  |  Branch (93:9): [True: 2, False: 23.4k]
  |  Branch (93:21): [True: 10, False: 23.4k]
  |  Branch (93:49): [True: 1, False: 23.4k]
  ------------------
   94|  23.4k|        strlen(&stream[1]) != size - 2) {
  ------------------
  |  Branch (94:9): [True: 20, False: 23.3k]
  ------------------
   95|     33|        return 0;
   96|     33|    }
   97|       |
   98|       |    /* Disable logging to avoid write to disk. */
   99|  23.3k|    static bool isInit = false;
  100|  23.3k|    if (!isInit) {
  ------------------
  |  Branch (100:9): [True: 1, False: 23.3k]
  ------------------
  101|      1|        vlog_set_verbosity("off");
  102|      1|        isInit = true;
  103|      1|    }
  104|       |
  105|       |    /* Decide test parameters using first byte of fuzzed input. */
  106|  23.3k|    int command = (stream[0] % OFPFC_DELETE_STRICT) + 1;
  107|       |
  108|       |    /* Fuzz extended match parsing. */
  109|  23.3k|    const char *input = &stream[1];
  110|  23.3k|    ofctl_parse_flow(input, command);
  111|       |
  112|  23.3k|    return 0;
  113|  23.4k|}
ofctl_parse_target.c:ofctl_parse_flow:
   57|  23.3k|{
   58|  23.3k|    enum ofputil_protocol usable_protocols;
   59|  23.3k|    struct ofputil_flow_mod fm;
   60|  23.3k|    char *error;
   61|       |
   62|  23.3k|    error = parse_ofp_flow_mod_str(&fm, input, NULL, NULL,
   63|  23.3k|                                   command, &usable_protocols);
   64|  23.3k|    if (error) {
  ------------------
  |  Branch (64:9): [True: 13.3k, False: 10.0k]
  ------------------
   65|  13.3k|        printf("Error encountered: %s\n", error);
   66|  13.3k|        free(error);
   67|  13.3k|    } else {
   68|  10.0k|        ofctl_parse_flows__(&fm, 1, usable_protocols);
   69|  10.0k|    }
   70|  23.3k|}
ofctl_parse_target.c:ofctl_parse_flows__:
   14|  10.0k|{
   15|  10.0k|    enum ofputil_protocol protocol = 0;
   16|  10.0k|    char *usable_s;
   17|  10.0k|    size_t i;
   18|       |
   19|  10.0k|    usable_s = ofputil_protocols_to_string(usable_protocols);
   20|  10.0k|    printf("usable protocols: %s\n", usable_s);
   21|  10.0k|    free(usable_s);
   22|       |
   23|  10.0k|    if (!(usable_protocols & OFPUTIL_P_ANY)) {
  ------------------
  |  |  100|  10.0k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  |  Branch (23:9): [True: 203, False: 9.82k]
  ------------------
   24|    203|        printf("no usable protocol\n");
   25|    203|        goto free;
   26|    203|    }
   27|  21.7k|    for (i = 0; i < sizeof(enum ofputil_protocol) * CHAR_BIT; i++) {
  ------------------
  |  Branch (27:17): [True: 21.7k, False: 0]
  ------------------
   28|  21.7k|        protocol = 1u << i;
   29|  21.7k|        if (protocol & usable_protocols & OFPUTIL_P_ANY) {
  ------------------
  |  |  100|  21.7k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  |  Branch (29:13): [True: 9.82k, False: 11.9k]
  ------------------
   30|  9.82k|            break;
   31|  9.82k|        }
   32|  21.7k|    }
   33|  9.82k|    ovs_assert(is_pow2(protocol));
  ------------------
  |  |   62|  9.82k|#define ovs_assert ovs_ignore
  ------------------
   34|       |
   35|  9.82k|    printf("chosen protocol: %s\n", ofputil_protocol_to_string(protocol));
   36|       |
   37|  19.6k|    for (i = 0; i < n_fms; i++) {
  ------------------
  |  Branch (37:17): [True: 9.82k, False: 9.82k]
  ------------------
   38|  9.82k|        struct ofputil_flow_mod *fm = &fms[i];
   39|  9.82k|        struct ofpbuf *msg;
   40|       |
   41|  9.82k|        msg = ofputil_encode_flow_mod(fm, protocol);
   42|  9.82k|        ofpbuf_delete(msg);
   43|  9.82k|    }
   44|       |
   45|  10.0k|free:
   46|  20.0k|    for (i = 0; i < n_fms; i++) {
  ------------------
  |  Branch (46:17): [True: 10.0k, False: 10.0k]
  ------------------
   47|  10.0k|        struct ofputil_flow_mod *fm = &fms[i];
   48|  10.0k|        free(CONST_CAST(struct ofpact *, fm->ofpacts));
  ------------------
  |  |   85|  10.0k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  10.0k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  10.0k|     (TYPE) (POINTER))
  ------------------
   49|  10.0k|        minimatch_destroy(&fm->match);
   50|  10.0k|    }
   51|  10.0k|}

