LLVMFuzzerInitialize:
   38|      2|LLVMFuzzerInitialize(int *argc ISC_ATTR_UNUSED, char ***argv ISC_ATTR_UNUSED) {
   39|      2|	isc_mem_create("fuzz", &mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
   40|      2|	output = isc_mem_get(mctx, output_len);
  ------------------
  |  |  128|      2|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
   41|       |
   42|      2|	return 0;
   43|      2|}
LLVMFuzzerTestOneInput:
  146|  13.3k|LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  147|  13.3k|	isc_buffer_t buffer;
  148|  13.3k|	isc_result_t result;
  149|  13.3k|	dns_message_t *message = NULL;
  150|       |
  151|  13.3k|	if (size > 65535) {
  ------------------
  |  Branch (151:6): [True: 1, False: 13.3k]
  ------------------
  152|      1|		return 0;
  153|      1|	}
  154|       |
  155|  13.3k|	isc_buffer_constinit(&buffer, data, size);
  ------------------
  |  |  557|  13.3k|	do {                                                \
  |  |  558|  13.3k|		union {                                     \
  |  |  559|  13.3k|			void	   *_var;                   \
  |  |  560|  13.3k|			const void *_const;                 \
  |  |  561|  13.3k|		} _deconst;                                 \
  |  |  562|  13.3k|		_deconst._const = (_d);                     \
  |  |  563|  13.3k|		isc_buffer_init((_b), _deconst._var, (_l)); \
  |  |  564|  13.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (564:11): [Folded, False: 13.3k]
  |  |  ------------------
  ------------------
  156|  13.3k|	isc_buffer_add(&buffer, size);
  157|  13.3k|	isc_buffer_setactive(&buffer, size);
  158|       |
  159|  13.3k|	CHECK(parse_message(&buffer, &message));
  ------------------
  |  |  255|  13.3k|	{                                      \
  |  |  256|  13.3k|		result = (r);                  \
  |  |  257|  13.3k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 4.48k, False: 8.82k]
  |  |  ------------------
  |  |  258|  4.48k|			goto cleanup;          \
  |  |  259|  4.48k|		}                              \
  |  |  260|  13.3k|	}
  ------------------
  160|       |
  161|  8.82k|	CHECK(print_message(message));
  ------------------
  |  |  255|  8.82k|	{                                      \
  |  |  256|  8.82k|		result = (r);                  \
  |  |  257|  8.82k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 8.82k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  8.82k|	}
  ------------------
  162|       |
  163|  8.82k|	CHECK(render_message(&message));
  ------------------
  |  |  255|  8.82k|	{                                      \
  |  |  256|  8.82k|		result = (r);                  \
  |  |  257|  8.82k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 166, False: 8.66k]
  |  |  ------------------
  |  |  258|    166|			goto cleanup;          \
  |  |  259|    166|		}                              \
  |  |  260|  8.82k|	}
  ------------------
  164|       |
  165|  8.66k|	CHECK(print_message(message));
  ------------------
  |  |  255|  8.66k|	{                                      \
  |  |  256|  8.66k|		result = (r);                  \
  |  |  257|  8.66k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 8.66k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  8.66k|	}
  ------------------
  166|       |
  167|  13.3k|cleanup:
  168|  13.3k|	if (message != NULL) {
  ------------------
  |  Branch (168:6): [True: 8.81k, False: 4.49k]
  ------------------
  169|  8.81k|		dns_message_detach(&message);
  170|  8.81k|	}
  171|       |
  172|  13.3k|	return 0;
  173|  8.66k|}
dns_message_parse.c:parse_message:
   46|  21.9k|parse_message(isc_buffer_t *input, dns_message_t **messagep) {
   47|  21.9k|	isc_result_t result;
   48|  21.9k|	dns_message_t *message = NULL;
   49|       |
   50|  21.9k|	dns_message_create(mctx, NULL, NULL, DNS_MESSAGE_INTENTPARSE, &message);
   51|       |
   52|  21.9k|	result = dns_message_parse(message, input, DNS_MESSAGEPARSE_BESTEFFORT);
  ------------------
  |  |  202|  21.9k|	0x0002 /*%< return a message if a \
  ------------------
   53|  21.9k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (53:6): [True: 7.79k, False: 14.1k]
  ------------------
   54|  7.79k|		result = ISC_R_SUCCESS;
   55|  7.79k|	}
   56|       |
   57|  21.9k|	if (result == ISC_R_SUCCESS && messagep != NULL) {
  ------------------
  |  Branch (57:6): [True: 17.4k, False: 4.49k]
  |  Branch (57:33): [True: 17.4k, False: 0]
  ------------------
   58|  17.4k|		*messagep = message;
   59|  17.4k|	} else {
   60|  4.49k|		dns_message_detach(&message);
   61|  4.49k|	}
   62|       |
   63|  21.9k|	return result;
   64|  21.9k|}
dns_message_parse.c:print_message:
   67|  17.4k|print_message(dns_message_t *message) {
   68|  17.4k|	isc_result_t result;
   69|  17.4k|	isc_buffer_t buffer;
   70|       |
   71|  17.5k|	do {
   72|  17.5k|		isc_buffer_init(&buffer, output, output_len);
   73|  17.5k|		result = dns_message_totext(message, &dns_master_style_debug, 0,
   74|  17.5k|					    &buffer);
   75|  17.5k|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (75:7): [True: 14, False: 17.4k]
  ------------------
   76|     14|			isc_mem_put(mctx, output, output_len);
  ------------------
  |  |  148|     14|	do {                                                      \
  |  |  149|     14|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|     14|		(p) = NULL;                                       \
  |  |  151|     14|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 14]
  |  |  ------------------
  ------------------
   77|     14|			output_len *= 2;
   78|     14|			output = isc_mem_get(mctx, output_len);
  ------------------
  |  |  128|     14|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
   79|     14|			continue;
   80|     14|		}
   81|  17.5k|	} while (result == ISC_R_NOSPACE);
  ------------------
  |  Branch (81:11): [True: 14, False: 17.4k]
  ------------------
   82|       |
   83|  17.4k|	if (debug) {
  ------------------
  |  Branch (83:6): [True: 0, False: 17.4k]
  ------------------
   84|      0|		fprintf(stderr, "%.*s\n", (int)isc_buffer_usedlength(&buffer),
  ------------------
  |  |  157|      0|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
   85|      0|			output);
   86|      0|	}
   87|       |
   88|  17.4k|	return result;
   89|  17.4k|}
dns_message_parse.c:render_message:
  100|  8.82k|render_message(dns_message_t **messagep) {
  101|  8.82k|	isc_result_t result;
  102|  8.82k|	dns_message_t *message = *messagep;
  103|  8.82k|	isc_buffer_t buffer;
  104|  8.82k|	dns_compress_t cctx;
  105|       |
  106|  8.82k|	isc_buffer_init(&buffer, render_buf, sizeof(render_buf));
  107|       |
  108|  8.82k|	message->from_to_wire = DNS_MESSAGE_INTENTRENDER;
  109|  44.1k|	for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (109:21): [True: 35.3k, False: 8.82k]
  ------------------
  110|  35.3k|		message->counts[i] = 0;
  111|  35.3k|	}
  112|       |
  113|  8.82k|	dns_compress_init(&cctx, mctx, 0);
  114|       |
  115|  8.82k|	CHECKRESULT(result, dns_message_renderbegin(message, &cctx, &buffer));
  ------------------
  |  |   92|  8.82k|	{                                 \
  |  |   93|  8.82k|		r = (f);                  \
  |  |   94|  8.82k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 0, False: 8.82k]
  |  |  ------------------
  |  |   95|      0|			goto cleanup;     \
  |  |   96|      0|		}                         \
  |  |   97|  8.82k|	}
  ------------------
  116|       |
  117|  8.82k|	CHECKRESULT(result, dns_message_rendersection(message,
  ------------------
  |  |   92|  8.82k|	{                                 \
  |  |   93|  8.82k|		r = (f);                  \
  |  |   94|  8.82k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 0, False: 8.82k]
  |  |  ------------------
  |  |   95|      0|			goto cleanup;     \
  |  |   96|      0|		}                         \
  |  |   97|  8.82k|	}
  ------------------
  118|  8.82k|						      DNS_SECTION_QUESTION, 0));
  119|       |
  120|  8.82k|	CHECKRESULT(result,
  ------------------
  |  |   92|  8.82k|	{                                 \
  |  |   93|  8.82k|		r = (f);                  \
  |  |   94|  8.82k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 10, False: 8.81k]
  |  |  ------------------
  |  |   95|     10|			goto cleanup;     \
  |  |   96|     10|		}                         \
  |  |   97|  8.82k|	}
  ------------------
  121|  8.82k|		    dns_message_rendersection(message, DNS_SECTION_ANSWER, 0));
  122|  8.81k|	CHECKRESULT(result, dns_message_rendersection(
  ------------------
  |  |   92|  8.81k|	{                                 \
  |  |   93|  8.81k|		r = (f);                  \
  |  |   94|  8.81k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 82, False: 8.73k]
  |  |  ------------------
  |  |   95|     82|			goto cleanup;     \
  |  |   96|     82|		}                         \
  |  |   97|  8.81k|	}
  ------------------
  123|  8.81k|				    message, DNS_SECTION_AUTHORITY, 0));
  124|       |
  125|  8.73k|	CHECKRESULT(result, dns_message_rendersection(
  ------------------
  |  |   92|  8.73k|	{                                 \
  |  |   93|  8.73k|		r = (f);                  \
  |  |   94|  8.73k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 65, False: 8.67k]
  |  |  ------------------
  |  |   95|     65|			goto cleanup;     \
  |  |   96|     65|		}                         \
  |  |   97|  8.73k|	}
  ------------------
  126|  8.73k|				    message, DNS_SECTION_ADDITIONAL, 0));
  127|       |
  128|  8.67k|	dns_message_renderend(message);
  129|       |
  130|  8.67k|	dns_compress_invalidate(&cctx);
  131|       |
  132|  8.67k|	message->from_to_wire = DNS_MESSAGE_INTENTPARSE;
  133|       |
  134|  8.67k|	dns_message_detach(messagep);
  135|       |
  136|  8.67k|	result = parse_message(&buffer, messagep);
  137|       |
  138|  8.67k|	return result;
  139|       |
  140|    157|cleanup:
  141|    157|	dns_compress_invalidate(&cctx);
  142|    157|	return result;
  143|  8.73k|}

dns__acl_initialize:
  470|      2|dns__acl_initialize(void) {}

dns_compress_init:
   34|  8.82k|		  dns_compress_flags_t flags) {
   35|  8.82k|	dns_compress_slot_t *set = NULL;
   36|  8.82k|	uint16_t mask;
   37|       |
   38|  8.82k|	REQUIRE(cctx != NULL);
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   39|  8.82k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|       |
   41|  8.82k|	if ((flags & DNS_COMPRESS_LARGE) != 0) {
  ------------------
  |  Branch (41:6): [True: 0, False: 8.82k]
  ------------------
   42|      0|		size_t count = (1 << DNS_COMPRESS_LARGEBITS);
   43|      0|		mask = count - 1;
   44|      0|		set = isc_mem_callocate(mctx, count, sizeof(*set));
  ------------------
  |  |  140|      0|	isc__mem_allocate((c), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  141|      0|			  ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
   45|  8.82k|	} else {
   46|  8.82k|		mask = ARRAY_SIZE(cctx->smallset) - 1;
  ------------------
  |  |   98|  8.82k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
   47|  8.82k|		set = cctx->smallset;
   48|  8.82k|	}
   49|       |
   50|       |	/*
   51|       |	 * The lifetime of this object is limited to the stack frame of the
   52|       |	 * caller, so we don't need to attach to the memory context.
   53|       |	 */
   54|  8.82k|	*cctx = (dns_compress_t){
   55|  8.82k|		.magic = CCTX_MAGIC,
  ------------------
  |  |   29|  8.82k|#define CCTX_MAGIC    ISC_MAGIC('C', 'C', 'T', 'X')
  |  |  ------------------
  |  |  |  |   31|  8.82k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
   56|  8.82k|		.flags = flags | DNS_COMPRESS_PERMITTED,
   57|  8.82k|		.mctx = mctx,
   58|  8.82k|		.mask = mask,
   59|  8.82k|		.set = set,
   60|  8.82k|		.coff = 0xffff,
   61|  8.82k|	};
   62|  8.82k|}
dns_compress_invalidate:
   65|  8.82k|dns_compress_invalidate(dns_compress_t *cctx) {
   66|  8.82k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.82k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  8.82k|	if (cctx->set != cctx->smallset) {
  ------------------
  |  Branch (67:6): [True: 0, False: 8.82k]
  ------------------
   68|       |		isc_mem_free(cctx->mctx, cctx->set);
  ------------------
  |  |  164|      0|	do {                                                  \
  |  |  165|      0|		isc__mem_free((c), (p), 0 _ISC_MEM_FILELINE); \
  |  |  166|      0|		(p) = NULL;                                   \
  |  |  167|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (167:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
   69|      0|	}
   70|  8.82k|	*cctx = (dns_compress_t){ 0 };
   71|  8.82k|}
dns_compress_setmultiuse:
   74|   497k|dns_compress_setmultiuse(dns_compress_t *cctx, bool multi) {
   75|   497k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   497k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   994k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 497k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 497k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   497k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   76|   497k|	if (multi) {
  ------------------
  |  Branch (76:6): [True: 201k, False: 296k]
  ------------------
   77|   201k|		cctx->flags |= DNS_COMPRESS_MULTIUSE;
   78|   296k|	} else {
   79|   296k|		cctx->flags &= ~DNS_COMPRESS_MULTIUSE;
   80|   296k|	}
   81|   497k|	cctx->coff = 0xffff;
   82|   497k|}
dns_compress_getmultiuse:
   85|   279k|dns_compress_getmultiuse(dns_compress_t *cctx) {
   86|   279k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   279k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   559k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 279k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 279k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   279k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   87|   279k|	return (cctx->flags & DNS_COMPRESS_MULTIUSE) != 0;
   88|   279k|}
dns_compress_setpermitted:
   91|   296k|dns_compress_setpermitted(dns_compress_t *cctx, bool permitted) {
   92|   296k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   296k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   592k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 296k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 296k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   296k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   93|   296k|	if (permitted) {
  ------------------
  |  Branch (93:6): [True: 276k, False: 19.6k]
  ------------------
   94|   276k|		cctx->flags |= DNS_COMPRESS_PERMITTED;
   95|   276k|	} else {
   96|  19.6k|		cctx->flags &= ~DNS_COMPRESS_PERMITTED;
   97|  19.6k|	}
   98|       |	dns_compress_setmultiuse(cctx, false);
   99|   296k|}
dns_compress_getpermitted:
  102|   301k|dns_compress_getpermitted(dns_compress_t *cctx) {
  103|   301k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   602k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|   301k|	return (cctx->flags & DNS_COMPRESS_PERMITTED) != 0;
  105|   301k|}
dns_compress_name:
  297|   301k|		  unsigned int *return_coff) {
  298|   301k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   602k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  299|   301k|	REQUIRE(ISC_BUFFER_VALID(buffer));
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   602k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  300|   301k|	REQUIRE(dns_name_isabsolute(name));
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   301k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  301|   301k|	REQUIRE(return_prefix != NULL);
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   301k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  302|   301k|	REQUIRE(return_coff != NULL);
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   301k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  303|   301k|	REQUIRE(*return_coff == 0);
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   301k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  304|       |
  305|   301k|	if ((cctx->flags & DNS_COMPRESS_DISABLED) != 0) {
  ------------------
  |  Branch (305:6): [True: 0, False: 301k]
  ------------------
  306|      0|		return;
  307|      0|	}
  308|       |
  309|   301k|	dns_offsets_t offsets;
  310|   301k|	size_t labels = dns_name_offsets(name, offsets);
  311|   301k|	INSIST(labels > 0);
  ------------------
  |  |  202|   301k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   301k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  312|       |
  313|   301k|	bool sensitive = (cctx->flags & DNS_COMPRESS_CASE) != 0;
  314|       |
  315|   301k|	uint16_t hash = HASH_INIT_DJB2;
  ------------------
  |  |   27|   301k|#define HASH_INIT_DJB2 5381
  ------------------
  316|   301k|	size_t label = labels - 1; /* skip the root label */
  317|       |
  318|       |	/*
  319|       |	 * find out how much of the name's suffix is in the hash set,
  320|       |	 * stepping backwards from the end one label at a time
  321|       |	 */
  322|  1.05M|	while (label-- > 0) {
  ------------------
  |  Branch (322:9): [True: 888k, False: 170k]
  ------------------
  323|   888k|		unsigned int prefix_len = offsets[label];
  324|   888k|		unsigned int suffix_len = name->length - prefix_len;
  325|   888k|		uint8_t *suffix_ptr = name->ndata + prefix_len;
  326|   888k|		hash = hash_label(hash, suffix_ptr, sensitive);
  327|       |
  328|  4.07M|		for (unsigned int probe = 0; true; probe++) {
  ------------------
  |  Branch (328:32): [True: 4.07M, Folded]
  ------------------
  329|  4.07M|			unsigned int slot = slot_index(cctx, hash, probe);
  330|  4.07M|			unsigned int coff = cctx->set[slot].coff;
  331|       |
  332|       |			/*
  333|       |			 * if we would have inserted this entry here (as in
  334|       |			 * insert_label() above), our suffix cannot be in the
  335|       |			 * hash set, so stop searching and switch to inserting
  336|       |			 * the rest of the name (its prefix) into the set
  337|       |			 */
  338|  4.07M|			if (coff == 0 || probe > probe_distance(cctx, slot)) {
  ------------------
  |  Branch (338:8): [True: 15.2k, False: 4.05M]
  |  Branch (338:21): [True: 115k, False: 3.94M]
  ------------------
  339|   130k|				insert(cctx, buffer, name, offsets, label, hash,
  340|   130k|				       probe);
  341|   130k|				return;
  342|   130k|			}
  343|       |
  344|       |			/*
  345|       |			 * this slot matches, so provisionally set the
  346|       |			 * return values and continue with the next label
  347|       |			 */
  348|  3.94M|			if (hash == cctx->set[slot].hash &&
  ------------------
  |  Branch (348:8): [True: 787k, False: 3.15M]
  ------------------
  349|   787k|			    match_suffix(buffer, coff, suffix_ptr, suffix_len,
  ------------------
  |  Branch (349:8): [True: 758k, False: 28.6k]
  ------------------
  350|   787k|					 *return_coff, sensitive))
  351|   758k|			{
  352|   758k|				*return_coff = coff;
  353|   758k|				*return_prefix = prefix_len;
  354|   758k|				break;
  355|   758k|			}
  356|  3.94M|		}
  357|   888k|	}
  358|   301k|}
dns_compress_rollback:
  361|  1.88k|dns_compress_rollback(dns_compress_t *cctx, unsigned int coff) {
  362|  1.88k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|  1.88k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.88k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.88k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.88k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  363|       |
  364|   122k|	for (unsigned int slot = 0; slot <= cctx->mask; slot++) {
  ------------------
  |  Branch (364:30): [True: 120k, False: 1.88k]
  ------------------
  365|   120k|		if (cctx->set[slot].coff < coff) {
  ------------------
  |  Branch (365:7): [True: 29.2k, False: 91.1k]
  ------------------
  366|  29.2k|			continue;
  367|  29.2k|		}
  368|       |		/*
  369|       |		 * The next few elements might be part of the deleted element's
  370|       |		 * probe sequence, so we slide them down to overwrite the entry
  371|       |		 * we are deleting and preserve the probe sequence. Moving an
  372|       |		 * element to the previous slot reduces its probe distance, so
  373|       |		 * we stop when we find an element whose probe distance is zero.
  374|       |		 */
  375|  91.1k|		unsigned int prev = slot;
  376|  91.1k|		unsigned int next = slot_index(cctx, prev, 1);
  377|  93.0k|		while (cctx->set[next].coff != 0 &&
  ------------------
  |  Branch (377:10): [True: 4.42k, False: 88.6k]
  ------------------
  378|  4.42k|		       probe_distance(cctx, next) != 0)
  ------------------
  |  Branch (378:10): [True: 1.87k, False: 2.54k]
  ------------------
  379|  1.87k|		{
  380|  1.87k|			cctx->set[prev] = cctx->set[next];
  381|  1.87k|			prev = next;
  382|  1.87k|			next = slot_index(cctx, prev, 1);
  383|  1.87k|		}
  384|  91.1k|		cctx->set[prev].coff = 0;
  385|  91.1k|		cctx->set[prev].hash = 0;
  386|  91.1k|		cctx->count--;
  387|  91.1k|	}
  388|  1.88k|}
compress.c:hash_label:
  116|   907k|hash_label(uint16_t init, uint8_t *ptr, bool sensitive) {
  117|   907k|	unsigned int len = ptr[0] + 1;
  118|   907k|	uint32_t hash = init;
  119|       |
  120|   907k|	if (sensitive) {
  ------------------
  |  Branch (120:6): [True: 0, False: 907k]
  ------------------
  121|      0|		while (len-- > 0) {
  ------------------
  |  Branch (121:10): [True: 0, False: 0]
  ------------------
  122|      0|			hash = hash * 33 + *ptr++;
  123|      0|		}
  124|   907k|	} else {
  125|       |		/* using the autovectorize-friendly tolower() */
  126|  14.0M|		while (len-- > 0) {
  ------------------
  |  Branch (126:10): [True: 13.1M, False: 907k]
  ------------------
  127|  13.1M|			hash = hash * 33 + isc__ascii_tolower1(*ptr++);
  128|  13.1M|		}
  129|   907k|	}
  130|       |
  131|   907k|	return isc_hash_bits32(hash, 16);
  132|   907k|}
compress.c:slot_index:
  235|  4.21M|slot_index(dns_compress_t *cctx, unsigned int hash, unsigned int probe) {
  236|  4.21M|	return (hash + probe) & cctx->mask;
  237|  4.21M|}
compress.c:probe_distance:
  230|  4.09M|probe_distance(dns_compress_t *cctx, unsigned int slot) {
  231|  4.09M|	return (slot - cctx->set[slot].hash) & cctx->mask;
  232|  4.09M|}
compress.c:insert:
  277|   130k|       unsigned int probe) {
  278|   130k|	bool sensitive = (cctx->flags & DNS_COMPRESS_CASE) != 0;
  279|       |	/*
  280|       |	 * this insertion loop continues from the search loop inside
  281|       |	 * dns_compress_name() below, iterating over the remaining labels
  282|       |	 * of the name and accumulating the hash in the same manner
  283|       |	 */
  284|   149k|	while (insert_label(cctx, buffer, offsets, label, hash, probe) &&
  ------------------
  |  Branch (284:9): [True: 29.8k, False: 119k]
  ------------------
  285|  29.8k|	       label-- > 0)
  ------------------
  |  Branch (285:9): [True: 18.8k, False: 11.0k]
  ------------------
  286|  18.8k|	{
  287|  18.8k|		unsigned int prefix_len = offsets[label];
  288|  18.8k|		uint8_t *suffix_ptr = name->ndata + prefix_len;
  289|  18.8k|		hash = hash_label(hash, suffix_ptr, sensitive);
  290|  18.8k|		probe = 0;
  291|  18.8k|	}
  292|   130k|}
compress.c:insert_label:
  242|   149k|	     unsigned int probe) {
  243|       |	/*
  244|       |	 * hash set entries must have valid compression offsets
  245|       |	 * and the hash set must not get too full (75% load)
  246|       |	 */
  247|   149k|	unsigned int prefix_len = offsets[label];
  248|   149k|	unsigned int coff = isc_buffer_usedlength(buffer) + prefix_len;
  ------------------
  |  |  157|   149k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
  249|   149k|	if (coff >= 0x4000 || cctx->count > cctx->mask * 3 / 4) {
  ------------------
  |  Branch (249:6): [True: 111k, False: 37.6k]
  |  Branch (249:24): [True: 7.72k, False: 29.8k]
  ------------------
  250|   119k|		return false;
  251|   119k|	}
  252|  50.9k|	for (;;) {
  253|  50.9k|		unsigned int slot = slot_index(cctx, hash, probe);
  254|       |		/* we can stop when we find an empty slot */
  255|  50.9k|		if (cctx->set[slot].coff == 0) {
  ------------------
  |  Branch (255:7): [True: 29.8k, False: 21.0k]
  ------------------
  256|  29.8k|			cctx->set[slot].hash = hash;
  257|  29.8k|			cctx->set[slot].coff = coff;
  258|  29.8k|			cctx->count++;
  259|  29.8k|			return true;
  260|  29.8k|		}
  261|       |		/* he steals from the rich and gives to the poor */
  262|  21.0k|		if (probe > probe_distance(cctx, slot)) {
  ------------------
  |  Branch (262:7): [True: 6.47k, False: 14.6k]
  ------------------
  263|  6.47k|			probe = probe_distance(cctx, slot);
  264|  6.47k|			ISC_SWAP(cctx->set[slot].hash, hash);
  ------------------
  |  |  305|  6.47k|	{                                 \
  |  |  306|  6.47k|		typeof(a) __tmp_swap = a; \
  |  |  307|  6.47k|		a = b;                    \
  |  |  308|  6.47k|		b = __tmp_swap;           \
  |  |  309|  6.47k|	}
  ------------------
  265|  6.47k|			ISC_SWAP(cctx->set[slot].coff, coff);
  ------------------
  |  |  305|  6.47k|	{                                 \
  |  |  306|  6.47k|		typeof(a) __tmp_swap = a; \
  |  |  307|  6.47k|		a = b;                    \
  |  |  308|  6.47k|		b = __tmp_swap;           \
  |  |  309|  6.47k|	}
  ------------------
  266|  6.47k|		}
  267|  21.0k|		probe++;
  268|  21.0k|	}
  269|  29.8k|}
compress.c:match_suffix:
  177|   787k|	     unsigned int slen, unsigned int old_coff, bool sensitive) {
  178|   787k|	uint8_t pptr[] = { 0xC0 | (old_coff >> 8), old_coff & 0xff };
  179|   787k|	uint8_t *bptr = isc_buffer_base(buffer);
  ------------------
  |  |  143|   787k|#define isc_buffer_base(b) ((void *)(b)->base) /*a*/
  ------------------
  180|   787k|	unsigned int blen = isc_buffer_usedlength(buffer);
  ------------------
  |  |  157|   787k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
  181|   787k|	unsigned int llen = sptr[0] + 1;
  182|       |
  183|   787k|	INSIST(llen <= 64 && llen < slen);
  ------------------
  |  |  202|   787k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.57M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 787k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 787k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   787k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  184|       |
  185|   787k|	if (blen < new_coff + llen) {
  ------------------
  |  Branch (185:6): [True: 86, False: 786k]
  ------------------
  186|     86|		return false;
  187|     86|	}
  188|       |
  189|   786k|	blen -= new_coff;
  190|   786k|	bptr += new_coff;
  191|       |
  192|       |	/* does the first label of the suffix appear here? */
  193|   786k|	if (!match_wirename(bptr, sptr, llen, sensitive)) {
  ------------------
  |  Branch (193:6): [True: 2.72k, False: 784k]
  ------------------
  194|  2.72k|		return false;
  195|  2.72k|	}
  196|       |
  197|       |	/* is this label followed by the previously matched suffix? */
  198|   784k|	if (old_coff == new_coff + llen) {
  ------------------
  |  Branch (198:6): [True: 615k, False: 168k]
  ------------------
  199|   615k|		return true;
  200|   615k|	}
  201|       |
  202|   168k|	blen -= llen;
  203|   168k|	bptr += llen;
  204|   168k|	slen -= llen;
  205|   168k|	sptr += llen;
  206|       |
  207|       |	/* are both labels followed by the root label? */
  208|   168k|	if (blen >= 1 && slen == 1 && bptr[0] == 0 && sptr[0] == 0) {
  ------------------
  |  Branch (208:6): [True: 168k, False: 3]
  |  Branch (208:19): [True: 135k, False: 32.5k]
  |  Branch (208:32): [True: 135k, False: 216]
  |  Branch (208:48): [True: 135k, False: 0]
  ------------------
  209|   135k|		return true;
  210|   135k|	}
  211|       |
  212|       |	/* is this label followed by a pointer to the previous match? */
  213|  32.7k|	if (blen >= 2 && bptr[0] == pptr[0] && bptr[1] == pptr[1]) {
  ------------------
  |  Branch (213:6): [True: 32.7k, False: 6]
  |  Branch (213:19): [True: 6.25k, False: 26.5k]
  |  Branch (213:41): [True: 5.99k, False: 259]
  ------------------
  214|  5.99k|		return true;
  215|  5.99k|	}
  216|       |
  217|       |	/* is this label followed by a copy of the rest of the suffix? */
  218|  26.7k|	return blen >= slen && match_wirename(bptr, sptr, slen, sensitive);
  ------------------
  |  Branch (218:9): [True: 23.2k, False: 3.55k]
  |  Branch (218:25): [True: 945, False: 22.2k]
  ------------------
  219|  32.7k|}
compress.c:match_wirename:
  135|   810k|match_wirename(uint8_t *a, uint8_t *b, unsigned int len, bool sensitive) {
  136|   810k|	if (sensitive) {
  ------------------
  |  Branch (136:6): [True: 0, False: 810k]
  ------------------
  137|      0|		return memcmp(a, b, len) == 0;
  138|   810k|	} else {
  139|       |		/* label lengths are < 'A' so unaffected by tolower() */
  140|   810k|		return isc_ascii_lowerequal(a, b, len);
  141|   810k|	}
  142|   810k|}

dns__db_initialize:
   76|      2|dns__db_initialize(void) {
   77|      2|	isc_rwlock_init(&implock);
   78|       |
   79|      2|	ISC_LIST_INIT(implementations);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   80|       |
   81|      2|	qpimp = (dns_dbimplementation_t){
   82|      2|		.name = "qpcache",
   83|      2|		.create = dns__qpcache_create,
   84|      2|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|      2|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|      2|	{                                         \
  |  |  |  |   27|      2|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|      2|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|      2|	}
  |  |  ------------------
  ------------------
   85|      2|	};
   86|       |
   87|      2|	qpzoneimp = (dns_dbimplementation_t){
   88|      2|		.name = "qpzone",
   89|      2|		.create = dns__qpzone_create,
   90|      2|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|      2|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|      2|	{                                         \
  |  |  |  |   27|      2|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|      2|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|      2|	}
  |  |  ------------------
  ------------------
   91|      2|	};
   92|       |
   93|      2|	ISC_LIST_APPEND(implementations, &qpimp, link);
  ------------------
  |  |  100|      2|	do {                                                  \
  |  |  101|      2|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|      2|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|      2|	do {                                            \
  |  |  |  |   89|      2|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|      2|		} else {                                \
  |  |  |  |   92|      2|			(list).head = (elt);            \
  |  |  |  |   93|      2|		}                                       \
  |  |  |  |   94|      2|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|      2|		(elt)->link.next = NULL;                \
  |  |  |  |   96|      2|		(list).tail = (elt);                    \
  |  |  |  |   97|      2|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   94|       |	ISC_LIST_APPEND(implementations, &qpzoneimp, link);
  ------------------
  |  |  100|      2|	do {                                                  \
  |  |  101|      2|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|      2|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|      2|	do {                                            \
  |  |  |  |   89|      2|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   90|      2|			(list).tail->link.next = (elt); \
  |  |  |  |   91|      2|		} else {                                \
  |  |  |  |   92|      0|			(list).head = (elt);            \
  |  |  |  |   93|      0|		}                                       \
  |  |  |  |   94|      2|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|      2|		(elt)->link.next = NULL;                \
  |  |  |  |   96|      2|		(list).tail = (elt);                    \
  |  |  |  |   97|      2|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   95|      2|}

dns__dlz_initialize:
   86|      2|dns__dlz_initialize(void) {
   87|      2|	isc_rwlock_init(&dlz_implock);
   88|       |	ISC_LIST_INIT(dlz_implementations);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   89|      2|}

dst__lib_initialize:
  198|      2|dst__lib_initialize(void) {
  199|      2|	isc_mem_create("dst", &dst__mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
  200|       |
  201|      2|	dst__hmacmd5_init(&dst_t_func[DST_ALG_HMACMD5]);
  202|      2|	dst__hmacsha1_init(&dst_t_func[DST_ALG_HMACSHA1]);
  203|      2|	dst__hmacsha224_init(&dst_t_func[DST_ALG_HMACSHA224]);
  204|      2|	dst__hmacsha256_init(&dst_t_func[DST_ALG_HMACSHA256]);
  205|      2|	dst__hmacsha384_init(&dst_t_func[DST_ALG_HMACSHA384]);
  206|      2|	dst__hmacsha512_init(&dst_t_func[DST_ALG_HMACSHA512]);
  207|       |
  208|       |	/* RSASHA1 (NSEC3RSASHA1) is verify only in FIPS mode. */
  209|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA1], DST_ALG_RSASHA1);
  210|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_NSEC3RSASHA1],
  211|      2|			     DST_ALG_NSEC3RSASHA1);
  212|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA256], DST_ALG_RSASHA256);
  213|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA512], DST_ALG_RSASHA512);
  214|      2|	dst__opensslecdsa_init(&dst_t_func[DST_ALG_ECDSA256]);
  215|      2|	dst__opensslecdsa_init(&dst_t_func[DST_ALG_ECDSA384]);
  216|      2|	dst__openssleddsa_init(&dst_t_func[DST_ALG_ED25519], DST_ALG_ED25519);
  217|      2|#ifdef HAVE_OPENSSL_ED448
  218|      2|	dst__openssleddsa_init(&dst_t_func[DST_ALG_ED448], DST_ALG_ED448);
  219|      2|#endif /* ifdef HAVE_OPENSSL_ED448 */
  220|       |
  221|       |#if HAVE_GSSAPI
  222|       |	dst__gssapi_init(&dst_t_func[DST_ALG_GSSAPI]);
  223|       |#endif /* HAVE_GSSAPI */
  224|       |	/*
  225|       |	 * RSASHA256 using assigned OID 1.2.840.113549.1.1.11 as
  226|       |	 * a private OID example.
  227|       |	 */
  228|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA256PRIVATEOID],
  229|      2|			     DST_ALG_RSASHA256PRIVATEOID);
  230|       |	/*
  231|       |	 * RSASHA512 using assigned OID 1.2.840.113549.1.1.13 as
  232|       |	 * a private OID example.
  233|       |	 */
  234|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA512PRIVATEOID],
  235|      2|			     DST_ALG_RSASHA512PRIVATEOID);
  236|      2|}

dns__dyndb_initialize:
   55|      2|dns__dyndb_initialize(void) {
   56|      2|	isc_mutex_init(&dyndb_lock);
  ------------------
  |  |   68|      2|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|      2|	{                                                                 \
  |  |  |  |   80|      2|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|      2|	}
  |  |  ------------------
  ------------------
   57|       |	ISC_LIST_INIT(dyndb_implementations);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   58|      2|}

dns_fixedname_init:
   19|  1.07M|dns_fixedname_init(dns_fixedname_t *fixed) {
   20|  1.07M|	dns_name_init(&fixed->name);
   21|  1.07M|	isc_buffer_init(&fixed->buffer, fixed->data, DNS_NAME_MAXWIRE);
  ------------------
  |  |  190|  1.07M|#define DNS_NAME_MAXWIRE   255
  ------------------
   22|  1.07M|	dns_name_setbuffer(&fixed->name, &fixed->buffer);
   23|  1.07M|}
dns_fixedname_name:
   31|   790k|dns_fixedname_name(dns_fixedname_t *fixed) {
   32|   790k|	return &fixed->name;
   33|   790k|}
dns_fixedname_initname:
   36|   790k|dns_fixedname_initname(dns_fixedname_t *fixed) {
   37|   790k|	dns_fixedname_init(fixed);
   38|   790k|	return dns_fixedname_name(fixed);
   39|   790k|}

name.c:dns_decompress_getpermitted:
  251|  1.56M|dns_decompress_getpermitted(dns_decompress_t dctx) {
  252|  1.56M|	return dctx == DNS_DECOMPRESS_ALWAYS ||
  ------------------
  |  Branch (252:9): [True: 1.56M, False: 196]
  ------------------
  253|    196|	       dctx == DNS_DECOMPRESS_PERMITTED;
  ------------------
  |  Branch (253:9): [True: 0, False: 196]
  ------------------
  254|  1.56M|}
rdata.c:dns_decompress_setpermitted:
  237|   145k|dns_decompress_setpermitted(dns_decompress_t dctx, bool permitted) {
  238|   145k|	if (dctx == DNS_DECOMPRESS_NEVER || dctx == DNS_DECOMPRESS_ALWAYS) {
  ------------------
  |  Branch (238:6): [True: 0, False: 145k]
  |  Branch (238:38): [True: 145k, False: 0]
  ------------------
  239|   145k|		return dctx;
  240|   145k|	} else if (permitted) {
  ------------------
  |  Branch (240:13): [True: 0, False: 0]
  ------------------
  241|      0|		return DNS_DECOMPRESS_PERMITTED;
  242|      0|	} else {
  243|      0|		return DNS_DECOMPRESS_DEFAULT;
  244|      0|	}
  245|   145k|}

dns_lib_initialize:
   36|      2|dns_lib_initialize(void) {
   37|      2|	isc__lib_initialize();
   38|      2|	dns__lib_initialize();
   39|      2|}

message.c:dns_name_reset:
  229|  31.6k|dns_name_reset(dns_name_t *name) {
  230|  31.6k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  31.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  63.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 31.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 31.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  31.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  231|  31.6k|	REQUIRE(DNS_NAME_BINDABLE(name));
  ------------------
  |  |  198|  31.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  63.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 31.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 31.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  31.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  232|       |
  233|  31.6k|	name->ndata = NULL;
  234|  31.6k|	name->length = 0;
  235|  31.6k|	name->attributes.absolute = false;
  236|  31.6k|	if (name->buffer != NULL) {
  ------------------
  |  Branch (236:6): [True: 31.6k, False: 0]
  ------------------
  237|  31.6k|		isc_buffer_clear(name->buffer);
  238|  31.6k|	}
  239|  31.6k|}
message.c:dns_name_init:
  209|  20.1k|dns_name_init(dns_name_t *name) {
  210|  20.1k|	*name = (dns_name_t){
  211|  20.1k|		.magic = DNS_NAME_MAGIC,
  ------------------
  |  |  121|  20.1k|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  ------------------
  |  |  |  |   31|  20.1k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  212|  20.1k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  20.1k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  20.1k|	{                                         \
  |  |  |  |   27|  20.1k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  20.1k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  20.1k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  20.1k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  20.1k|	}
  |  |  ------------------
  ------------------
  213|       |		.list = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  20.1k|	{                     \
  |  |   22|  20.1k|		.head = NULL, \
  |  |   23|  20.1k|		.tail = NULL, \
  |  |   24|  20.1k|	}
  ------------------
  214|  20.1k|	};
  215|  20.1k|}
message.c:dns_name_countlabels:
  595|  2.68k|dns_name_countlabels(const dns_name_t *name) {
  596|  2.68k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  2.68k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.68k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.68k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.68k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  597|       |
  598|       |	return dns_name_offsets(name, NULL);
  599|  2.68k|}
message.c:dns_name_split:
 1025|    680|	       dns_name_t *prefix, dns_name_t *suffix) {
 1026|    680|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1027|    680|	REQUIRE(suffixlabels > 0);
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    680|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1028|    680|	REQUIRE(prefix != NULL || suffix != NULL);
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 680]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1029|    680|	REQUIRE(prefix == NULL ||
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    680|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1030|    680|		(DNS_NAME_VALID(prefix) && DNS_NAME_BINDABLE(prefix)));
 1031|    680|	REQUIRE(suffix == NULL ||
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 680]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1032|    680|		(DNS_NAME_VALID(suffix) && DNS_NAME_BINDABLE(suffix)));
 1033|       |
 1034|    680|	uint8_t labels = dns_name_countlabels(name);
 1035|    680|	INSIST(suffixlabels <= labels);
  ------------------
  |  |  202|    680|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    680|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    680|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1036|       |
 1037|    680|	if (prefix != NULL) {
  ------------------
  |  Branch (1037:6): [True: 0, False: 680]
  ------------------
 1038|      0|		dns_name_getlabelsequence(name, 0, labels - suffixlabels,
 1039|      0|					  prefix);
 1040|      0|	}
 1041|    680|	if (suffix != NULL) {
  ------------------
  |  Branch (1041:6): [True: 680, False: 0]
  ------------------
 1042|    680|		dns_name_getlabelsequence(name, labels - suffixlabels,
 1043|    680|					  suffixlabels, suffix);
 1044|    680|	}
 1045|    680|}
name.c:dns_name_countlabels:
  595|   843k|dns_name_countlabels(const dns_name_t *name) {
  596|   843k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   843k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.68M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 843k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 843k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   843k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  597|       |
  598|       |	return dns_name_offsets(name, NULL);
  599|   843k|}
rdata.c:dns_name_init:
  209|  1.49M|dns_name_init(dns_name_t *name) {
  210|  1.49M|	*name = (dns_name_t){
  211|  1.49M|		.magic = DNS_NAME_MAGIC,
  ------------------
  |  |  121|  1.49M|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  ------------------
  |  |  |  |   31|  1.49M|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  212|  1.49M|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  1.49M|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  1.49M|	{                                         \
  |  |  |  |   27|  1.49M|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.49M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  1.49M|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.49M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  1.49M|	}
  |  |  ------------------
  ------------------
  213|       |		.list = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  1.49M|	{                     \
  |  |   22|  1.49M|		.head = NULL, \
  |  |   23|  1.49M|		.tail = NULL, \
  |  |   24|  1.49M|	}
  ------------------
  214|  1.49M|	};
  215|  1.49M|}
rdata.c:dns_name_countlabels:
  595|  3.97k|dns_name_countlabels(const dns_name_t *name) {
  596|  3.97k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  3.97k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.94k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 3.97k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 3.97k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.97k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  597|       |
  598|       |	return dns_name_offsets(name, NULL);
  599|  3.97k|}
fixedname.c:dns_name_init:
  209|  1.07M|dns_name_init(dns_name_t *name) {
  210|  1.07M|	*name = (dns_name_t){
  211|  1.07M|		.magic = DNS_NAME_MAGIC,
  ------------------
  |  |  121|  1.07M|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  ------------------
  |  |  |  |   31|  1.07M|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  212|  1.07M|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  1.07M|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  1.07M|	{                                         \
  |  |  |  |   27|  1.07M|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.07M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  1.07M|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.07M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  1.07M|	}
  |  |  ------------------
  ------------------
  213|       |		.list = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  1.07M|	{                     \
  |  |   22|  1.07M|		.head = NULL, \
  |  |   23|  1.07M|		.tail = NULL, \
  |  |   24|  1.07M|	}
  ------------------
  214|  1.07M|	};
  215|  1.07M|}
fixedname.c:dns_name_setbuffer:
  298|  1.07M|dns_name_setbuffer(dns_name_t *name, isc_buffer_t *buffer) {
  299|  1.07M|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  1.07M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.15M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.07M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.07M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  300|  1.07M|	REQUIRE((buffer != NULL && name->buffer == NULL) || (buffer == NULL));
  ------------------
  |  |  198|  1.07M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.22M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.07M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.07M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  301|       |
  302|  1.07M|	name->buffer = buffer;
  303|  1.07M|}

message.c:dns_rdatatype_ismeta:
  581|  3.47k|dns_rdatatype_ismeta(dns_rdatatype_t type) {
  582|  3.47k|	return (dns_rdatatype_attributes(type) & DNS_RDATATYPEATTR_META) != 0;
  583|  3.47k|}
message.c:dns_rdatatype_issig:
  735|  3.19k|dns_rdatatype_issig(dns_rdatatype_t type) {
  736|  3.19k|	return type == dns_rdatatype_rrsig;
  ------------------
  |  |  160|  3.19k|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  737|  3.19k|}
message.c:dns_rdatatype_questiononly:
  622|   252k|dns_rdatatype_questiononly(dns_rdatatype_t type) {
  623|   252k|	return (dns_rdatatype_attributes(type) &
  624|   252k|		DNS_RDATATYPEATTR_QUESTIONONLY) != 0;
  625|   252k|}
message.c:dns_rdatatype_issingleton:
  594|   160k|dns_rdatatype_issingleton(dns_rdatatype_t type) {
  595|   160k|	return (dns_rdatatype_attributes(type) & DNS_RDATATYPEATTR_SINGLETON) !=
  596|   160k|	       0;
  597|   160k|}
rdata.c:dns_rdatatype_isknown:
  717|   128k|dns_rdatatype_isknown(dns_rdatatype_t type) {
  718|   128k|	return (dns_rdatatype_attributes(type) & DNS_RDATATYPEATTR_UNKNOWN) ==
  719|   128k|	       0;
  720|   128k|}

dns__lib_initialize:
   44|      2|dns__lib_initialize(void) {
   45|      2|	if (isc_refcount_increment0(&dns__lib_references) > 0) {
  ------------------
  |  |   68|      2|	({                                                 \
  |  |   69|      2|		uint_fast32_t __v;                         \
  |  |   70|      2|		__v = atomic_fetch_add_release(target, 1); \
  |  |  ------------------
  |  |  |  |   52|      2|	atomic_fetch_add_explicit((o), (v), memory_order_release)
  |  |  ------------------
  |  |   71|      2|		INSIST(__v < UINT32_MAX);                  \
  |  |  ------------------
  |  |  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   72|      2|		__v;                                       \
  |  |   73|      2|	})
  ------------------
  |  Branch (45:6): [True: 0, False: 2]
  ------------------
   46|      0|		return;
   47|      0|	}
   48|       |
   49|      2|	dst__lib_initialize();
   50|      2|	dns__acl_initialize();
   51|      2|	dns__dlz_initialize();
   52|      2|	dns__db_initialize();
   53|      2|	dns__dyndb_initialize();
   54|      2|	dns__qp_initialize();
   55|      2|	dns__qpzone_initialize();
   56|      2|	dns__zone_keymgmt_initialize();
   57|      2|}

dns_master_rdatasettotext:
  910|   115k|			  isc_buffer_t *target) {
  911|   115k|	dns_totext_ctx_t ctx;
  912|   115k|	isc_result_t result;
  913|   115k|	result = totext_ctx_init(style, indent, &ctx);
  914|   115k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (914:6): [True: 0, False: 115k]
  ------------------
  915|      0|		UNEXPECTED_ERROR("could not set master file style");
  ------------------
  |  |  217|      0|	isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  916|      0|		return ISC_R_UNEXPECTED;
  917|      0|	}
  918|       |
  919|   115k|	return rdataset_totext(rdataset, owner_name, &ctx, false, target);
  920|   115k|}
dns_master_questiontotext:
  926|   169k|			  isc_buffer_t *target) {
  927|   169k|	dns_totext_ctx_t ctx;
  928|   169k|	isc_result_t result;
  929|   169k|	result = totext_ctx_init(style, NULL, &ctx);
  930|   169k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (930:6): [True: 0, False: 169k]
  ------------------
  931|      0|		UNEXPECTED_ERROR("could not set master file style");
  ------------------
  |  |  217|      0|	isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  932|      0|		return ISC_R_UNEXPECTED;
  933|      0|	}
  934|       |
  935|   169k|	return question_totext(rdataset, owner_name, &ctx, false, target);
  936|   169k|}
dns_master_styleflags:
 1885|   891k|dns_master_styleflags(const dns_master_style_t *style) {
 1886|   891k|	REQUIRE(style != NULL);
  ------------------
  |  |  198|   891k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   891k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 891k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   891k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1887|   891k|	return style->flags;
 1888|   891k|}
masterdump.c:totext_ctx_init:
  337|   285k|		dns_totext_ctx_t *ctx) {
  338|   285k|	isc_result_t result;
  339|       |
  340|   285k|	REQUIRE(style->tab_width != 0);
  ------------------
  |  |  198|   285k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   285k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 285k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   285k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  341|       |
  342|   285k|	if (indentctx == NULL) {
  ------------------
  |  Branch (342:6): [True: 169k, False: 115k]
  ------------------
  343|   169k|		if ((style->flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|   169k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (343:7): [True: 0, False: 169k]
  ------------------
  344|      0|			indentctx = &default_yamlindent;
  345|   169k|		} else {
  346|   169k|			indentctx = &default_indent;
  347|   169k|		}
  348|   169k|	}
  349|       |
  350|   285k|	ctx->style = *style;
  351|   285k|	ctx->class_printed = false;
  352|       |
  353|   285k|	dns_fixedname_init(&ctx->origin_fixname);
  354|       |
  355|       |	/*
  356|       |	 * Set up the line break string if needed.
  357|       |	 */
  358|   285k|	if ((ctx->style.flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|   285k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (358:6): [True: 0, False: 285k]
  ------------------
  359|      0|		isc_buffer_t buf;
  360|      0|		isc_region_t r;
  361|      0|		unsigned int col = 0;
  362|       |
  363|      0|		isc_buffer_init(&buf, ctx->linebreak_buf,
  364|      0|				sizeof(ctx->linebreak_buf));
  365|       |
  366|      0|		isc_buffer_availableregion(&buf, &r);
  367|      0|		if (r.length < 1) {
  ------------------
  |  Branch (367:7): [True: 0, False: 0]
  ------------------
  368|      0|			return DNS_R_TEXTTOOLONG;
  369|      0|		}
  370|      0|		r.base[0] = '\n';
  371|      0|		isc_buffer_add(&buf, 1);
  372|       |
  373|      0|		if ((ctx->style.flags & DNS_STYLEFLAG_INDENT) != 0 ||
  ------------------
  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  ------------------
  |  Branch (373:7): [True: 0, False: 0]
  ------------------
  374|      0|		    (ctx->style.flags & DNS_STYLEFLAG_YAML) != 0)
  ------------------
  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (374:7): [True: 0, False: 0]
  ------------------
  375|      0|		{
  376|      0|			unsigned int i, len = strlen(indentctx->string);
  377|      0|			for (i = 0; i < indentctx->count; i++) {
  ------------------
  |  Branch (377:16): [True: 0, False: 0]
  ------------------
  378|      0|				if (isc_buffer_availablelength(&buf) < len) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (378:9): [True: 0, False: 0]
  ------------------
  379|      0|					return DNS_R_TEXTTOOLONG;
  380|      0|				}
  381|      0|				isc_buffer_putstr(&buf, indentctx->string);
  382|      0|			}
  383|      0|		}
  384|       |
  385|      0|		if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0) {
  ------------------
  |  |   98|      0|#define DNS_STYLEFLAG_COMMENTDATA 0x010000000ULL
  ------------------
  |  Branch (385:7): [True: 0, False: 0]
  ------------------
  386|      0|			isc_buffer_availableregion(&buf, &r);
  387|      0|			if (r.length < 1) {
  ------------------
  |  Branch (387:8): [True: 0, False: 0]
  ------------------
  388|      0|				return DNS_R_TEXTTOOLONG;
  389|      0|			}
  390|      0|			r.base[0] = ';';
  391|      0|			isc_buffer_add(&buf, 1);
  392|      0|		}
  393|       |
  394|      0|		result = indent(&col, ctx->style.rdata_column,
  395|      0|				ctx->style.tab_width, &buf);
  396|       |		/*
  397|       |		 * Do not return ISC_R_NOSPACE if the line break string
  398|       |		 * buffer is too small, because that would just make
  399|       |		 * dump_rdataset() retry indefinitely with ever
  400|       |		 * bigger target buffers.  That's a different buffer,
  401|       |		 * so it won't help.  Use DNS_R_TEXTTOOLONG as a substitute.
  402|       |		 */
  403|      0|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (403:7): [True: 0, False: 0]
  ------------------
  404|      0|			return DNS_R_TEXTTOOLONG;
  405|      0|		}
  406|      0|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (406:7): [True: 0, False: 0]
  ------------------
  407|      0|			return result;
  408|      0|		}
  409|       |
  410|      0|		isc_buffer_availableregion(&buf, &r);
  411|      0|		if (r.length < 1) {
  ------------------
  |  Branch (411:7): [True: 0, False: 0]
  ------------------
  412|      0|			return DNS_R_TEXTTOOLONG;
  413|      0|		}
  414|      0|		r.base[0] = '\0';
  415|      0|		isc_buffer_add(&buf, 1);
  416|      0|		ctx->linebreak = ctx->linebreak_buf;
  417|   285k|	} else {
  418|   285k|		ctx->linebreak = NULL;
  419|   285k|	}
  420|       |
  421|   285k|	ctx->origin = NULL;
  422|   285k|	ctx->neworigin = NULL;
  423|   285k|	ctx->current_ttl = 0;
  424|   285k|	ctx->current_ttl_valid = false;
  425|   285k|	ctx->serve_stale_ttl = 0;
  426|   285k|	ctx->indent = *indentctx;
  427|       |
  428|   285k|	return ISC_R_SUCCESS;
  429|   285k|}
masterdump.c:indent:
  272|  1.32M|       isc_buffer_t *target) {
  273|  1.32M|	isc_region_t r;
  274|  1.32M|	unsigned char *p;
  275|  1.32M|	unsigned int from;
  276|  1.32M|	int ntabs, nspaces, t;
  277|       |
  278|  1.32M|	from = *current;
  279|       |
  280|  1.32M|	if (to < from + 1) {
  ------------------
  |  Branch (280:6): [True: 765k, False: 557k]
  ------------------
  281|   765k|		to = from + 1;
  282|   765k|	}
  283|       |
  284|  1.32M|	ntabs = to / tabwidth - from / tabwidth;
  285|  1.32M|	if (ntabs < 0) {
  ------------------
  |  Branch (285:6): [True: 0, False: 1.32M]
  ------------------
  286|      0|		ntabs = 0;
  287|      0|	}
  288|       |
  289|  1.32M|	if (ntabs > 0) {
  ------------------
  |  Branch (289:6): [True: 583k, False: 738k]
  ------------------
  290|   583k|		isc_buffer_availableregion(target, &r);
  291|   583k|		if (r.length < (unsigned int)ntabs) {
  ------------------
  |  Branch (291:7): [True: 0, False: 583k]
  ------------------
  292|      0|			return ISC_R_NOSPACE;
  293|      0|		}
  294|   583k|		p = r.base;
  295|       |
  296|   583k|		t = ntabs;
  297|  1.16M|		while (t) {
  ------------------
  |  Branch (297:10): [True: 583k, False: 583k]
  ------------------
  298|   583k|			int n = t;
  299|   583k|			if (n > N_TABS) {
  ------------------
  |  |  231|   583k|#define N_TABS 10
  ------------------
  |  Branch (299:8): [True: 0, False: 583k]
  ------------------
  300|      0|				n = N_TABS;
  ------------------
  |  |  231|      0|#define N_TABS 10
  ------------------
  301|      0|			}
  302|   583k|			memmove(p, tabs, n);
  303|   583k|			p += n;
  304|   583k|			t -= n;
  305|   583k|		}
  306|   583k|		isc_buffer_add(target, ntabs);
  307|   583k|		from = (to / tabwidth) * tabwidth;
  308|   583k|	}
  309|       |
  310|  1.32M|	nspaces = to - from;
  311|  1.32M|	INSIST(nspaces >= 0);
  ------------------
  |  |  202|  1.32M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.32M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.32M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.32M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  312|       |
  313|  1.32M|	isc_buffer_availableregion(target, &r);
  314|  1.32M|	if (r.length < (unsigned int)nspaces) {
  ------------------
  |  Branch (314:6): [True: 0, False: 1.32M]
  ------------------
  315|      0|		return ISC_R_NOSPACE;
  316|      0|	}
  317|  1.32M|	p = r.base;
  318|       |
  319|  1.32M|	t = nspaces;
  320|  2.06M|	while (t) {
  ------------------
  |  Branch (320:9): [True: 738k, False: 1.32M]
  ------------------
  321|   738k|		int n = t;
  322|   738k|		if (n > N_SPACES) {
  ------------------
  |  |  228|   738k|#define N_SPACES 10
  ------------------
  |  Branch (322:7): [True: 0, False: 738k]
  ------------------
  323|      0|			n = N_SPACES;
  ------------------
  |  |  228|      0|#define N_SPACES 10
  ------------------
  324|      0|		}
  325|   738k|		memmove(p, spaces, n);
  326|   738k|		p += n;
  327|   738k|		t -= n;
  328|   738k|	}
  329|  1.32M|	isc_buffer_add(target, nspaces);
  330|       |
  331|  1.32M|	*current = to;
  332|  1.32M|	return ISC_R_SUCCESS;
  333|  1.32M|}
masterdump.c:question_totext:
  808|   169k|		isc_buffer_t *target) {
  809|   169k|	unsigned int column;
  810|   169k|	isc_result_t result;
  811|   169k|	char *start = NULL;
  812|       |
  813|   169k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   169k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   339k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 169k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 169k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   169k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  814|   169k|	result = dns_rdataset_first(rdataset);
  815|   169k|	REQUIRE(result == ISC_R_NOMORE);
  ------------------
  |  |  198|   169k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   169k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 169k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   169k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  816|       |
  817|   169k|	column = 0;
  818|       |
  819|   169k|	if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|   169k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (819:6): [True: 0, False: 169k]
  ------------------
  820|      0|		RETERR(str_totext("- '", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  821|      0|		start = isc_buffer_used(target);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  822|      0|	}
  823|       |
  824|       |	/* Owner name */
  825|   169k|	{
  826|   169k|		unsigned int name_start = target->used;
  827|   169k|		unsigned int opts = omit_final_dot ? DNS_NAME_OMITFINALDOT : 0;
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (827:23): [True: 0, False: 169k]
  ------------------
  828|   169k|		RETERR(dns_name_totext(owner_name, opts, target));
  ------------------
  |  |  276|   169k|	{                                  \
  |  |  277|   169k|		isc_result_t _r = (x);     \
  |  |  278|   169k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   169k|	}
  ------------------
  829|   169k|		column += target->used - name_start;
  830|   169k|	}
  831|       |
  832|       |	/* Class */
  833|      0|	{
  834|   169k|		unsigned int class_start;
  835|   169k|		INDENT_TO(class_column);
  ------------------
  |  |  432|   169k|	do {                                                                  \
  |  |  433|   169k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   169k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   169k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 169k]
  |  |  ------------------
  |  |  438|   169k|					    ctx->style.tab_width, target)) != \
  |  |  439|   169k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   169k|			return ((result));                                    \
  |  |  441|   169k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 169k]
  |  |  ------------------
  ------------------
  836|   169k|		class_start = target->used;
  837|   169k|		if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) != 0) {
  ------------------
  |  |  201|   169k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (837:7): [True: 0, False: 169k]
  ------------------
  838|      0|			result = dns_rdataclass_tounknowntext(rdataset->rdclass,
  839|      0|							      target);
  840|   169k|		} else {
  841|   169k|			result = dns_rdataclass_totext(rdataset->rdclass,
  842|   169k|						       target);
  843|   169k|		}
  844|   169k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (844:7): [True: 0, False: 169k]
  ------------------
  845|      0|			return result;
  846|      0|		}
  847|   169k|		column += (target->used - class_start);
  848|   169k|	}
  849|       |
  850|       |	/* Type */
  851|      0|	{
  852|   169k|		unsigned int type_start;
  853|   169k|		INDENT_TO(type_column);
  ------------------
  |  |  432|   169k|	do {                                                                  \
  |  |  433|   169k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   169k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   169k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 169k]
  |  |  ------------------
  |  |  438|   169k|					    ctx->style.tab_width, target)) != \
  |  |  439|   169k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   169k|			return ((result));                                    \
  |  |  441|   169k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 169k]
  |  |  ------------------
  ------------------
  854|   169k|		type_start = target->used;
  855|   169k|		if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) != 0) {
  ------------------
  |  |  201|   169k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (855:7): [True: 0, False: 169k]
  ------------------
  856|      0|			result = dns_rdatatype_tounknowntext(rdataset->type,
  857|      0|							     target);
  858|   169k|		} else {
  859|   169k|			result = dns_rdatatype_totext(rdataset->type, target);
  860|   169k|		}
  861|   169k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (861:7): [True: 0, False: 169k]
  ------------------
  862|      0|			return result;
  863|      0|		}
  864|   169k|		column += (target->used - type_start);
  865|   169k|	}
  866|       |
  867|   169k|	if (start != NULL) {
  ------------------
  |  Branch (867:6): [True: 0, False: 169k]
  ------------------
  868|      0|		RETERR(yaml_stringify(target, start));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  869|      0|		RETERR(str_totext("\'", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  870|      0|	}
  871|   169k|	RETERR(str_totext("\n", target));
  ------------------
  |  |  276|   169k|	{                                  \
  |  |  277|   169k|		isc_result_t _r = (x);     \
  |  |  278|   169k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   169k|	}
  ------------------
  872|       |
  873|   169k|	return ISC_R_SUCCESS;
  874|   169k|}
masterdump.c:str_totext:
  444|   415k|str_totext(const char *source, isc_buffer_t *target) {
  445|   415k|	unsigned int l;
  446|   415k|	isc_region_t region;
  447|       |
  448|   415k|	isc_buffer_availableregion(target, &region);
  449|   415k|	l = strlen(source);
  450|       |
  451|   415k|	if (l > region.length) {
  ------------------
  |  Branch (451:6): [True: 0, False: 415k]
  ------------------
  452|      0|		return ISC_R_NOSPACE;
  453|      0|	}
  454|       |
  455|   415k|	memmove(region.base, source, l);
  456|   415k|	isc_buffer_add(target, l);
  457|   415k|	return ISC_R_SUCCESS;
  458|   415k|}
masterdump.c:rdataset_totext:
  568|   115k|		isc_buffer_t *target) {
  569|   115k|	isc_result_t result;
  570|   115k|	unsigned int column;
  571|   115k|	bool first = true;
  572|   115k|	uint32_t current_ttl;
  573|   115k|	bool current_ttl_valid;
  574|   115k|	dns_rdatatype_t type;
  575|   115k|	unsigned int type_start;
  576|   115k|	dns_fixedname_t fixed;
  577|   115k|	dns_name_t *name = NULL;
  578|   115k|	unsigned int i;
  579|   115k|	char *start = NULL;
  580|       |
  581|   115k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   115k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   231k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 115k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 115k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   115k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  582|       |
  583|   115k|	current_ttl = ctx->current_ttl;
  584|   115k|	current_ttl_valid = ctx->current_ttl_valid;
  585|       |
  586|   115k|	if (owner_name != NULL) {
  ------------------
  |  Branch (586:6): [True: 115k, False: 0]
  ------------------
  587|   115k|		name = dns_fixedname_initname(&fixed);
  588|   115k|		dns_name_copy(owner_name, name);
  589|   115k|		dns_rdataset_getownercase(rdataset, name);
  590|   115k|	}
  591|       |
  592|   245k|	DNS_RDATASET_FOREACH(rdataset) {
  ------------------
  |  |  262|   115k|	DNS_RDATASET_FOREACH_RES(rds, DNS__RDATASET_CONCAT(x, __LINE__))
  |  |  ------------------
  |  |  |  |  259|   115k|	for (isc_result_t res = dns_rdataset_first((rds));       \
  |  |  |  |  260|   361k|	     res == ISC_R_SUCCESS; res = dns_rdataset_next((rds)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (260:7): [True: 245k, False: 115k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  593|   245k|		column = 0;
  594|       |
  595|       |		/*
  596|       |		 * Indent?
  597|       |		 */
  598|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_INDENT) != 0 ||
  ------------------
  |  |  104|   245k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  ------------------
  |  Branch (598:7): [True: 0, False: 245k]
  ------------------
  599|   245k|		    (ctx->style.flags & DNS_STYLEFLAG_YAML) != 0)
  ------------------
  |  |  107|   245k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (599:7): [True: 0, False: 245k]
  ------------------
  600|      0|		{
  601|      0|			for (i = 0; i < ctx->indent.count; i++) {
  ------------------
  |  Branch (601:16): [True: 0, False: 0]
  ------------------
  602|      0|				RETERR(str_totext(ctx->indent.string, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  603|      0|			}
  604|      0|		}
  605|       |
  606|       |		/*
  607|       |		 * YAML or comment prefix?
  608|       |		 */
  609|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|   245k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (609:7): [True: 0, False: 245k]
  ------------------
  610|      0|			RETERR(str_totext("- '", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  611|      0|			start = isc_buffer_used(target);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  612|   245k|		} else if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0)
  ------------------
  |  |   98|   245k|#define DNS_STYLEFLAG_COMMENTDATA 0x010000000ULL
  ------------------
  |  Branch (612:14): [True: 0, False: 245k]
  ------------------
  613|      0|		{
  614|      0|			RETERR(str_totext(";", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  615|      0|		}
  616|       |
  617|       |		/*
  618|       |		 * Owner name.
  619|       |		 */
  620|   245k|		if (name != NULL &&
  ------------------
  |  Branch (620:7): [True: 245k, False: 0]
  ------------------
  621|   245k|		    !((ctx->style.flags & DNS_STYLEFLAG_OMIT_OWNER) != 0 &&
  ------------------
  |  |   43|   245k|#define DNS_STYLEFLAG_OMIT_OWNER 0x000010000ULL
  ------------------
  |  Branch (621:9): [True: 0, False: 245k]
  ------------------
  622|      0|		      !first))
  ------------------
  |  Branch (622:9): [True: 0, False: 0]
  ------------------
  623|   245k|		{
  624|   245k|			unsigned int name_start = target->used;
  625|   245k|			RETERR(dns_name_totext(
  ------------------
  |  |  276|   245k|	{                                  \
  |  |  277|   491k|		isc_result_t _r = (x);     \
  |  |  ------------------
  |  |  |  Branch (277:22): [True: 0, False: 245k]
  |  |  ------------------
  |  |  278|   245k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 245k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   245k|	}
  ------------------
  626|   245k|				name,
  627|   245k|				omit_final_dot ? DNS_NAME_OMITFINALDOT : 0,
  628|   245k|				target));
  629|   245k|			column += target->used - name_start;
  630|   245k|		}
  631|       |
  632|       |		/*
  633|       |		 * TTL.
  634|       |		 */
  635|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_NO_TTL) == 0 &&
  ------------------
  |  |   86|   245k|#define DNS_STYLEFLAG_NO_TTL 0x001000000ULL
  ------------------
  |  Branch (635:7): [True: 245k, False: 0]
  ------------------
  636|   245k|		    !((ctx->style.flags & DNS_STYLEFLAG_OMIT_TTL) != 0 &&
  ------------------
  |  |   61|   245k|#define DNS_STYLEFLAG_OMIT_TTL 0x000020000ULL
  ------------------
  |  Branch (636:9): [True: 0, False: 245k]
  ------------------
  637|      0|		      current_ttl_valid && rdataset->ttl == current_ttl))
  ------------------
  |  Branch (637:9): [True: 0, False: 0]
  |  Branch (637:30): [True: 0, False: 0]
  ------------------
  638|   245k|		{
  639|   245k|			char ttlbuf[64];
  640|   245k|			isc_region_t r;
  641|   245k|			unsigned int length;
  642|       |
  643|   245k|			INDENT_TO(ttl_column);
  ------------------
  |  |  432|   245k|	do {                                                                  \
  |  |  433|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   245k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 245k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   245k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 245k]
  |  |  ------------------
  |  |  438|   245k|					    ctx->style.tab_width, target)) != \
  |  |  439|   245k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   245k|			return ((result));                                    \
  |  |  441|   245k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 245k]
  |  |  ------------------
  ------------------
  644|   245k|			if ((ctx->style.flags & DNS_STYLEFLAG_TTL_UNITS) != 0) {
  ------------------
  |  |  101|   245k|#define DNS_STYLEFLAG_TTL_UNITS 0x020000000ULL
  ------------------
  |  Branch (644:8): [True: 0, False: 245k]
  ------------------
  645|      0|				length = target->used;
  646|      0|				RETERR(dns_ttl_totext(rdataset->ttl, false,
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  647|      0|						      false, target));
  648|      0|				column += target->used - length;
  649|   245k|			} else {
  650|   245k|				length = snprintf(ttlbuf, sizeof(ttlbuf), "%u",
  651|   245k|						  rdataset->ttl);
  652|   245k|				INSIST(length <= sizeof(ttlbuf));
  ------------------
  |  |  202|   245k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   245k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 245k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   245k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  653|   245k|				isc_buffer_availableregion(target, &r);
  654|   245k|				if (r.length < length) {
  ------------------
  |  Branch (654:9): [True: 0, False: 245k]
  ------------------
  655|      0|					return ISC_R_NOSPACE;
  656|      0|				}
  657|   245k|				memmove(r.base, ttlbuf, length);
  658|   245k|				isc_buffer_add(target, length);
  659|   245k|				column += length;
  660|   245k|			}
  661|       |
  662|       |			/*
  663|       |			 * If the $TTL directive is not in use, the TTL we
  664|       |			 * just printed becomes the default for subsequent RRs.
  665|       |			 */
  666|   245k|			if ((ctx->style.flags & DNS_STYLEFLAG_TTL) == 0) {
  ------------------
  |  |   67|   245k|#define DNS_STYLEFLAG_TTL 0x000080000ULL
  ------------------
  |  Branch (666:8): [True: 245k, False: 0]
  ------------------
  667|   245k|				current_ttl = rdataset->ttl;
  668|   245k|				current_ttl_valid = true;
  669|   245k|			}
  670|   245k|		}
  671|       |
  672|       |		/*
  673|       |		 * Class.
  674|       |		 */
  675|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_NO_CLASS) == 0 &&
  ------------------
  |  |   89|   245k|#define DNS_STYLEFLAG_NO_CLASS 0x002000000ULL
  ------------------
  |  Branch (675:7): [True: 245k, False: 0]
  ------------------
  676|   245k|		    ((ctx->style.flags & DNS_STYLEFLAG_OMIT_CLASS) == 0 ||
  ------------------
  |  |   64|   245k|#define DNS_STYLEFLAG_OMIT_CLASS 0x000040000ULL
  ------------------
  |  Branch (676:8): [True: 245k, False: 0]
  ------------------
  677|      0|		     !ctx->class_printed))
  ------------------
  |  Branch (677:8): [True: 0, False: 0]
  ------------------
  678|   245k|		{
  679|   245k|			unsigned int class_start;
  680|   245k|			INDENT_TO(class_column);
  ------------------
  |  |  432|   245k|	do {                                                                  \
  |  |  433|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   245k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 245k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   245k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 245k]
  |  |  ------------------
  |  |  438|   245k|					    ctx->style.tab_width, target)) != \
  |  |  439|   245k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   245k|			return ((result));                                    \
  |  |  441|   245k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 245k]
  |  |  ------------------
  ------------------
  681|   245k|			class_start = target->used;
  682|   245k|			if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) !=
  ------------------
  |  |  201|   245k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (682:8): [True: 0, False: 245k]
  ------------------
  683|   245k|			    0)
  684|      0|			{
  685|      0|				result = dns_rdataclass_tounknowntext(
  686|      0|					rdataset->rdclass, target);
  687|   245k|			} else {
  688|   245k|				result = dns_rdataclass_totext(
  689|   245k|					rdataset->rdclass, target);
  690|   245k|			}
  691|   245k|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (691:8): [True: 1, False: 245k]
  ------------------
  692|      1|				return result;
  693|      1|			}
  694|   245k|			column += (target->used - class_start);
  695|   245k|		}
  696|       |
  697|       |		/*
  698|       |		 * Type.
  699|       |		 */
  700|       |
  701|   245k|		if (rdataset->attributes.negative) {
  ------------------
  |  Branch (701:7): [True: 0, False: 245k]
  ------------------
  702|      0|			type = rdataset->covers;
  703|   245k|		} else {
  704|   245k|			type = rdataset->type;
  705|   245k|		}
  706|       |
  707|   245k|		INDENT_TO(type_column);
  ------------------
  |  |  432|   245k|	do {                                                                  \
  |  |  433|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   245k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 245k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   245k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 245k]
  |  |  ------------------
  |  |  438|   245k|					    ctx->style.tab_width, target)) != \
  |  |  439|   245k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   245k|			return ((result));                                    \
  |  |  441|   245k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 245k]
  |  |  ------------------
  ------------------
  708|   245k|		type_start = target->used;
  709|   245k|		if (rdataset->attributes.negative) {
  ------------------
  |  Branch (709:7): [True: 0, False: 245k]
  ------------------
  710|      0|			RETERR(str_totext("\\-", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  711|      0|		}
  712|   245k|		switch (type) {
  713|  1.58k|		case dns_rdatatype_keydata:
  ------------------
  |  |  200|  1.58k|#define dns_rdatatype_keydata	((dns_rdatatype_t)dns_rdatatype_keydata)
  ------------------
  |  Branch (713:3): [True: 1.58k, False: 244k]
  ------------------
  714|  1.58k|#define KEYDATA "KEYDATA"
  715|  1.58k|			if ((ctx->style.flags & DNS_STYLEFLAG_KEYDATA) != 0) {
  ------------------
  |  |  198|  1.58k|#define DNS_STYLEFLAG_KEYDATA 0x00000008ULL
  ------------------
  |  Branch (715:8): [True: 0, False: 1.58k]
  ------------------
  716|      0|				if (isc_buffer_availablelength(target) <
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (716:9): [True: 0, False: 0]
  ------------------
  717|      0|				    (sizeof(KEYDATA) - 1))
  ------------------
  |  |  714|      0|#define KEYDATA "KEYDATA"
  ------------------
  718|      0|				{
  719|      0|					return ISC_R_NOSPACE;
  720|      0|				}
  721|      0|				isc_buffer_putstr(target, KEYDATA);
  ------------------
  |  |  714|      0|#define KEYDATA "KEYDATA"
  ------------------
  722|      0|				break;
  723|      0|			}
  724|  1.58k|			FALLTHROUGH;
  ------------------
  |  |  101|  1.58k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  725|   245k|		default:
  ------------------
  |  Branch (725:3): [True: 244k, False: 1.58k]
  ------------------
  726|   245k|			if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) !=
  ------------------
  |  |  201|   245k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (726:8): [True: 0, False: 245k]
  ------------------
  727|   245k|			    0)
  728|      0|			{
  729|      0|				result = dns_rdatatype_tounknowntext(type,
  730|      0|								     target);
  731|   245k|			} else {
  732|   245k|				result = dns_rdatatype_totext(type, target);
  733|   245k|			}
  734|   245k|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (734:8): [True: 1, False: 245k]
  ------------------
  735|      1|				return result;
  736|      1|			}
  737|   245k|		}
  738|   245k|		column += (target->used - type_start);
  739|       |
  740|       |		/*
  741|       |		 * Rdata.
  742|       |		 */
  743|   245k|		INDENT_TO(rdata_column);
  ------------------
  |  |  432|   245k|	do {                                                                  \
  |  |  433|   245k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   245k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 245k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   245k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 245k]
  |  |  ------------------
  |  |  438|   245k|					    ctx->style.tab_width, target)) != \
  |  |  439|   245k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   245k|			return ((result));                                    \
  |  |  441|   245k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 245k]
  |  |  ------------------
  ------------------
  744|   245k|		if (rdataset->attributes.negative) {
  ------------------
  |  Branch (744:7): [True: 0, False: 245k]
  ------------------
  745|      0|			if (NXDOMAIN(rdataset)) {
  ------------------
  |  |  260|      0|#define NXDOMAIN(x) (((x)->attributes.nxdomain))
  |  |  ------------------
  |  |  |  Branch (260:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  746|      0|				RETERR(str_totext(";-$NXDOMAIN", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  747|      0|			} else {
  748|      0|				RETERR(str_totext(";-$NXRRSET", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  749|      0|			}
  750|      0|			if (start != NULL) {
  ------------------
  |  Branch (750:8): [True: 0, False: 0]
  ------------------
  751|      0|				RETERR(yaml_stringify(target, start));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  752|      0|				RETERR(str_totext("'\n", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  753|      0|			} else {
  754|      0|				RETERR(str_totext("\n", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  755|      0|			}
  756|       |
  757|       |			/*
  758|       |			 * Print a summary of the cached records which make
  759|       |			 * up the negative response.
  760|       |			 */
  761|      0|			RETERR(ncache_summary(rdataset, omit_final_dot, ctx,
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  762|      0|					      target));
  763|      0|			break;
  764|   245k|		} else {
  765|   245k|			dns_rdata_t rdata = DNS_RDATA_INIT;
  ------------------
  |  |  147|   245k|	{                                     \
  |  |  148|   245k|		.data = NULL,                 \
  |  |  149|   245k|		.link = ISC_LINK_INITIALIZER, \
  |  |  ------------------
  |  |  |  |   30|   245k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|   245k|	{                                         \
  |  |  |  |  |  |   27|   245k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   245k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   28|   245k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   245k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   29|   245k|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  150|   245k|	}
  ------------------
  766|       |
  767|   245k|			dns_rdataset_current(rdataset, &rdata);
  768|       |
  769|   245k|			RETERR(dns_rdata_tofmttext(
  ------------------
  |  |  276|   245k|	{                                  \
  |  |  277|   245k|		isc_result_t _r = (x);     \
  |  |  278|   245k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 8, False: 245k]
  |  |  ------------------
  |  |  279|      8|			return ((_r));     \
  |  |  280|      8|		}                          \
  |  |  281|   245k|	}
  ------------------
  770|   245k|				&rdata, ctx->origin, ctx->style.flags,
  771|   245k|				ctx->style.line_length -
  772|   245k|					ctx->style.rdata_column,
  773|   245k|				ctx->style.split_width, ctx->linebreak,
  774|   245k|				target));
  775|   245k|			if (start != NULL) {
  ------------------
  |  Branch (775:8): [True: 0, False: 245k]
  ------------------
  776|      0|				RETERR(yaml_stringify(target, start));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  777|      0|				RETERR(str_totext("'\n", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  778|   245k|			} else {
  779|   245k|				RETERR(str_totext("\n", target));
  ------------------
  |  |  276|   245k|	{                                  \
  |  |  277|   245k|		isc_result_t _r = (x);     \
  |  |  278|   245k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 245k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   245k|	}
  ------------------
  780|   245k|			}
  781|   245k|		}
  782|       |
  783|   245k|		first = false;
  784|   245k|	}
  785|       |
  786|       |	/*
  787|       |	 * Update the ctx state to reflect what we just printed.
  788|       |	 * This is done last, only when we are sure we will return
  789|       |	 * success, because this function may be called multiple
  790|       |	 * times with increasing buffer sizes until it succeeds,
  791|       |	 * and failed attempts must not update the state prematurely.
  792|       |	 */
  793|   115k|	ctx->class_printed = true;
  794|   115k|	ctx->current_ttl = current_ttl;
  795|   115k|	ctx->current_ttl_valid = current_ttl_valid;
  796|       |
  797|   115k|	return ISC_R_SUCCESS;
  798|   115k|}

dns_message_create:
  694|  21.9k|		   dns_message_t **msgp) {
  695|  21.9k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  696|  21.9k|	REQUIRE(msgp != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  697|  21.9k|	REQUIRE(*msgp == NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  698|  21.9k|	REQUIRE(intent == DNS_MESSAGE_INTENTPARSE ||
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  699|  21.9k|		intent == DNS_MESSAGE_INTENTRENDER);
  700|  21.9k|	REQUIRE((namepool != NULL && rdspool != NULL) ||
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   109k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 21.9k]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  701|  21.9k|		(namepool == NULL && rdspool == NULL));
  702|       |
  703|  21.9k|	dns_message_t *msg = isc_mem_get(mctx, sizeof(dns_message_t));
  ------------------
  |  |  128|  21.9k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  704|  21.9k|	*msg = (dns_message_t){
  705|  21.9k|		.from_to_wire = intent,
  706|  21.9k|		.references = ISC_REFCOUNT_INITIALIZER(1),
  ------------------
  |  |   34|  21.9k|#define ISC_REFCOUNT_INITIALIZER(a) (a)
  ------------------
  707|  21.9k|		.scratchpad = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  708|  21.9k|		.cleanup = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  709|  21.9k|		.rdatas = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  710|  21.9k|		.rdatalists = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  711|  21.9k|		.freerdata = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  712|  21.9k|		.freerdatalist = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  713|  21.9k|		.magic = DNS_MESSAGE_MAGIC,
  ------------------
  |  |  147|  21.9k|#define DNS_MESSAGE_MAGIC      ISC_MAGIC('M', 'S', 'G', '@')
  |  |  ------------------
  |  |  |  |   31|  21.9k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  714|  21.9k|		.namepool = namepool,
  715|  21.9k|		.rdspool = rdspool,
  716|  21.9k|		.free_pools = (namepool == NULL && rdspool == NULL),
  ------------------
  |  Branch (716:18): [True: 21.9k, False: 0]
  |  Branch (716:38): [True: 21.9k, False: 0]
  ------------------
  717|  21.9k|	};
  718|       |
  719|  21.9k|	isc_mem_attach(mctx, &msg->mctx);
  720|       |
  721|  21.9k|	if (msg->free_pools) {
  ------------------
  |  Branch (721:6): [True: 21.9k, False: 0]
  ------------------
  722|  21.9k|		dns_message_createpools(mctx, &msg->namepool, &msg->rdspool);
  723|  21.9k|	}
  724|       |
  725|  21.9k|	msginit(msg);
  726|       |
  727|   109k|	for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (727:21): [True: 87.9k, False: 21.9k]
  ------------------
  728|  87.9k|		ISC_LIST_INIT(msg->sections[i]);
  ------------------
  |  |   43|  87.9k|	do {                        \
  |  |   44|  87.9k|		(list).head = NULL; \
  |  |   45|  87.9k|		(list).tail = NULL; \
  |  |   46|  87.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 87.9k]
  |  |  ------------------
  ------------------
  729|  87.9k|	}
  730|       |
  731|  21.9k|	isc_buffer_t *dynbuf = NULL;
  732|  21.9k|	isc_buffer_allocate(mctx, &dynbuf, SCRATCHPAD_SIZE);
  ------------------
  |  |  123|  21.9k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  733|  21.9k|	ISC_LIST_APPEND(msg->scratchpad, dynbuf, link);
  ------------------
  |  |  100|  21.9k|	do {                                                  \
  |  |  101|  21.9k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  21.9k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  21.9k|	do {                                            \
  |  |  |  |   89|  21.9k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 21.9k]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  21.9k|		} else {                                \
  |  |  |  |   92|  21.9k|			(list).head = (elt);            \
  |  |  |  |   93|  21.9k|		}                                       \
  |  |  |  |   94|  21.9k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  21.9k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  21.9k|		(list).tail = (elt);                    \
  |  |  |  |   97|  21.9k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 21.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  21.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 21.9k]
  |  |  ------------------
  ------------------
  734|       |
  735|  21.9k|	*msgp = msg;
  736|  21.9k|}
dns_message_parse:
 1578|  21.9k|		  unsigned int options) {
 1579|  21.9k|	isc_region_t r;
 1580|  21.9k|	dns_decompress_t dctx;
 1581|  21.9k|	isc_result_t result;
 1582|  21.9k|	uint16_t tmpflags;
 1583|  21.9k|	isc_buffer_t origsource;
 1584|  21.9k|	bool seen_problem;
 1585|  21.9k|	bool ignore_tc;
 1586|       |
 1587|  21.9k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1588|  21.9k|	REQUIRE(source != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1589|  21.9k|	REQUIRE(msg->from_to_wire == DNS_MESSAGE_INTENTPARSE);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1590|       |
 1591|  21.9k|	seen_problem = false;
 1592|  21.9k|	ignore_tc = ((options & DNS_MESSAGEPARSE_IGNORETRUNCATION) != 0);
  ------------------
  |  |  209|  21.9k|	0x0008 /*%< truncation errors are \
  ------------------
 1593|       |
 1594|  21.9k|	origsource = *source;
 1595|       |
 1596|  21.9k|	msg->header_ok = 0;
 1597|  21.9k|	msg->question_ok = 0;
 1598|       |
 1599|  21.9k|	if ((options & DNS_MESSAGEPARSE_CLONEBUFFER) == 0) {
  ------------------
  |  |  206|  21.9k|	0x0004 /*%< save a copy of the \
  ------------------
  |  Branch (1599:6): [True: 21.9k, False: 0]
  ------------------
 1600|  21.9k|		isc_buffer_usedregion(&origsource, &msg->saved);
 1601|  21.9k|	} else {
 1602|      0|		msg->saved.length = isc_buffer_usedlength(&origsource);
  ------------------
  |  |  157|      0|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1603|      0|		msg->saved.base = isc_mem_get(msg->mctx, msg->saved.length);
  ------------------
  |  |  128|      0|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1604|      0|		memmove(msg->saved.base, isc_buffer_base(&origsource),
  ------------------
  |  |  143|      0|#define isc_buffer_base(b) ((void *)(b)->base) /*a*/
  ------------------
 1605|      0|			msg->saved.length);
 1606|      0|		msg->free_saved = 1;
 1607|      0|	}
 1608|       |
 1609|  21.9k|	isc_buffer_remainingregion(source, &r);
 1610|  21.9k|	if (r.length < DNS_MESSAGE_HEADERLEN) {
  ------------------
  |  |  145|  21.9k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
  |  Branch (1610:6): [True: 20, False: 21.9k]
  ------------------
 1611|     20|		return ISC_R_UNEXPECTEDEND;
 1612|     20|	}
 1613|       |
 1614|  21.9k|	msg->id = isc_buffer_getuint16(source);
 1615|  21.9k|	tmpflags = isc_buffer_getuint16(source);
 1616|  21.9k|	msg->opcode = ((tmpflags & DNS_MESSAGE_OPCODE_MASK) >>
  ------------------
  |  |   84|  21.9k|#define DNS_MESSAGE_OPCODE_MASK	      0x7800U
  ------------------
 1617|  21.9k|		       DNS_MESSAGE_OPCODE_SHIFT);
  ------------------
  |  |   85|  21.9k|#define DNS_MESSAGE_OPCODE_SHIFT      11
  ------------------
 1618|  21.9k|	msg->rcode = (dns_rcode_t)(tmpflags & DNS_MESSAGE_RCODE_MASK);
  ------------------
  |  |   86|  21.9k|#define DNS_MESSAGE_RCODE_MASK	      0x000fU
  ------------------
 1619|  21.9k|	msg->flags = (tmpflags & DNS_MESSAGE_FLAG_MASK);
  ------------------
  |  |   87|  21.9k|#define DNS_MESSAGE_FLAG_MASK	      0x8ff0U
  ------------------
 1620|  21.9k|	msg->counts[DNS_SECTION_QUESTION] = isc_buffer_getuint16(source);
 1621|  21.9k|	msg->counts[DNS_SECTION_ANSWER] = isc_buffer_getuint16(source);
 1622|  21.9k|	msg->counts[DNS_SECTION_AUTHORITY] = isc_buffer_getuint16(source);
 1623|  21.9k|	msg->counts[DNS_SECTION_ADDITIONAL] = isc_buffer_getuint16(source);
 1624|       |
 1625|  21.9k|	msg->header_ok = 1;
 1626|  21.9k|	msg->state = DNS_SECTION_QUESTION;
 1627|       |
 1628|  21.9k|	dctx = DNS_DECOMPRESS_ALWAYS;
 1629|       |
 1630|  21.9k|	bool strict_parse = ((options & DNS_MESSAGEPARSE_BESTEFFORT) == 0);
  ------------------
  |  |  202|  21.9k|	0x0002 /*%< return a message if a \
  ------------------
 1631|  21.9k|	isc_result_t early_check_ret = early_sanity_check(msg);
 1632|  21.9k|	if (strict_parse && (early_check_ret != ISC_R_SUCCESS)) {
  ------------------
  |  Branch (1632:6): [True: 0, False: 21.9k]
  |  Branch (1632:22): [True: 0, False: 0]
  ------------------
 1633|      0|		return early_check_ret;
 1634|      0|	}
 1635|       |
 1636|  21.9k|	result = getquestions(source, msg, dctx, options);
 1637|       |
 1638|  21.9k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1638:6): [True: 100, False: 21.8k]
  |  Branch (1638:39): [True: 0, False: 100]
  ------------------
 1639|      0|		goto truncated;
 1640|      0|	}
 1641|  21.9k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1641:6): [True: 2.35k, False: 19.6k]
  ------------------
 1642|  2.35k|		seen_problem = true;
 1643|  2.35k|		result = ISC_R_SUCCESS;
 1644|  2.35k|	}
 1645|  21.9k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1645:6): [True: 117, False: 21.8k]
  ------------------
 1646|    117|		return result;
 1647|    117|	}
 1648|  21.8k|	msg->question_ok = 1;
 1649|       |
 1650|  21.8k|	result = getsection(source, msg, dctx, DNS_SECTION_ANSWER, options);
 1651|  21.8k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1651:6): [True: 1.49k, False: 20.3k]
  |  Branch (1651:39): [True: 0, False: 1.49k]
  ------------------
 1652|      0|		goto truncated;
 1653|      0|	}
 1654|  21.8k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1654:6): [True: 2.42k, False: 19.4k]
  ------------------
 1655|  2.42k|		seen_problem = true;
 1656|  2.42k|		result = ISC_R_SUCCESS;
 1657|  2.42k|	}
 1658|  21.8k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1658:6): [True: 2.47k, False: 19.3k]
  ------------------
 1659|  2.47k|		return result;
 1660|  2.47k|	}
 1661|       |
 1662|  19.3k|	result = getsection(source, msg, dctx, DNS_SECTION_AUTHORITY, options);
 1663|  19.3k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1663:6): [True: 720, False: 18.6k]
  |  Branch (1663:39): [True: 0, False: 720]
  ------------------
 1664|      0|		goto truncated;
 1665|      0|	}
 1666|  19.3k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1666:6): [True: 2.75k, False: 16.6k]
  ------------------
 1667|  2.75k|		seen_problem = true;
 1668|  2.75k|		result = ISC_R_SUCCESS;
 1669|  2.75k|	}
 1670|  19.3k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1670:6): [True: 1.05k, False: 18.3k]
  ------------------
 1671|  1.05k|		return result;
 1672|  1.05k|	}
 1673|       |
 1674|  18.3k|	result = getsection(source, msg, dctx, DNS_SECTION_ADDITIONAL, options);
 1675|  18.3k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1675:6): [True: 549, False: 17.7k]
  |  Branch (1675:39): [True: 0, False: 549]
  ------------------
 1676|      0|		goto truncated;
 1677|      0|	}
 1678|  18.3k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1678:6): [True: 3.52k, False: 14.8k]
  ------------------
 1679|  3.52k|		seen_problem = true;
 1680|  3.52k|		result = ISC_R_SUCCESS;
 1681|  3.52k|	}
 1682|  18.3k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1682:6): [True: 835, False: 17.4k]
  ------------------
 1683|    835|		return result;
 1684|    835|	}
 1685|       |
 1686|  17.4k|	isc_buffer_remainingregion(source, &r);
 1687|  17.4k|	if (r.length != 0) {
  ------------------
  |  Branch (1687:6): [True: 1.91k, False: 15.5k]
  ------------------
 1688|  1.91k|		isc_log_write(ISC_LOGCATEGORY_GENERAL, DNS_LOGMODULE_MESSAGE,
 1689|  1.91k|			      ISC_LOG_DEBUG(3),
  ------------------
  |  |   36|  1.91k|#define ISC_LOG_DEBUG(level) (level)
  ------------------
 1690|  1.91k|			      "message has %u byte(s) of trailing garbage",
 1691|  1.91k|			      r.length);
 1692|  1.91k|	}
 1693|       |
 1694|  17.4k|truncated:
 1695|       |
 1696|  17.4k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1696:6): [True: 0, False: 17.4k]
  |  Branch (1696:39): [True: 0, False: 0]
  ------------------
 1697|      0|		return DNS_R_RECOVERABLE;
 1698|      0|	}
 1699|  17.4k|	if (seen_problem) {
  ------------------
  |  Branch (1699:6): [True: 7.79k, False: 9.69k]
  ------------------
 1700|  7.79k|		return DNS_R_RECOVERABLE;
 1701|  7.79k|	}
 1702|  9.69k|	return ISC_R_SUCCESS;
 1703|  17.4k|}
dns_message_renderbegin:
 1707|  8.82k|			isc_buffer_t *buffer) {
 1708|  8.82k|	isc_region_t r;
 1709|       |
 1710|  8.82k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.82k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1711|  8.82k|	REQUIRE(buffer != NULL);
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1712|  8.82k|	REQUIRE(isc_buffer_length(buffer) < 65536);
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1713|  8.82k|	REQUIRE(msg->buffer == NULL);
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1714|  8.82k|	REQUIRE(msg->from_to_wire == DNS_MESSAGE_INTENTRENDER);
  ------------------
  |  |  198|  8.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1715|       |
 1716|  8.82k|	msg->cctx = cctx;
 1717|       |
 1718|       |	/*
 1719|       |	 * Erase the contents of this buffer.
 1720|       |	 */
 1721|  8.82k|	isc_buffer_clear(buffer);
 1722|       |
 1723|       |	/*
 1724|       |	 * Make certain there is enough for at least the header in this
 1725|       |	 * buffer.
 1726|       |	 */
 1727|  8.82k|	isc_buffer_availableregion(buffer, &r);
 1728|  8.82k|	if (r.length < DNS_MESSAGE_HEADERLEN) {
  ------------------
  |  |  145|  8.82k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
  |  Branch (1728:6): [True: 0, False: 8.82k]
  ------------------
 1729|      0|		return ISC_R_NOSPACE;
 1730|      0|	}
 1731|       |
 1732|  8.82k|	if (r.length - DNS_MESSAGE_HEADERLEN < msg->reserved) {
  ------------------
  |  |  145|  8.82k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
  |  Branch (1732:6): [True: 0, False: 8.82k]
  ------------------
 1733|      0|		return ISC_R_NOSPACE;
 1734|      0|	}
 1735|       |
 1736|       |	/*
 1737|       |	 * Reserve enough space for the header in this buffer.
 1738|       |	 */
 1739|  8.82k|	isc_buffer_add(buffer, DNS_MESSAGE_HEADERLEN);
  ------------------
  |  |  145|  8.82k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
 1740|       |
 1741|  8.82k|	msg->buffer = buffer;
 1742|       |
 1743|  8.82k|	return ISC_R_SUCCESS;
 1744|  8.82k|}
dns_message_renderrelease:
 1776|  2.18k|dns_message_renderrelease(dns_message_t *msg, unsigned int space) {
 1777|  2.18k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  2.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.18k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1778|  2.18k|	REQUIRE(space <= msg->reserved);
  ------------------
  |  |  198|  2.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1779|       |
 1780|  2.18k|	msg->reserved -= space;
 1781|  2.18k|}
dns_message_rendersection:
 1882|  36.6k|			  unsigned int options) {
 1883|  36.6k|	dns_namelist_t *section = NULL;
 1884|  36.6k|	dns_name_t *name = NULL;
 1885|  36.6k|	dns_rdataset_t *rdataset = NULL;
 1886|  36.6k|	unsigned int count, total;
 1887|  36.6k|	isc_result_t result;
 1888|  36.6k|	isc_buffer_t st; /* for rollbacks */
 1889|  36.6k|	int pass;
 1890|  36.6k|	bool partial = false;
 1891|  36.6k|	unsigned int rd_options;
 1892|  36.6k|	dns_rdatatype_t preferred_glue = 0;
 1893|       |
 1894|  36.6k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  36.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  73.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 36.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 36.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  36.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1895|  36.6k|	REQUIRE(msg->buffer != NULL);
  ------------------
  |  |  198|  36.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  36.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 36.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  36.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1896|  36.6k|	REQUIRE(VALID_NAMED_SECTION(sectionid));
  ------------------
  |  |  198|  36.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  73.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 36.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 36.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  36.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1897|       |
 1898|  36.6k|	section = &msg->sections[sectionid];
 1899|       |
 1900|  36.6k|	if ((sectionid == DNS_SECTION_ADDITIONAL) &&
  ------------------
  |  Branch (1900:6): [True: 8.73k, False: 27.8k]
  ------------------
 1901|  8.73k|	    (options & DNS_MESSAGERENDER_ORDERED) == 0)
  ------------------
  |  |  215|  8.73k|#define DNS_MESSAGERENDER_ORDERED    0x0001 /*%< don't change order */
  ------------------
  |  Branch (1901:6): [True: 8.73k, False: 0]
  ------------------
 1902|  8.73k|	{
 1903|  8.73k|		if ((options & DNS_MESSAGERENDER_PREFER_A) != 0) {
  ------------------
  |  |  219|  8.73k|	0x0008 /*%< prefer A records in \
  ------------------
  |  Branch (1903:7): [True: 0, False: 8.73k]
  ------------------
 1904|      0|			preferred_glue = dns_rdatatype_a;
  ------------------
  |  |  115|      0|#define dns_rdatatype_a		((dns_rdatatype_t)dns_rdatatype_a)
  ------------------
 1905|      0|			pass = 4;
 1906|  8.73k|		} else if ((options & DNS_MESSAGERENDER_PREFER_AAAA) != 0) {
  ------------------
  |  |  222|  8.73k|	0x0010 /*%< prefer AAAA records in \
  ------------------
  |  Branch (1906:14): [True: 0, False: 8.73k]
  ------------------
 1907|      0|			preferred_glue = dns_rdatatype_aaaa;
  ------------------
  |  |  142|      0|#define dns_rdatatype_aaaa	((dns_rdatatype_t)dns_rdatatype_aaaa)
  ------------------
 1908|      0|			pass = 4;
 1909|  8.73k|		} else {
 1910|  8.73k|			pass = 3;
 1911|  8.73k|		}
 1912|  27.8k|	} else {
 1913|  27.8k|		pass = 1;
 1914|  27.8k|	}
 1915|       |
 1916|  36.6k|	if ((options & DNS_MESSAGERENDER_OMITDNSSEC) == 0) {
  ------------------
  |  |  217|  36.6k|#define DNS_MESSAGERENDER_OMITDNSSEC 0x0004 /*%< omit DNSSEC records */
  ------------------
  |  Branch (1916:6): [True: 36.6k, False: 0]
  ------------------
 1917|  36.6k|		rd_options = 0;
 1918|  36.6k|	} else {
 1919|      0|		rd_options = DNS_RDATASETTOWIRE_OMITDNSSEC;
  ------------------
  |  |  269|      0|#define DNS_RDATASETTOWIRE_OMITDNSSEC 0x0001
  ------------------
 1920|      0|	}
 1921|       |
 1922|       |	/*
 1923|       |	 * Shrink the space in the buffer by the reserved amount.
 1924|       |	 */
 1925|  36.6k|	if (msg->buffer->length - msg->buffer->used < msg->reserved) {
  ------------------
  |  Branch (1925:6): [True: 0, False: 36.6k]
  ------------------
 1926|      0|		return ISC_R_NOSPACE;
 1927|      0|	}
 1928|  36.6k|	msg->buffer->length -= msg->reserved;
 1929|       |
 1930|  36.6k|	total = 0;
 1931|  36.6k|	if (msg->reserved == 0 && (options & DNS_MESSAGERENDER_PARTIAL) != 0) {
  ------------------
  |  |  216|  36.6k|#define DNS_MESSAGERENDER_PARTIAL    0x0002 /*%< allow a partial rdataset */
  ------------------
  |  Branch (1931:6): [True: 36.6k, False: 0]
  |  Branch (1931:28): [True: 0, False: 36.6k]
  ------------------
 1932|      0|		partial = true;
 1933|      0|	}
 1934|       |
 1935|       |	/*
 1936|       |	 * Render required glue first.  Set TC if it won't fit.
 1937|       |	 */
 1938|  36.6k|	name = ISC_LIST_HEAD(*section);
  ------------------
  |  |   62|  36.6k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1939|  36.6k|	if (name != NULL) {
  ------------------
  |  Branch (1939:6): [True: 10.9k, False: 25.6k]
  ------------------
 1940|  10.9k|		rdataset = ISC_LIST_HEAD(name->list);
  ------------------
  |  |   62|  10.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1941|  10.9k|		if (rdataset != NULL && rdataset->attributes.required &&
  ------------------
  |  Branch (1941:7): [True: 10.9k, False: 0]
  |  Branch (1941:27): [True: 0, False: 10.9k]
  ------------------
 1942|      0|		    !rdataset->attributes.rendered)
  ------------------
  |  Branch (1942:7): [True: 0, False: 0]
  ------------------
 1943|      0|		{
 1944|      0|			st = *(msg->buffer);
 1945|      0|			count = 0;
 1946|      0|			result = dns_rdataset_towire(
 1947|      0|				rdataset, name, msg->id, msg->cctx, msg->buffer,
 1948|      0|				partial, rd_options, &count);
 1949|      0|			total += count;
 1950|      0|			if (partial && result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (1950:8): [True: 0, False: 0]
  |  Branch (1950:19): [True: 0, False: 0]
  ------------------
 1951|      0|				msg->flags |= DNS_MESSAGEFLAG_TC;
 1952|      0|				msg->buffer->length += msg->reserved;
 1953|      0|				msg->counts[sectionid] += total;
 1954|      0|				return result;
 1955|      0|			}
 1956|      0|			if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (1956:8): [True: 0, False: 0]
  ------------------
 1957|      0|				msg->flags |= DNS_MESSAGEFLAG_TC;
 1958|      0|			}
 1959|      0|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1959:8): [True: 0, False: 0]
  ------------------
 1960|      0|				dns_compress_rollback(msg->cctx, st.used);
 1961|      0|				*(msg->buffer) = st; /* rollback */
 1962|      0|				msg->buffer->length += msg->reserved;
 1963|      0|				msg->counts[sectionid] += total;
 1964|      0|				return result;
 1965|      0|			}
 1966|       |
 1967|      0|			update_min_section_ttl(msg, sectionid, rdataset);
 1968|       |
 1969|      0|			rdataset->attributes.rendered = true;
 1970|      0|		}
 1971|  10.9k|	}
 1972|       |
 1973|  44.2k|	do {
 1974|  44.2k|		name = ISC_LIST_HEAD(*section);
  ------------------
  |  |   62|  44.2k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1975|  44.2k|		if (name == NULL) {
  ------------------
  |  Branch (1975:7): [True: 25.6k, False: 18.6k]
  ------------------
 1976|  25.6k|			msg->buffer->length += msg->reserved;
 1977|  25.6k|			msg->counts[sectionid] += total;
 1978|  25.6k|			return ISC_R_SUCCESS;
 1979|  25.6k|		}
 1980|       |
 1981|   204k|		ISC_LIST_FOREACH(*section, n, link) {
  ------------------
  |  |  234|  18.6k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  18.6k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  18.6k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  18.6k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 18.6k, False: 0]
  |  |  ------------------
  |  |  236|   222k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 204k, False: 18.4k]
  |  |  ------------------
  |  |  237|   204k|	     elt = elt##_next,                                             \
  |  |  238|   204k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|   185k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 185k, False: 18.4k]
  |  |  ------------------
  ------------------
 1982|   245k|			ISC_LIST_FOREACH(n->list, rds, link) {
  ------------------
  |  |  234|   204k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|   204k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|   204k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|   204k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 204k, False: 0]
  |  |  ------------------
  |  |  236|   449k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 245k, False: 204k]
  |  |  ------------------
  |  |  237|   245k|	     elt = elt##_next,                                             \
  |  |  238|   245k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  41.4k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 41.4k, False: 204k]
  |  |  ------------------
  ------------------
 1983|   245k|				if (rds->attributes.rendered) {
  ------------------
  |  Branch (1983:9): [True: 39.9k, False: 205k]
  ------------------
 1984|  39.9k|					continue;
 1985|  39.9k|				}
 1986|       |
 1987|   205k|				if (((options & DNS_MESSAGERENDER_ORDERED) ==
  ------------------
  |  |  215|   205k|#define DNS_MESSAGERENDER_ORDERED    0x0001 /*%< don't change order */
  ------------------
  |  Branch (1987:9): [True: 205k, False: 0]
  ------------------
 1988|   205k|				     0) &&
 1989|   205k|				    (sectionid == DNS_SECTION_ADDITIONAL) &&
  ------------------
  |  Branch (1989:9): [True: 30.4k, False: 175k]
  ------------------
 1990|  30.4k|				    wrong_priority(rds, pass, preferred_glue))
  ------------------
  |  Branch (1990:9): [True: 6.86k, False: 23.6k]
  ------------------
 1991|  6.86k|				{
 1992|  6.86k|					continue;
 1993|  6.86k|				}
 1994|       |
 1995|   198k|				st = *(msg->buffer);
 1996|       |
 1997|   198k|				count = 0;
 1998|   198k|				result = dns_rdataset_towire(
 1999|   198k|					rds, n, msg->id, msg->cctx, msg->buffer,
 2000|   198k|					partial, rd_options, &count);
 2001|       |
 2002|   198k|				total += count;
 2003|       |
 2004|       |				/*
 2005|       |				 * If out of space, record stats on what we
 2006|       |				 * rendered so far, and return that status.
 2007|       |				 *
 2008|       |				 * XXXMLG Need to change this when
 2009|       |				 * dns_rdataset_towire() can render partial
 2010|       |				 * sets starting at some arbitrary point in the
 2011|       |				 * set.  This will include setting a bit in the
 2012|       |				 * rdataset to indicate that a partial
 2013|       |				 * rendering was done, and some state saved
 2014|       |				 * somewhere (probably in the message struct)
 2015|       |				 * to indicate where to continue from.
 2016|       |				 */
 2017|   198k|				if (partial && result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (2017:9): [True: 0, False: 198k]
  |  Branch (2017:20): [True: 0, False: 0]
  ------------------
 2018|      0|					msg->buffer->length += msg->reserved;
 2019|      0|					msg->counts[sectionid] += total;
 2020|      0|					return result;
 2021|      0|				}
 2022|   198k|				if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2022:9): [True: 157, False: 198k]
  ------------------
 2023|    157|					INSIST(st.used < 65536);
  ------------------
  |  |  202|    157|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    157|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 157, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    157|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2024|    157|					dns_compress_rollback(
 2025|    157|						msg->cctx, (uint16_t)st.used);
 2026|    157|					*(msg->buffer) = st; /* rollback */
 2027|    157|					msg->buffer->length += msg->reserved;
 2028|    157|					msg->counts[sectionid] += total;
 2029|    157|					maybe_clear_ad(msg, sectionid);
 2030|    157|					return result;
 2031|    157|				}
 2032|       |
 2033|       |				/*
 2034|       |				 * If we have rendered non-validated data,
 2035|       |				 * ensure that the AD bit is not set.
 2036|       |				 */
 2037|   198k|				if (rds->trust != dns_trust_secure &&
  ------------------
  |  |  376|   397k|#define dns_trust_secure ((dns_trust_t)dns_trust_secure)
  ------------------
  |  Branch (2037:9): [True: 198k, False: 0]
  ------------------
 2038|   198k|				    (sectionid == DNS_SECTION_ANSWER ||
  ------------------
  |  Branch (2038:10): [True: 17.9k, False: 180k]
  ------------------
 2039|   180k|				     sectionid == DNS_SECTION_AUTHORITY))
  ------------------
  |  Branch (2039:10): [True: 16.9k, False: 163k]
  ------------------
 2040|  34.8k|				{
 2041|  34.8k|					msg->flags &= ~DNS_MESSAGEFLAG_AD;
 2042|  34.8k|				}
 2043|   198k|				if (OPTOUT(rds)) {
  ------------------
  |  |  116|   198k|#define OPTOUT(x) (((x)->attributes.optout))
  |  |  ------------------
  |  |  |  Branch (116:19): [True: 0, False: 198k]
  |  |  ------------------
  ------------------
 2044|      0|					msg->flags &= ~DNS_MESSAGEFLAG_AD;
 2045|      0|				}
 2046|       |
 2047|   198k|				update_min_section_ttl(msg, sectionid, rds);
 2048|       |
 2049|   198k|				rds->attributes.rendered = true;
 2050|   198k|			}
 2051|   204k|		}
 2052|  18.6k|	} while (--pass != 0);
  ------------------
  |  Branch (2052:11): [True: 7.65k, False: 10.8k]
  ------------------
 2053|       |
 2054|  10.8k|	msg->buffer->length += msg->reserved;
 2055|  10.8k|	msg->counts[sectionid] += total;
 2056|       |
 2057|  10.8k|	return ISC_R_SUCCESS;
 2058|  36.6k|}
dns_message_renderheader:
 2061|  8.66k|dns_message_renderheader(dns_message_t *msg, isc_buffer_t *target) {
 2062|  8.66k|	uint16_t tmp;
 2063|  8.66k|	isc_region_t r;
 2064|       |
 2065|  8.66k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  8.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.66k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2066|  8.66k|	REQUIRE(msg->buffer != NULL);
  ------------------
  |  |  198|  8.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2067|  8.66k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  8.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2068|       |
 2069|  8.66k|	isc_buffer_availableregion(target, &r);
 2070|  8.66k|	REQUIRE(r.length >= DNS_MESSAGE_HEADERLEN);
  ------------------
  |  |  198|  8.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2071|       |
 2072|  8.66k|	isc_buffer_putuint16(target, msg->id);
 2073|       |
 2074|  8.66k|	tmp = ((msg->opcode << DNS_MESSAGE_OPCODE_SHIFT) &
  ------------------
  |  |   85|  8.66k|#define DNS_MESSAGE_OPCODE_SHIFT      11
  ------------------
 2075|  8.66k|	       DNS_MESSAGE_OPCODE_MASK);
  ------------------
  |  |   84|  8.66k|#define DNS_MESSAGE_OPCODE_MASK	      0x7800U
  ------------------
 2076|  8.66k|	tmp |= (msg->rcode & DNS_MESSAGE_RCODE_MASK);
  ------------------
  |  |   86|  8.66k|#define DNS_MESSAGE_RCODE_MASK	      0x000fU
  ------------------
 2077|  8.66k|	tmp |= (msg->flags & DNS_MESSAGE_FLAG_MASK);
  ------------------
  |  |   87|  8.66k|#define DNS_MESSAGE_FLAG_MASK	      0x8ff0U
  ------------------
 2078|       |
 2079|  8.66k|	INSIST(msg->counts[DNS_SECTION_QUESTION] < 65536 &&
  ------------------
  |  |  202|  8.66k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  52.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 8.66k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 8.66k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 8.66k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 8.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  8.66k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2080|  8.66k|	       msg->counts[DNS_SECTION_ANSWER] < 65536 &&
 2081|  8.66k|	       msg->counts[DNS_SECTION_AUTHORITY] < 65536 &&
 2082|  8.66k|	       msg->counts[DNS_SECTION_ADDITIONAL] < 65536);
 2083|       |
 2084|  8.66k|	isc_buffer_putuint16(target, tmp);
 2085|  8.66k|	isc_buffer_putuint16(target,
 2086|  8.66k|			     (uint16_t)msg->counts[DNS_SECTION_QUESTION]);
 2087|  8.66k|	isc_buffer_putuint16(target, (uint16_t)msg->counts[DNS_SECTION_ANSWER]);
 2088|  8.66k|	isc_buffer_putuint16(target,
 2089|  8.66k|			     (uint16_t)msg->counts[DNS_SECTION_AUTHORITY]);
 2090|  8.66k|	isc_buffer_putuint16(target,
 2091|  8.66k|			     (uint16_t)msg->counts[DNS_SECTION_ADDITIONAL]);
 2092|  8.66k|}
dns_message_renderend:
 2095|  8.67k|dns_message_renderend(dns_message_t *msg) {
 2096|  8.67k|	isc_buffer_t tmpbuf;
 2097|  8.67k|	isc_region_t r;
 2098|  8.67k|	int result;
 2099|  8.67k|	unsigned int count;
 2100|       |
 2101|  8.67k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  8.67k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.67k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.67k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.67k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2102|  8.67k|	REQUIRE(msg->buffer != NULL);
  ------------------
  |  |  198|  8.67k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.67k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.67k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.67k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2103|       |
 2104|  8.67k|	if ((msg->rcode & ~DNS_MESSAGE_RCODE_MASK) != 0 && msg->opt == NULL) {
  ------------------
  |  |   86|  8.67k|#define DNS_MESSAGE_RCODE_MASK	      0x000fU
  ------------------
  |  Branch (2104:6): [True: 1.54k, False: 7.12k]
  |  Branch (2104:53): [True: 0, False: 1.54k]
  ------------------
 2105|       |		/*
 2106|       |		 * We have an extended rcode but are not using EDNS.
 2107|       |		 */
 2108|      0|		return DNS_R_FORMERR;
 2109|      0|	}
 2110|       |
 2111|       |	/*
 2112|       |	 * If we're adding a OPT, TSIG or SIG(0) to a truncated message,
 2113|       |	 * clear all rdatasets from the message except for the question
 2114|       |	 * before adding the OPT, TSIG or SIG(0).  If the question doesn't
 2115|       |	 * fit, don't include it.
 2116|       |	 */
 2117|  8.67k|	if ((msg->tsigkey != NULL || msg->sig0key != NULL || msg->opt) &&
  ------------------
  |  Branch (2117:7): [True: 0, False: 8.67k]
  |  Branch (2117:31): [True: 0, False: 8.67k]
  |  Branch (2117:55): [True: 2.18k, False: 6.48k]
  ------------------
 2118|  2.18k|	    (msg->flags & DNS_MESSAGEFLAG_TC) != 0)
  ------------------
  |  Branch (2118:6): [True: 1.42k, False: 763]
  ------------------
 2119|  1.42k|	{
 2120|  1.42k|		isc_buffer_t *buf;
 2121|       |
 2122|  1.42k|		msgresetnames(msg, DNS_SECTION_ANSWER);
 2123|  1.42k|		buf = msg->buffer;
 2124|  1.42k|		dns_message_renderreset(msg);
 2125|  1.42k|		msg->buffer = buf;
 2126|  1.42k|		isc_buffer_clear(msg->buffer);
 2127|  1.42k|		isc_buffer_add(msg->buffer, DNS_MESSAGE_HEADERLEN);
  ------------------
  |  |  145|  1.42k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
 2128|  1.42k|		dns_compress_rollback(msg->cctx, 0);
 2129|  1.42k|		result = dns_message_rendersection(msg, DNS_SECTION_QUESTION,
 2130|  1.42k|						   0);
 2131|  1.42k|		if (result != ISC_R_SUCCESS && result != ISC_R_NOSPACE) {
  ------------------
  |  Branch (2131:7): [True: 0, False: 1.42k]
  |  Branch (2131:34): [True: 0, False: 0]
  ------------------
 2132|      0|			return result;
 2133|      0|		}
 2134|  1.42k|	}
 2135|       |
 2136|       |	/*
 2137|       |	 * If we've got an OPT record, render it.
 2138|       |	 */
 2139|  8.67k|	if (msg->opt != NULL) {
  ------------------
  |  Branch (2139:6): [True: 2.18k, False: 6.48k]
  ------------------
 2140|  2.18k|		dns_message_renderrelease(msg, msg->opt_reserved);
 2141|  2.18k|		msg->opt_reserved = 0;
 2142|       |		/*
 2143|       |		 * Set the extended rcode.  Cast msg->rcode to dns_ttl_t
 2144|       |		 * so that we do a unsigned shift.
 2145|       |		 */
 2146|  2.18k|		msg->opt->ttl &= ~DNS_MESSAGE_EDNSRCODE_MASK;
  ------------------
  |  |   88|  2.18k|#define DNS_MESSAGE_EDNSRCODE_MASK    0xff000000U
  ------------------
 2147|  2.18k|		msg->opt->ttl |= (((dns_ttl_t)(msg->rcode) << 20) &
 2148|  2.18k|				  DNS_MESSAGE_EDNSRCODE_MASK);
  ------------------
  |  |   88|  2.18k|#define DNS_MESSAGE_EDNSRCODE_MASK    0xff000000U
  ------------------
 2149|       |		/*
 2150|       |		 * Render.
 2151|       |		 */
 2152|  2.18k|		count = 0;
 2153|  2.18k|		result = renderset(msg->opt, dns_rootname, msg->id, msg->cctx,
 2154|  2.18k|				   msg->buffer, msg->reserved, 0, &count);
 2155|  2.18k|		msg->counts[DNS_SECTION_ADDITIONAL] += count;
 2156|  2.18k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2156:7): [True: 3, False: 2.18k]
  ------------------
 2157|      3|			return result;
 2158|      3|		}
 2159|  2.18k|	}
 2160|       |
 2161|       |	/*
 2162|       |	 * Deal with EDNS padding.
 2163|       |	 *
 2164|       |	 * padding_off is the length of the OPT with the 0-length PAD
 2165|       |	 * at the end.
 2166|       |	 */
 2167|  8.66k|	if (msg->padding_off > 0) {
  ------------------
  |  Branch (2167:6): [True: 0, False: 8.66k]
  ------------------
 2168|      0|		unsigned char *cp = isc_buffer_used(msg->buffer);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 2169|      0|		unsigned int used, remaining;
 2170|      0|		uint16_t len, padsize = 0;
 2171|       |
 2172|       |		/* Check PAD */
 2173|      0|		if ((cp[-4] != 0) || (cp[-3] != DNS_OPT_PAD) || (cp[-2] != 0) ||
  ------------------
  |  Branch (2173:7): [True: 0, False: 0]
  |  Branch (2173:24): [True: 0, False: 0]
  |  Branch (2173:51): [True: 0, False: 0]
  ------------------
 2174|      0|		    (cp[-1] != 0))
  ------------------
  |  Branch (2174:7): [True: 0, False: 0]
  ------------------
 2175|      0|		{
 2176|      0|			return ISC_R_UNEXPECTED;
 2177|      0|		}
 2178|       |
 2179|       |		/*
 2180|       |		 * Zero-fill the PAD to the computed size;
 2181|       |		 * patch PAD length and OPT rdlength
 2182|       |		 */
 2183|       |
 2184|       |		/* Aligned used length + reserved to padding block */
 2185|      0|		used = isc_buffer_usedlength(msg->buffer);
  ------------------
  |  |  157|      0|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 2186|      0|		if (msg->padding != 0) {
  ------------------
  |  Branch (2186:7): [True: 0, False: 0]
  ------------------
 2187|      0|			padsize = ((uint16_t)used + msg->reserved) %
 2188|      0|				  msg->padding;
 2189|      0|		}
 2190|      0|		if (padsize != 0) {
  ------------------
  |  Branch (2190:7): [True: 0, False: 0]
  ------------------
 2191|      0|			padsize = msg->padding - padsize;
 2192|      0|		}
 2193|       |		/* Stay below the available length */
 2194|      0|		remaining = isc_buffer_availablelength(msg->buffer);
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
 2195|      0|		if (padsize > remaining) {
  ------------------
  |  Branch (2195:7): [True: 0, False: 0]
  ------------------
 2196|      0|			padsize = remaining;
 2197|      0|		}
 2198|       |
 2199|      0|		isc_buffer_add(msg->buffer, padsize);
 2200|      0|		memset(cp, 0, padsize);
 2201|      0|		cp[-2] = (unsigned char)((padsize & 0xff00U) >> 8);
 2202|      0|		cp[-1] = (unsigned char)(padsize & 0x00ffU);
 2203|      0|		cp -= msg->padding_off;
 2204|      0|		len = ((uint16_t)(cp[-2])) << 8;
 2205|      0|		len |= ((uint16_t)(cp[-1]));
 2206|      0|		len += padsize;
 2207|      0|		cp[-2] = (unsigned char)((len & 0xff00U) >> 8);
 2208|      0|		cp[-1] = (unsigned char)(len & 0x00ffU);
 2209|      0|	}
 2210|       |
 2211|       |	/*
 2212|       |	 * If we're adding a TSIG record, generate and render it.
 2213|       |	 */
 2214|  8.66k|	if (msg->tsigkey != NULL) {
  ------------------
  |  Branch (2214:6): [True: 0, False: 8.66k]
  ------------------
 2215|      0|		dns_message_renderrelease(msg, msg->sig_reserved);
 2216|      0|		msg->sig_reserved = 0;
 2217|      0|		RETERR(dns_tsig_sign(msg));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 2218|      0|		count = 0;
 2219|      0|		result = renderset(msg->tsig, msg->tsigname, msg->id, msg->cctx,
 2220|      0|				   msg->buffer, msg->reserved, 0, &count);
 2221|      0|		msg->counts[DNS_SECTION_ADDITIONAL] += count;
 2222|      0|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2222:7): [True: 0, False: 0]
  ------------------
 2223|      0|			return result;
 2224|      0|		}
 2225|      0|	}
 2226|       |
 2227|       |	/*
 2228|       |	 * If we're adding a SIG(0) record, generate and render it.
 2229|       |	 */
 2230|  8.66k|	if (msg->sig0key != NULL) {
  ------------------
  |  Branch (2230:6): [True: 0, False: 8.66k]
  ------------------
 2231|      0|		dns_message_renderrelease(msg, msg->sig_reserved);
 2232|      0|		msg->sig_reserved = 0;
 2233|      0|		RETERR(dns_dnssec_signmessage(msg, msg->sig0key));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 2234|      0|		count = 0;
 2235|       |		/*
 2236|       |		 * Note: dns_rootname is used here, not msg->sig0name, since
 2237|       |		 * the owner name of a SIG(0) is irrelevant, and will not
 2238|       |		 * be set in a message being rendered.
 2239|       |		 */
 2240|      0|		result = renderset(msg->sig0, dns_rootname, msg->id, msg->cctx,
 2241|      0|				   msg->buffer, msg->reserved, 0, &count);
 2242|      0|		msg->counts[DNS_SECTION_ADDITIONAL] += count;
 2243|      0|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2243:7): [True: 0, False: 0]
  ------------------
 2244|      0|			return result;
 2245|      0|		}
 2246|      0|	}
 2247|       |
 2248|  8.66k|	isc_buffer_usedregion(msg->buffer, &r);
 2249|  8.66k|	isc_buffer_init(&tmpbuf, r.base, r.length);
 2250|       |
 2251|  8.66k|	dns_message_renderheader(msg, &tmpbuf);
 2252|       |
 2253|  8.66k|	msg->buffer = NULL; /* forget about this buffer only on success XXX */
 2254|       |
 2255|  8.66k|	return ISC_R_SUCCESS;
 2256|  8.66k|}
dns_message_renderreset:
 2259|  1.42k|dns_message_renderreset(dns_message_t *msg) {
 2260|       |	/*
 2261|       |	 * Reset the message so that it may be rendered again.
 2262|       |	 */
 2263|       |
 2264|  1.42k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  1.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.84k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.42k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2265|  1.42k|	REQUIRE(msg->from_to_wire == DNS_MESSAGE_INTENTRENDER);
  ------------------
  |  |  198|  1.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.42k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2266|       |
 2267|  1.42k|	msg->buffer = NULL;
 2268|       |
 2269|  7.12k|	for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (2269:21): [True: 5.69k, False: 1.42k]
  ------------------
 2270|  5.69k|		msg->cursors[i] = NULL;
 2271|  5.69k|		msg->counts[i] = 0;
 2272|  5.69k|		MSG_SECTION_FOREACH(msg, i, name) {
  ------------------
  |  |  228|  5.69k|        for (dns_name_t *elt = ISC_LIST_HEAD((msg)->sections[(section)]); \
  |  |  ------------------
  |  |  |  |   62|  5.69k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  229|  7.13k|             elt != NULL;                                                 \
  |  |  ------------------
  |  |  |  Branch (229:14): [True: 1.43k, False: 5.69k]
  |  |  ------------------
  |  |  230|  5.69k|             elt = ISC_LIST_NEXT(elt, link))
  |  |  ------------------
  |  |  |  |  140|  1.43k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  ------------------
 2273|  1.43k|			ISC_LIST_FOREACH(name->list, rds, link) {
  ------------------
  |  |  234|  1.43k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  1.43k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  1.43k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  1.43k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 1.43k, False: 0]
  |  |  ------------------
  |  |  236|  2.87k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 1.43k, False: 1.43k]
  |  |  ------------------
  |  |  237|  1.43k|	     elt = elt##_next,                                             \
  |  |  238|  1.43k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 0, False: 1.43k]
  |  |  ------------------
  ------------------
 2274|  1.43k|				rds->attributes.rendered = false;
 2275|  1.43k|			}
 2276|  1.43k|		}
 2277|  5.69k|	}
 2278|  1.42k|	if (msg->tsigname != NULL) {
  ------------------
  |  Branch (2278:6): [True: 3, False: 1.42k]
  ------------------
 2279|      3|		dns_message_puttempname(msg, &msg->tsigname);
 2280|      3|	}
 2281|  1.42k|	if (msg->tsig != NULL) {
  ------------------
  |  Branch (2281:6): [True: 3, False: 1.42k]
  ------------------
 2282|      3|		dns__message_putassociatedrdataset(msg, &msg->tsig);
 2283|      3|	}
 2284|  1.42k|	if (msg->sig0name != NULL) {
  ------------------
  |  Branch (2284:6): [True: 2, False: 1.42k]
  ------------------
 2285|      2|		dns_message_puttempname(msg, &msg->sig0name);
 2286|      2|	}
 2287|  1.42k|	if (msg->sig0 != NULL) {
  ------------------
  |  Branch (2287:6): [True: 2, False: 1.42k]
  ------------------
 2288|      2|		dns__message_putassociatedrdataset(msg, &msg->sig0);
 2289|      2|	}
 2290|  1.42k|}
dns_message_gettempname:
 2405|   467k|dns_message_gettempname(dns_message_t *msg, dns_name_t **item) {
 2406|   467k|	dns_fixedname_t *fn = NULL;
 2407|       |
 2408|   467k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   934k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2409|   467k|	REQUIRE(item != NULL && *item == NULL);
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   934k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2410|       |
 2411|   467k|	fn = isc_mempool_get(msg->namepool);
  ------------------
  |  |  145|   467k|#define isc_mempool_get(c)   isc__mempool_get((c)_ISC_MEM_FILELINE)
  ------------------
 2412|   467k|	*item = dns_fixedname_initname(fn);
 2413|   467k|}
dns_message_gettemprdataset:
 2424|   462k|dns_message_gettemprdataset(dns_message_t *msg, dns_rdataset_t **item) {
 2425|   462k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   925k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2426|   462k|	REQUIRE(item != NULL && *item == NULL);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   925k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2427|       |
 2428|   462k|	*item = isc_mempool_get(msg->rdspool);
  ------------------
  |  |  145|   462k|#define isc_mempool_get(c)   isc__mempool_get((c)_ISC_MEM_FILELINE)
  ------------------
 2429|   462k|	dns_rdataset_init(*item);
 2430|   462k|}
dns_message_puttempname:
 2441|   467k|dns_message_puttempname(dns_message_t *msg, dns_name_t **itemp) {
 2442|   467k|	dns_name_t *item = NULL;
 2443|       |
 2444|   467k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   934k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2445|   467k|	REQUIRE(itemp != NULL && *itemp != NULL);
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   934k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2446|       |
 2447|   467k|	item = *itemp;
 2448|   467k|	*itemp = NULL;
 2449|       |
 2450|   467k|	REQUIRE(!ISC_LINK_LINKED(item, link));
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   467k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2451|   467k|	REQUIRE(ISC_LIST_HEAD(item->list) == NULL);
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   467k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2452|       |
 2453|   467k|	if (item->hashmap != NULL) {
  ------------------
  |  Branch (2453:6): [True: 0, False: 467k]
  ------------------
 2454|      0|		isc_hashmap_destroy(&item->hashmap);
 2455|      0|	}
 2456|       |
 2457|       |	/*
 2458|       |	 * we need to check this in case dns_name_dup() was used.
 2459|       |	 */
 2460|   467k|	if (dns_name_dynamic(item)) {
  ------------------
  |  Branch (2460:6): [True: 0, False: 467k]
  ------------------
 2461|      0|		dns_name_free(item, msg->mctx);
 2462|      0|	}
 2463|       |
 2464|       |	/*
 2465|       |	 * 'name' is the first field in dns_fixedname_t, so putting
 2466|       |	 * back the address of name is the same as putting back
 2467|       |	 * the fixedname.
 2468|       |	 */
 2469|       |	isc_mempool_put(msg->namepool, item);
  ------------------
  |  |  169|   467k|	do {                                                 \
  |  |  170|   467k|		isc__mempool_put((c), (p)_ISC_MEM_FILELINE); \
  |  |  171|   467k|		(p) = NULL;                                  \
  |  |  172|   467k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (172:11): [Folded, False: 467k]
  |  |  ------------------
  ------------------
 2470|   467k|}
dns_message_puttemprdataset:
 2488|   462k|dns_message_puttemprdataset(dns_message_t *msg, dns_rdataset_t **item) {
 2489|   462k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   925k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2490|   462k|	REQUIRE(item != NULL && *item != NULL);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   925k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2491|       |
 2492|   462k|	REQUIRE(!dns_rdataset_isassociated(*item));
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2493|       |	isc_mempool_put(msg->rdspool, *item);
  ------------------
  |  |  169|   462k|	do {                                                 \
  |  |  170|   462k|		isc__mempool_put((c), (p)_ISC_MEM_FILELINE); \
  |  |  171|   462k|		(p) = NULL;                                  \
  |  |  172|   462k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (172:11): [Folded, False: 462k]
  |  |  ------------------
  ------------------
 2494|   462k|}
dns_message_getopt:
 2604|  17.5k|dns_message_getopt(dns_message_t *msg) {
 2605|       |	/*
 2606|       |	 * Get the OPT record for 'msg'.
 2607|       |	 */
 2608|       |
 2609|  17.5k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2610|       |
 2611|  17.5k|	return msg->opt;
 2612|  17.5k|}
dns_message_gettsig:
 2665|  17.4k|dns_message_gettsig(dns_message_t *msg, const dns_name_t **owner) {
 2666|       |	/*
 2667|       |	 * Get the TSIG record and owner for 'msg'.
 2668|       |	 */
 2669|       |
 2670|  17.4k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  34.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2671|  17.4k|	REQUIRE(owner == NULL || *owner == NULL);
  ------------------
  |  |  198|  17.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  34.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 17.4k]
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2672|       |
 2673|       |	SET_IF_NOT_NULL(owner, msg->tsigname);
  ------------------
  |  |  104|  17.4k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 17.4k, False: 0]
  |  |  ------------------
  |  |  105|  17.4k|		*(obj) = (val);   \
  |  |  106|  17.4k|	}
  ------------------
 2674|  17.4k|	return msg->tsig;
 2675|  17.4k|}
dns_message_getsig0:
 2778|  17.4k|dns_message_getsig0(dns_message_t *msg, const dns_name_t **owner) {
 2779|       |	/*
 2780|       |	 * Get the SIG(0) record for 'msg'.
 2781|       |	 */
 2782|       |
 2783|  17.4k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  34.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2784|  17.4k|	REQUIRE(owner == NULL || *owner == NULL);
  ------------------
  |  |  198|  17.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  34.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 17.4k]
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2785|       |
 2786|  17.4k|	if (msg->sig0 != NULL && owner != NULL) {
  ------------------
  |  Branch (2786:6): [True: 80, False: 17.4k]
  |  Branch (2786:27): [True: 80, False: 0]
  ------------------
 2787|       |		/* If dns_message_getsig0 is called on a rendered message
 2788|       |		 * after the SIG(0) has been applied, we need to return the
 2789|       |		 * root name, not NULL.
 2790|       |		 */
 2791|     80|		if (msg->sig0name == NULL) {
  ------------------
  |  Branch (2791:7): [True: 0, False: 80]
  ------------------
 2792|      0|			*owner = dns_rootname;
 2793|     80|		} else {
 2794|     80|			*owner = msg->sig0name;
 2795|     80|		}
 2796|     80|	}
 2797|  17.4k|	return msg->sig0;
 2798|  17.4k|}
dns_message_sectiontotext:
 3207|  70.0k|			  dns_messagetextflag_t flags, isc_buffer_t *target) {
 3208|  70.0k|	dns_name_t empty_name;
 3209|  70.0k|	isc_result_t result = ISC_R_SUCCESS;
 3210|  70.0k|	bool seensoa = false;
 3211|  70.0k|	size_t saved_count;
 3212|  70.0k|	dns_masterstyle_flags_t sflags;
 3213|       |
 3214|  70.0k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  70.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   140k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 70.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 70.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  70.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 3215|  70.0k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  70.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  70.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 70.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  70.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 3216|  70.0k|	REQUIRE(VALID_NAMED_SECTION(section));
  ------------------
  |  |  198|  70.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   140k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 70.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 70.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  70.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 3217|       |
 3218|  70.0k|	saved_count = msg->indent.count;
 3219|       |
 3220|  70.0k|	if (ISC_LIST_EMPTY(msg->sections[section])) {
  ------------------
  |  |   64|  70.0k|#define ISC_LIST_EMPTY(list) ((list).head == NULL)
  |  |  ------------------
  |  |  |  Branch (64:30): [True: 49.8k, False: 20.1k]
  |  |  ------------------
  ------------------
 3221|  49.8k|		goto cleanup;
 3222|  49.8k|	}
 3223|       |
 3224|  20.1k|	sflags = dns_master_styleflags(style);
 3225|       |
 3226|  20.1k|	INDENT(style);
  ------------------
  |  | 3191|  20.1k|	do {                                                                 \
  |  | 3192|  20.1k|		unsigned int __i;                                            \
  |  | 3193|  20.1k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  20.1k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  20.1k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 20.1k, False: 0]
  |  |  ------------------
  |  | 3195|  20.1k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  20.1k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 20.1k, False: 0]
  |  |  ------------------
  |  | 3196|  20.1k|		{                                                            \
  |  | 3197|  20.1k|			break;                                               \
  |  | 3198|  20.1k|		}                                                            \
  |  | 3199|  20.1k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3227|  20.1k|	if ((sflags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  20.1k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3227:6): [True: 0, False: 20.1k]
  ------------------
 3228|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (3228:7): [True: 0, False: 0]
  ------------------
 3229|      0|			ADD_STRING(target, sectiontext[section]);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3230|      0|		} else {
 3231|      0|			ADD_STRING(target, updsectiontext[section]);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3232|      0|		}
 3233|      0|		ADD_STRING(target, "_SECTION:\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3234|  20.1k|	} else if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (3234:13): [True: 20.1k, False: 0]
  ------------------
 3235|  20.1k|		ADD_STRING(target, ";; ");
  ------------------
  |  |   97|  20.1k|	{                                                         \
  |  |   98|  20.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  20.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 20.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  20.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  20.1k|	}
  ------------------
 3236|  20.1k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (3236:7): [True: 17.4k, False: 2.65k]
  ------------------
 3237|  17.4k|			ADD_STRING(target, sectiontext[section]);
  ------------------
  |  |   97|  17.4k|	{                                                         \
  |  |   98|  17.4k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.4k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.4k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.4k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.4k|	}
  ------------------
 3238|  17.4k|		} else {
 3239|  2.65k|			ADD_STRING(target, updsectiontext[section]);
  ------------------
  |  |   97|  2.65k|	{                                                         \
  |  |   98|  2.65k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.65k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.65k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.65k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.65k|	}
  ------------------
 3240|  2.65k|		}
 3241|  20.1k|		ADD_STRING(target, " SECTION:\n");
  ------------------
  |  |   97|  20.1k|	{                                                         \
  |  |   98|  20.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  20.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 20.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  20.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  20.1k|	}
  ------------------
 3242|  20.1k|	}
 3243|       |
 3244|  20.1k|	dns_name_init(&empty_name);
 3245|  20.1k|	if (ISC_LIST_EMPTY(msg->sections[section])) {
  ------------------
  |  |   64|  20.1k|#define ISC_LIST_EMPTY(list) ((list).head == NULL)
  |  |  ------------------
  |  |  |  Branch (64:30): [True: 0, False: 20.1k]
  |  |  ------------------
  ------------------
 3246|      0|		goto cleanup;
 3247|      0|	}
 3248|  20.1k|	bool has_yaml = (sflags & DNS_STYLEFLAG_YAML) != 0;
  ------------------
  |  |  107|  20.1k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
 3249|  20.1k|	msg->indent.count += has_yaml;
 3250|       |
 3251|   237k|	MSG_SECTION_FOREACH(msg, section, name) {
  ------------------
  |  |  228|  20.1k|        for (dns_name_t *elt = ISC_LIST_HEAD((msg)->sections[(section)]); \
  |  |  ------------------
  |  |  |  |   62|  20.1k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  229|   257k|             elt != NULL;                                                 \
  |  |  ------------------
  |  |  |  Branch (229:14): [True: 237k, False: 20.0k]
  |  |  ------------------
  |  |  230|   237k|             elt = ISC_LIST_NEXT(elt, link))
  |  |  ------------------
  |  |  |  |  140|   237k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  ------------------
 3252|   285k|		ISC_LIST_FOREACH(name->list, rds, link) {
  ------------------
  |  |  234|   237k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|   237k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|   237k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|   237k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 237k, False: 0]
  |  |  ------------------
  |  |  236|   522k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 285k, False: 237k]
  |  |  ------------------
  |  |  237|   285k|	     elt = elt##_next,                                             \
  |  |  238|   285k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  47.9k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 47.9k, False: 237k]
  |  |  ------------------
  ------------------
 3253|   285k|			if (section == DNS_SECTION_ANSWER &&
  ------------------
  |  Branch (3253:8): [True: 34.8k, False: 250k]
  ------------------
 3254|  34.8k|			    rds->type == dns_rdatatype_soa)
  ------------------
  |  |  120|  34.8k|#define dns_rdatatype_soa	((dns_rdatatype_t)dns_rdatatype_soa)
  ------------------
  |  Branch (3254:8): [True: 893, False: 33.9k]
  ------------------
 3255|    893|			{
 3256|    893|				if ((flags & DNS_MESSAGETEXTFLAG_OMITSOA) != 0)
  ------------------
  |  Branch (3256:9): [True: 0, False: 893]
  ------------------
 3257|      0|				{
 3258|      0|					continue;
 3259|      0|				}
 3260|    893|				if (seensoa &&
  ------------------
  |  Branch (3260:9): [True: 752, False: 141]
  ------------------
 3261|    752|				    (flags & DNS_MESSAGETEXTFLAG_ONESOA) != 0)
  ------------------
  |  Branch (3261:9): [True: 0, False: 752]
  ------------------
 3262|      0|				{
 3263|      0|					continue;
 3264|      0|				}
 3265|    893|				seensoa = true;
 3266|    893|			}
 3267|   285k|			if (section == DNS_SECTION_QUESTION) {
  ------------------
  |  Branch (3267:8): [True: 169k, False: 115k]
  ------------------
 3268|   169k|				INDENT(style);
  ------------------
  |  | 3191|   169k|	do {                                                                 \
  |  | 3192|   169k|		unsigned int __i;                                            \
  |  | 3193|   169k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|   169k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|   169k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 169k, False: 0]
  |  |  ------------------
  |  | 3195|   169k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|   169k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 169k, False: 0]
  |  |  ------------------
  |  | 3196|   169k|		{                                                            \
  |  | 3197|   169k|			break;                                               \
  |  | 3198|   169k|		}                                                            \
  |  | 3199|   169k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3269|   169k|				if ((sflags & DNS_STYLEFLAG_YAML) == 0) {
  ------------------
  |  |  107|   169k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3269:9): [True: 169k, False: 0]
  ------------------
 3270|   169k|					ADD_STRING(target, ";");
  ------------------
  |  |   97|   169k|	{                                                         \
  |  |   98|   169k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   169k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   169k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   169k|	}
  ------------------
 3271|   169k|				}
 3272|   169k|				result = dns_master_questiontotext(
 3273|   169k|					name, rds, style, target);
 3274|   169k|			} else {
 3275|   115k|				result = dns_master_rdatasettotext(
 3276|   115k|					name, rds, style, &msg->indent, target);
 3277|   115k|			}
 3278|   285k|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (3278:8): [True: 10, False: 285k]
  ------------------
 3279|     10|				goto cleanup;
 3280|     10|			}
 3281|   285k|		}
 3282|   237k|	}
 3283|  20.0k|	msg->indent.count -= has_yaml;
 3284|       |
 3285|  20.0k|	if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) == 0 &&
  ------------------
  |  Branch (3285:6): [True: 20.0k, False: 0]
  ------------------
 3286|  20.0k|	    (flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0 &&
  ------------------
  |  Branch (3286:6): [True: 20.0k, False: 0]
  ------------------
 3287|  20.0k|	    (sflags & DNS_STYLEFLAG_YAML) == 0)
  ------------------
  |  |  107|  20.0k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3287:6): [True: 20.0k, False: 0]
  ------------------
 3288|  20.0k|	{
 3289|  20.0k|		INDENT(style);
  ------------------
  |  | 3191|  20.0k|	do {                                                                 \
  |  | 3192|  20.0k|		unsigned int __i;                                            \
  |  | 3193|  20.0k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  20.0k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  20.0k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 20.0k, False: 0]
  |  |  ------------------
  |  | 3195|  20.0k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  20.0k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 20.0k, False: 0]
  |  |  ------------------
  |  | 3196|  20.0k|		{                                                            \
  |  | 3197|  20.0k|			break;                                               \
  |  | 3198|  20.0k|		}                                                            \
  |  | 3199|  20.0k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3290|  20.0k|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|  20.0k|	{                                                         \
  |  |   98|  20.0k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  20.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 2, False: 20.0k]
  |  |  ------------------
  |  |   99|      2|			result = ISC_R_NOSPACE;                   \
  |  |  100|      2|			goto cleanup;                             \
  |  |  101|      2|		} else                                            \
  |  |  102|  20.0k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  20.0k|	}
  ------------------
 3291|  20.0k|	}
 3292|       |
 3293|  70.0k|cleanup:
 3294|  70.0k|	msg->indent.count = saved_count;
 3295|  70.0k|	return result;
 3296|  20.0k|}
dns_message_pseudosectiontotext:
 4045|  52.4k|				isc_buffer_t *target) {
 4046|  52.4k|	dns_rdataset_t *ps = NULL;
 4047|  52.4k|	const dns_name_t *name = NULL;
 4048|  52.4k|	isc_result_t result;
 4049|  52.4k|	char buf[sizeof(" (65000 bytes)")];
 4050|  52.4k|	uint32_t mbz;
 4051|  52.4k|	dns_rdata_t rdata;
 4052|  52.4k|	isc_buffer_t optbuf;
 4053|  52.4k|	uint16_t optcode, optlen;
 4054|  52.4k|	unsigned char *optdata = NULL;
 4055|  52.4k|	isc_buffer_t ecsbuf;
 4056|       |
 4057|  52.4k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  52.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   104k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 52.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 52.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  52.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4058|  52.4k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  52.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  52.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 52.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  52.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4059|  52.4k|	REQUIRE(VALID_NAMED_PSEUDOSECTION(section));
  ------------------
  |  |  198|  52.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   104k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 52.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 52.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  52.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4060|       |
 4061|  52.4k|	if ((dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  52.4k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (4061:6): [True: 0, False: 52.4k]
  ------------------
 4062|      0|		return dns_message_pseudosectiontoyaml(msg, section, style,
 4063|      0|						       flags, target);
 4064|      0|	}
 4065|       |
 4066|  52.4k|	switch (section) {
 4067|  17.5k|	case DNS_PSEUDOSECTION_OPT:
  ------------------
  |  Branch (4067:2): [True: 17.5k, False: 34.9k]
  ------------------
 4068|  17.5k|		ps = dns_message_getopt(msg);
 4069|  17.5k|		if (ps == NULL) {
  ------------------
  |  Branch (4069:7): [True: 13.1k, False: 4.37k]
  ------------------
 4070|  13.1k|			return ISC_R_SUCCESS;
 4071|  13.1k|		}
 4072|  4.37k|		if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (4072:7): [True: 4.37k, False: 0]
  ------------------
 4073|  4.37k|			INDENT(style);
  ------------------
  |  | 3191|  4.37k|	do {                                                                 \
  |  | 3192|  4.37k|		unsigned int __i;                                            \
  |  | 3193|  4.37k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  4.37k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  4.37k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 4.37k, False: 0]
  |  |  ------------------
  |  | 3195|  4.37k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  4.37k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 4.37k, False: 0]
  |  |  ------------------
  |  | 3196|  4.37k|		{                                                            \
  |  | 3197|  4.37k|			break;                                               \
  |  | 3198|  4.37k|		}                                                            \
  |  | 3199|  4.37k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4074|  4.37k|			ADD_STRING(target, ";; OPT PSEUDOSECTION:\n");
  ------------------
  |  |   97|  4.37k|	{                                                         \
  |  |   98|  4.37k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.37k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.37k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.37k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.37k|	}
  ------------------
 4075|  4.37k|		}
 4076|       |
 4077|  4.37k|		INDENT(style);
  ------------------
  |  | 3191|  4.37k|	do {                                                                 \
  |  | 3192|  4.37k|		unsigned int __i;                                            \
  |  | 3193|  4.37k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  4.37k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  4.37k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 4.37k, False: 0]
  |  |  ------------------
  |  | 3195|  4.37k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  4.37k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 4.37k, False: 0]
  |  |  ------------------
  |  | 3196|  4.37k|		{                                                            \
  |  | 3197|  4.37k|			break;                                               \
  |  | 3198|  4.37k|		}                                                            \
  |  | 3199|  4.37k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4078|  4.37k|		ADD_STRING(target, "; EDNS: version: ");
  ------------------
  |  |   97|  4.37k|	{                                                         \
  |  |   98|  4.37k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.37k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.37k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.37k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.37k|	}
  ------------------
 4079|  4.37k|		snprintf(buf, sizeof(buf), "%u",
 4080|  4.37k|			 (unsigned int)((ps->ttl & 0x00ff0000) >> 16));
 4081|  4.37k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  4.37k|	{                                                         \
  |  |   98|  4.37k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.37k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.37k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.37k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.37k|	}
  ------------------
 4082|  4.37k|		ADD_STRING(target, ", flags:");
  ------------------
  |  |   97|  4.37k|	{                                                         \
  |  |   98|  4.37k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.37k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.37k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.37k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.37k|	}
  ------------------
 4083|  4.37k|		if ((ps->ttl & DNS_MESSAGEEXTFLAG_DO) != 0) {
  ------------------
  |  Branch (4083:7): [True: 1.08k, False: 3.29k]
  ------------------
 4084|  1.08k|			ADD_STRING(target, " do");
  ------------------
  |  |   97|  1.08k|	{                                                         \
  |  |   98|  1.08k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.08k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.08k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.08k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.08k|	}
  ------------------
 4085|  1.08k|		}
 4086|  4.37k|		if ((ps->ttl & DNS_MESSAGEEXTFLAG_CO) != 0) {
  ------------------
  |  Branch (4086:7): [True: 1.17k, False: 3.20k]
  ------------------
 4087|  1.17k|			ADD_STRING(target, " co");
  ------------------
  |  |   97|  1.17k|	{                                                         \
  |  |   98|  1.17k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.17k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.17k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.17k|	}
  ------------------
 4088|  1.17k|		}
 4089|  4.37k|		mbz = ps->ttl & 0xffff;
 4090|       |		/* Exclude Known Flags. */
 4091|  4.37k|		mbz &= ~(DNS_MESSAGEEXTFLAG_DO | DNS_MESSAGEEXTFLAG_CO);
 4092|  4.37k|		if (mbz != 0) {
  ------------------
  |  Branch (4092:7): [True: 3.53k, False: 849]
  ------------------
 4093|  3.53k|			ADD_STRING(target, "; MBZ: ");
  ------------------
  |  |   97|  3.53k|	{                                                         \
  |  |   98|  3.53k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.53k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.53k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.53k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.53k|	}
  ------------------
 4094|  3.53k|			snprintf(buf, sizeof(buf), "0x%.4x", mbz);
 4095|  3.53k|			ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.53k|	{                                                         \
  |  |   98|  3.53k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.53k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.53k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.53k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.53k|	}
  ------------------
 4096|  3.53k|			ADD_STRING(target, ", udp: ");
  ------------------
  |  |   97|  3.53k|	{                                                         \
  |  |   98|  3.53k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.53k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.53k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.53k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.53k|	}
  ------------------
 4097|  3.53k|		} else {
 4098|    849|			ADD_STRING(target, "; udp: ");
  ------------------
  |  |   97|    849|	{                                                         \
  |  |   98|    849|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    849|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 849]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    849|			isc_buffer_putstr(b, s);                  \
  |  |  103|    849|	}
  ------------------
 4099|    849|		}
 4100|  4.37k|		snprintf(buf, sizeof(buf), "%u\n", (unsigned int)ps->rdclass);
 4101|  4.37k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  4.37k|	{                                                         \
  |  |   98|  4.37k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.37k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.37k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.37k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.37k|	}
  ------------------
 4102|       |
 4103|  4.37k|		result = dns_rdataset_first(ps);
 4104|  4.37k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (4104:7): [True: 0, False: 4.37k]
  ------------------
 4105|      0|			return ISC_R_SUCCESS;
 4106|      0|		}
 4107|       |
 4108|       |		/*
 4109|       |		 * Print EDNS info, if any.
 4110|       |		 *
 4111|       |		 * WARNING: The option contents may be malformed as
 4112|       |		 * dig +ednsopt=value:<content> does no validity
 4113|       |		 * checking.
 4114|       |		 */
 4115|  4.37k|		dns_rdata_init(&rdata);
 4116|  4.37k|		dns_rdataset_current(ps, &rdata);
 4117|       |
 4118|  4.37k|		isc_buffer_init(&optbuf, rdata.data, rdata.length);
 4119|  4.37k|		isc_buffer_add(&optbuf, rdata.length);
 4120|   390k|		while (isc_buffer_remaininglength(&optbuf) != 0) {
  ------------------
  |  |  159|   390k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (4120:10): [True: 385k, False: 4.37k]
  ------------------
 4121|   385k|			const char *option_name = NULL;
 4122|       |
 4123|   385k|			INSIST(isc_buffer_remaininglength(&optbuf) >= 4U);
  ------------------
  |  |  202|   385k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   385k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 385k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   385k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 4124|   385k|			optcode = isc_buffer_getuint16(&optbuf);
 4125|   385k|			optlen = isc_buffer_getuint16(&optbuf);
 4126|       |
 4127|   385k|			INSIST(isc_buffer_remaininglength(&optbuf) >= optlen);
  ------------------
  |  |  202|   385k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   385k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 385k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   385k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 4128|       |
 4129|   385k|			INDENT(style);
  ------------------
  |  | 3191|   385k|	do {                                                                 \
  |  | 3192|   385k|		unsigned int __i;                                            \
  |  | 3193|   385k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|   385k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|   385k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 385k, False: 0]
  |  |  ------------------
  |  | 3195|   385k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|   385k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 385k, False: 0]
  |  |  ------------------
  |  | 3196|   385k|		{                                                            \
  |  | 3197|   385k|			break;                                               \
  |  | 3198|   385k|		}                                                            \
  |  | 3199|   385k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4130|   385k|			ADD_STRING(target, "; ");
  ------------------
  |  |   97|   385k|	{                                                         \
  |  |   98|   385k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   385k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 385k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   385k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   385k|	}
  ------------------
 4131|   385k|			if (optcode < ARRAY_SIZE(option_names)) {
  ------------------
  |  |   98|   385k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (4131:8): [True: 304k, False: 81.6k]
  ------------------
 4132|   304k|				option_name = option_names[optcode];
 4133|   304k|			}
 4134|   385k|			if (option_name != NULL) {
  ------------------
  |  Branch (4134:8): [True: 110k, False: 275k]
  ------------------
 4135|   110k|				ADD_STRING(target, option_names[optcode])
  ------------------
  |  |   97|   110k|	{                                                         \
  |  |   98|   110k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   110k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 110k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   110k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   110k|	}
  ------------------
 4136|   275k|			} else {
 4137|   275k|				snprintf(buf, sizeof(buf), "OPT=%u", optcode);
 4138|   275k|				ADD_STRING(target, buf);
  ------------------
  |  |   97|   275k|	{                                                         \
  |  |   98|   275k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   275k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 1, False: 275k]
  |  |  ------------------
  |  |   99|      1|			result = ISC_R_NOSPACE;                   \
  |  |  100|      1|			goto cleanup;                             \
  |  |  101|      1|		} else                                            \
  |  |  102|   275k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   275k|	}
  ------------------
 4139|   275k|			}
 4140|   385k|			ADD_STRING(target, ":");
  ------------------
  |  |   97|   385k|	{                                                         \
  |  |   98|   385k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   385k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 385k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   385k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   385k|	}
  ------------------
 4141|       |
 4142|   385k|			switch (optcode) {
 4143|  3.14k|			case DNS_OPT_LLQ:
  ------------------
  |  Branch (4143:4): [True: 3.14k, False: 382k]
  ------------------
 4144|  3.14k|				if (optlen == 18U) {
  ------------------
  |  Branch (4144:9): [True: 3.14k, False: 0]
  ------------------
 4145|  3.14k|					RETERR(render_llq(&optbuf, msg, style,
  ------------------
  |  |  276|  3.14k|	{                                  \
  |  |  277|  3.14k|		isc_result_t _r = (x);     \
  |  |  278|  3.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.14k|	}
  ------------------
 4146|  3.14k|							  target));
 4147|  3.14k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 4148|  3.14k|					continue;
 4149|  3.14k|				}
 4150|      0|				break;
 4151|  11.1k|			case DNS_OPT_UL:
  ------------------
  |  Branch (4151:4): [True: 11.1k, False: 374k]
  ------------------
 4152|  11.1k|				if (optlen == 4U || optlen == 8U) {
  ------------------
  |  Branch (4152:9): [True: 6.23k, False: 4.95k]
  |  Branch (4152:25): [True: 4.95k, False: 0]
  ------------------
 4153|  11.1k|					uint32_t secs, key = 0;
 4154|  11.1k|					secs = isc_buffer_getuint32(&optbuf);
 4155|  11.1k|					snprintf(buf, sizeof(buf), " %u", secs);
 4156|  11.1k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  11.1k|	{                                                         \
  |  |   98|  11.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  11.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 11.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  11.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  11.1k|	}
  ------------------
 4157|  11.1k|					if (optlen == 8U) {
  ------------------
  |  Branch (4157:10): [True: 4.95k, False: 6.23k]
  ------------------
 4158|  4.95k|						key = isc_buffer_getuint32(
 4159|  4.95k|							&optbuf);
 4160|  4.95k|						snprintf(buf, sizeof(buf),
 4161|  4.95k|							 "/%u", key);
 4162|  4.95k|						ADD_STRING(target, buf);
  ------------------
  |  |   97|  4.95k|	{                                                         \
  |  |   98|  4.95k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.95k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.95k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.95k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.95k|	}
  ------------------
 4163|  4.95k|					}
 4164|  11.1k|					ADD_STRING(target, " (");
  ------------------
  |  |   97|  11.1k|	{                                                         \
  |  |   98|  11.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  11.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 11.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  11.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  11.1k|	}
  ------------------
 4165|  11.1k|					CHECK(dns_ttl_totext(secs, true, true,
  ------------------
  |  |  255|  11.1k|	{                                      \
  |  |  256|  11.1k|		result = (r);                  \
  |  |  257|  11.1k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 11.1k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  11.1k|	}
  ------------------
 4166|  11.1k|							     target));
 4167|  11.1k|					if (optlen == 8U) {
  ------------------
  |  Branch (4167:10): [True: 4.95k, False: 6.23k]
  ------------------
 4168|  4.95k|						ADD_STRING(target, "/");
  ------------------
  |  |   97|  4.95k|	{                                                         \
  |  |   98|  4.95k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.95k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.95k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.95k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.95k|	}
  ------------------
 4169|  4.95k|						CHECK(dns_ttl_totext(key, true,
  ------------------
  |  |  255|  4.95k|	{                                      \
  |  |  256|  4.95k|		result = (r);                  \
  |  |  257|  4.95k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 4.95k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  4.95k|	}
  ------------------
 4170|  4.95k|								     true,
 4171|  4.95k|								     target));
 4172|  4.95k|					}
 4173|  11.1k|					ADD_STRING(target, ")\n");
  ------------------
  |  |   97|  11.1k|	{                                                         \
  |  |   98|  11.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  11.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 11.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  11.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  11.1k|	}
  ------------------
 4174|  11.1k|					continue;
 4175|  11.1k|				}
 4176|      0|				break;
 4177|  12.1k|			case DNS_OPT_CLIENT_SUBNET:
  ------------------
  |  Branch (4177:4): [True: 12.1k, False: 373k]
  ------------------
 4178|  12.1k|				isc_buffer_init(&ecsbuf,
 4179|  12.1k|						isc_buffer_current(&optbuf),
  ------------------
  |  |  145|  12.1k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 4180|  12.1k|						optlen);
 4181|  12.1k|				isc_buffer_add(&ecsbuf, optlen);
 4182|  12.1k|				result = render_ecs(&ecsbuf, target);
 4183|  12.1k|				if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (4183:9): [True: 0, False: 12.1k]
  ------------------
 4184|      0|					return result;
 4185|      0|				}
 4186|  12.1k|				if (result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (4186:9): [True: 12.1k, False: 0]
  ------------------
 4187|  12.1k|					isc_buffer_forward(&optbuf, optlen);
 4188|  12.1k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 4189|  12.1k|					continue;
 4190|  12.1k|				}
 4191|      0|				break;
 4192|  15.8k|			case DNS_OPT_EXPIRE:
  ------------------
  |  Branch (4192:4): [True: 15.8k, False: 370k]
  ------------------
 4193|  15.8k|				if (optlen == 4) {
  ------------------
  |  Branch (4193:9): [True: 10.9k, False: 4.88k]
  ------------------
 4194|  10.9k|					uint32_t secs;
 4195|  10.9k|					secs = isc_buffer_getuint32(&optbuf);
 4196|  10.9k|					snprintf(buf, sizeof(buf), " %u", secs);
 4197|  10.9k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  10.9k|	{                                                         \
  |  |   98|  10.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.9k|	}
  ------------------
 4198|  10.9k|					ADD_STRING(target, " (");
  ------------------
  |  |   97|  10.9k|	{                                                         \
  |  |   98|  10.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.9k|	}
  ------------------
 4199|  10.9k|					RETERR(dns_ttl_totext(secs, true, true,
  ------------------
  |  |  276|  10.9k|	{                                  \
  |  |  277|  10.9k|		isc_result_t _r = (x);     \
  |  |  278|  10.9k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  10.9k|	}
  ------------------
 4200|  10.9k|							      target));
 4201|  10.9k|					ADD_STRING(target, ")\n");
  ------------------
  |  |   97|  10.9k|	{                                                         \
  |  |   98|  10.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.9k|	}
  ------------------
 4202|  10.9k|					continue;
 4203|  10.9k|				}
 4204|  4.88k|				break;
 4205|  4.88k|			case DNS_OPT_TCP_KEEPALIVE:
  ------------------
  |  Branch (4205:4): [True: 3.03k, False: 382k]
  ------------------
 4206|  3.03k|				if (optlen == 2) {
  ------------------
  |  Branch (4206:9): [True: 2.22k, False: 801]
  ------------------
 4207|  2.22k|					unsigned int dsecs;
 4208|  2.22k|					dsecs = isc_buffer_getuint16(&optbuf);
 4209|  2.22k|					snprintf(buf, sizeof(buf), " %u.%u",
 4210|  2.22k|						 dsecs / 10U, dsecs % 10U);
 4211|  2.22k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  2.22k|	{                                                         \
  |  |   98|  2.22k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.22k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.22k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.22k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.22k|	}
  ------------------
 4212|  2.22k|					ADD_STRING(target, " secs\n");
  ------------------
  |  |   97|  2.22k|	{                                                         \
  |  |   98|  2.22k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.22k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.22k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.22k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.22k|	}
  ------------------
 4213|  2.22k|					continue;
 4214|  2.22k|				}
 4215|    801|				break;
 4216|  8.00k|			case DNS_OPT_PAD:
  ------------------
  |  Branch (4216:4): [True: 8.00k, False: 377k]
  ------------------
 4217|  8.00k|				if (optlen > 0U) {
  ------------------
  |  Branch (4217:9): [True: 2.49k, False: 5.51k]
  ------------------
 4218|  2.49k|					snprintf(buf, sizeof(buf),
 4219|  2.49k|						 " (%u bytes)", optlen);
 4220|  2.49k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  2.49k|	{                                                         \
  |  |   98|  2.49k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.49k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.49k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.49k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.49k|	}
  ------------------
 4221|  2.49k|					isc_buffer_forward(&optbuf, optlen);
 4222|  2.49k|				}
 4223|  8.00k|				ADD_STRING(target, "\n");
  ------------------
  |  |   97|  8.00k|	{                                                         \
  |  |   98|  8.00k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  8.00k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 8.00k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  8.00k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  8.00k|	}
  ------------------
 4224|  8.00k|				continue;
 4225|  2.94k|			case DNS_OPT_CHAIN:
  ------------------
  |  Branch (4225:4): [True: 2.94k, False: 383k]
  ------------------
 4226|  4.49k|			case DNS_OPT_REPORT_CHANNEL:
  ------------------
  |  Branch (4226:4): [True: 1.54k, False: 384k]
  ------------------
 4227|  4.49k|				if (optlen > 0U) {
  ------------------
  |  Branch (4227:9): [True: 2.92k, False: 1.56k]
  ------------------
 4228|  2.92k|					isc_buffer_t sb = optbuf;
 4229|  2.92k|					isc_buffer_setactive(&optbuf, optlen);
 4230|  2.92k|					result = render_nameopt(&optbuf, false,
 4231|  2.92k|								target);
 4232|  2.92k|					if (result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (4232:10): [True: 1.77k, False: 1.14k]
  ------------------
 4233|  1.77k|						ADD_STRING(target, "\n");
  ------------------
  |  |   97|  1.77k|	{                                                         \
  |  |   98|  1.77k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.77k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.77k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.77k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.77k|	}
  ------------------
 4234|  1.77k|						continue;
 4235|  1.77k|					}
 4236|  1.14k|					optbuf = sb;
 4237|  1.14k|				}
 4238|  2.71k|				ADD_STRING(target, "\n");
  ------------------
  |  |   97|  2.71k|	{                                                         \
  |  |   98|  2.71k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.71k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.71k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.71k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.71k|	}
  ------------------
 4239|  2.71k|				break;
 4240|  1.71k|			case DNS_OPT_KEY_TAG:
  ------------------
  |  Branch (4240:4): [True: 1.71k, False: 384k]
  ------------------
 4241|  1.71k|				if (optlen > 0U && (optlen % 2U) == 0U) {
  ------------------
  |  Branch (4241:9): [True: 1.71k, False: 0]
  |  Branch (4241:24): [True: 1.71k, False: 0]
  ------------------
 4242|  1.71k|					const char *sep = "";
 4243|  12.4k|					while (optlen > 0U) {
  ------------------
  |  Branch (4243:13): [True: 10.7k, False: 1.71k]
  ------------------
 4244|  10.7k|						uint16_t id =
 4245|  10.7k|							isc_buffer_getuint16(
 4246|  10.7k|								&optbuf);
 4247|  10.7k|						snprintf(buf, sizeof(buf),
 4248|  10.7k|							 "%s %u", sep, id);
 4249|  10.7k|						ADD_STRING(target, buf);
  ------------------
  |  |   97|  10.7k|	{                                                         \
  |  |   98|  10.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.7k|	}
  ------------------
 4250|  10.7k|						sep = ",";
 4251|  10.7k|						optlen -= 2;
 4252|  10.7k|					}
 4253|  1.71k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  1.71k|	{                                                         \
  |  |   98|  1.71k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.71k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.71k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.71k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.71k|	}
  ------------------
 4254|  1.71k|					continue;
 4255|  1.71k|				}
 4256|      0|				break;
 4257|  7.80k|			case DNS_OPT_EDE:
  ------------------
  |  Branch (4257:4): [True: 7.80k, False: 378k]
  ------------------
 4258|  7.80k|				if (optlen >= 2U) {
  ------------------
  |  Branch (4258:9): [True: 7.80k, False: 0]
  ------------------
 4259|  7.80k|					uint16_t ede;
 4260|  7.80k|					ede = isc_buffer_getuint16(&optbuf);
 4261|  7.80k|					snprintf(buf, sizeof(buf), " %u", ede);
 4262|  7.80k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  7.80k|	{                                                         \
  |  |   98|  7.80k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  7.80k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 7.80k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  7.80k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  7.80k|	}
  ------------------
 4263|  7.80k|					if (ede < ARRAY_SIZE(edetext)) {
  ------------------
  |  |   98|  7.80k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (4263:10): [True: 2.34k, False: 5.46k]
  ------------------
 4264|  2.34k|						ADD_STRING(target, " (");
  ------------------
  |  |   97|  2.34k|	{                                                         \
  |  |   98|  2.34k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.34k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.34k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.34k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.34k|	}
  ------------------
 4265|  2.34k|						ADD_STRING(target,
  ------------------
  |  |   97|  2.34k|	{                                                         \
  |  |   98|  2.34k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.34k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.34k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.34k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.34k|	}
  ------------------
 4266|  2.34k|							   edetext[ede]);
 4267|  2.34k|						ADD_STRING(target, ")");
  ------------------
  |  |   97|  2.34k|	{                                                         \
  |  |   98|  2.34k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.34k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.34k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.34k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.34k|	}
  ------------------
 4268|  2.34k|					}
 4269|  7.80k|					optlen -= 2;
 4270|  7.80k|					if (optlen != 0) {
  ------------------
  |  Branch (4270:10): [True: 5.34k, False: 2.45k]
  ------------------
 4271|  5.34k|						ADD_STRING(target, ":");
  ------------------
  |  |   97|  5.34k|	{                                                         \
  |  |   98|  5.34k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.34k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.34k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.34k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.34k|	}
  ------------------
 4272|  5.34k|					}
 4273|  7.80k|				} else if (optlen == 1U) {
  ------------------
  |  Branch (4273:16): [True: 0, False: 0]
  ------------------
 4274|       |					/* Malformed */
 4275|      0|					optdata = isc_buffer_current(&optbuf);
  ------------------
  |  |  145|      0|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 4276|      0|					snprintf(buf, sizeof(buf),
 4277|      0|						 " %02x (\"%c\")\n", optdata[0],
 4278|      0|						 isprint(optdata[0])
  ------------------
  |  Branch (4278:8): [True: 0, False: 0]
  ------------------
 4279|      0|							 ? optdata[0]
 4280|      0|							 : '.');
 4281|      0|					isc_buffer_forward(&optbuf, optlen);
 4282|      0|					ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4283|      0|					continue;
 4284|      0|				}
 4285|  7.80k|				break;
 4286|  7.80k|			case DNS_OPT_CLIENT_TAG:
  ------------------
  |  Branch (4286:4): [True: 414, False: 385k]
  ------------------
 4287|    914|			case DNS_OPT_SERVER_TAG:
  ------------------
  |  Branch (4287:4): [True: 500, False: 385k]
  ------------------
 4288|    914|				if (optlen == 2U) {
  ------------------
  |  Branch (4288:9): [True: 914, False: 0]
  ------------------
 4289|    914|					uint16_t id =
 4290|    914|						isc_buffer_getuint16(&optbuf);
 4291|    914|					snprintf(buf, sizeof(buf), " %u\n", id);
 4292|    914|					ADD_STRING(target, buf);
  ------------------
  |  |   97|    914|	{                                                         \
  |  |   98|    914|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    914|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 914]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    914|			isc_buffer_putstr(b, s);                  \
  |  |  103|    914|	}
  ------------------
 4293|    914|					continue;
 4294|    914|				}
 4295|      0|				break;
 4296|  36.8k|			case DNS_OPT_ZONEVERSION:
  ------------------
  |  Branch (4296:4): [True: 36.8k, False: 349k]
  ------------------
 4297|  36.8k|				if (optlen >= 2U) {
  ------------------
  |  Branch (4297:9): [True: 30.0k, False: 6.79k]
  ------------------
 4298|  30.0k|					isc_buffer_t zonebuf = optbuf;
 4299|  30.0k|					isc_buffer_setactive(&zonebuf, optlen);
 4300|  30.0k|					CHECK(render_zoneversion(
  ------------------
  |  |  255|  30.0k|	{                                      \
  |  |  256|  30.0k|		result = (r);                  \
  |  |  257|  30.0k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 1, False: 30.0k]
  |  |  ------------------
  |  |  258|      1|			goto cleanup;          \
  |  |  259|      1|		}                              \
  |  |  260|  30.0k|	}
  ------------------
 4301|  30.0k|						msg, &zonebuf, style, target));
 4302|  30.0k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  30.0k|	{                                                         \
  |  |   98|  30.0k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  30.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 30.0k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  30.0k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  30.0k|	}
  ------------------
 4303|  30.0k|					isc_buffer_forward(&optbuf, optlen);
 4304|  30.0k|					continue;
 4305|  30.0k|				}
 4306|  6.79k|				break;
 4307|   280k|			default:
  ------------------
  |  Branch (4307:4): [True: 280k, False: 105k]
  ------------------
 4308|   280k|				break;
 4309|   385k|			}
 4310|       |
 4311|   303k|			if (optlen != 0) {
  ------------------
  |  Branch (4311:8): [True: 50.7k, False: 253k]
  ------------------
 4312|  50.7k|				int i;
 4313|  50.7k|				bool utf8ok = false;
 4314|       |
 4315|  50.7k|				ADD_STRING(target, " ");
  ------------------
  |  |   97|  50.7k|	{                                                         \
  |  |   98|  50.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  50.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 50.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  50.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  50.7k|	}
  ------------------
 4316|       |
 4317|  50.7k|				optdata = isc_buffer_current(&optbuf);
  ------------------
  |  |  145|  50.7k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 4318|  50.7k|				if (optcode == DNS_OPT_EDE) {
  ------------------
  |  Branch (4318:9): [True: 5.34k, False: 45.3k]
  ------------------
 4319|  5.34k|					utf8ok = isc_utf8_valid(optdata,
 4320|  5.34k|								optlen);
 4321|  5.34k|				}
 4322|  50.7k|				if (!utf8ok) {
  ------------------
  |  Branch (4322:9): [True: 45.3k, False: 5.34k]
  ------------------
 4323|  1.83M|					for (i = 0; i < optlen; i++) {
  ------------------
  |  Branch (4323:18): [True: 1.79M, False: 45.3k]
  ------------------
 4324|  1.79M|						const char *sep;
 4325|  1.79M|						switch (optcode) {
 4326|  10.7k|						case DNS_OPT_COOKIE:
  ------------------
  |  Branch (4326:7): [True: 10.7k, False: 1.78M]
  ------------------
 4327|  10.7k|							sep = "";
 4328|  10.7k|							break;
 4329|  1.78M|						default:
  ------------------
  |  Branch (4329:7): [True: 1.78M, False: 10.7k]
  ------------------
 4330|  1.78M|							sep = " ";
 4331|  1.78M|							break;
 4332|  1.79M|						}
 4333|  1.79M|						snprintf(buf, sizeof(buf),
 4334|  1.79M|							 "%02x%s", optdata[i],
 4335|  1.79M|							 sep);
 4336|  1.79M|						ADD_STRING(target, buf);
  ------------------
  |  |   97|  1.79M|	{                                                         \
  |  |   98|  1.79M|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.79M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.79M]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.79M|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.79M|	}
  ------------------
 4337|  1.79M|					}
 4338|  45.3k|				}
 4339|       |
 4340|  50.7k|				isc_buffer_forward(&optbuf, optlen);
 4341|       |
 4342|  50.7k|				if (optcode == DNS_OPT_COOKIE) {
  ------------------
  |  Branch (4342:9): [True: 993, False: 49.7k]
  ------------------
 4343|       |					/*
 4344|       |					 * Valid server cookie?
 4345|       |					 */
 4346|    993|					if (msg->cc_ok && optlen >= 16) {
  ------------------
  |  Branch (4346:10): [True: 0, False: 993]
  |  Branch (4346:24): [True: 0, False: 0]
  ------------------
 4347|      0|						ADD_STRING(target, " (good)");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4348|      0|					}
 4349|       |					/*
 4350|       |					 * Server cookie is not valid but
 4351|       |					 * we had our cookie echoed back.
 4352|       |					 */
 4353|    993|					if (msg->cc_ok && optlen < 16) {
  ------------------
  |  Branch (4353:10): [True: 0, False: 993]
  |  Branch (4353:24): [True: 0, False: 0]
  ------------------
 4354|      0|						ADD_STRING(target, " (echoed)");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4355|      0|					}
 4356|       |					/*
 4357|       |					 * We didn't get our cookie echoed
 4358|       |					 * back.
 4359|       |					 */
 4360|    993|					if (msg->cc_bad) {
  ------------------
  |  Branch (4360:10): [True: 0, False: 993]
  ------------------
 4361|      0|						ADD_STRING(target, " (bad)");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4362|      0|					}
 4363|    993|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|    993|	{                                                         \
  |  |   98|    993|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    993|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 993]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    993|			isc_buffer_putstr(b, s);                  \
  |  |  103|    993|	}
  ------------------
 4364|    993|					continue;
 4365|    993|				}
 4366|       |
 4367|  49.7k|				if (optcode == DNS_OPT_CLIENT_SUBNET) {
  ------------------
  |  Branch (4367:9): [True: 0, False: 49.7k]
  ------------------
 4368|      0|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4369|      0|					continue;
 4370|      0|				}
 4371|       |
 4372|       |				/*
 4373|       |				 * For non-COOKIE options, add a printable
 4374|       |				 * version.
 4375|       |				 */
 4376|  49.7k|				if (optcode != DNS_OPT_EDE) {
  ------------------
  |  Branch (4376:9): [True: 44.3k, False: 5.34k]
  ------------------
 4377|  44.3k|					ADD_STRING(target, "(\"");
  ------------------
  |  |   97|  44.3k|	{                                                         \
  |  |   98|  44.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  44.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 44.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  44.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  44.3k|	}
  ------------------
 4378|  44.3k|				} else {
 4379|  5.34k|					ADD_STRING(target, "(");
  ------------------
  |  |   97|  5.34k|	{                                                         \
  |  |   98|  5.34k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.34k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.34k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.34k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.34k|	}
  ------------------
 4380|  5.34k|				}
 4381|  49.7k|				if (isc_buffer_availablelength(target) < optlen)
  ------------------
  |  |  161|  49.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (4381:9): [True: 0, False: 49.7k]
  ------------------
 4382|      0|				{
 4383|      0|					return ISC_R_NOSPACE;
 4384|      0|				}
 4385|  1.85M|				for (i = 0; i < optlen; i++) {
  ------------------
  |  Branch (4385:17): [True: 1.80M, False: 49.7k]
  ------------------
 4386|  1.80M|					if (isprint(optdata[i]) ||
  ------------------
  |  Branch (4386:10): [True: 144k, False: 1.66M]
  ------------------
 4387|  1.66M|					    (utf8ok && optdata[i] > 127))
  ------------------
  |  Branch (4387:11): [True: 23.6k, False: 1.63M]
  |  Branch (4387:21): [True: 3.93k, False: 19.7k]
  ------------------
 4388|   148k|					{
 4389|   148k|						isc_buffer_putmem(
 4390|   148k|							target, &optdata[i], 1);
 4391|  1.65M|					} else {
 4392|  1.65M|						isc_buffer_putstr(target, ".");
 4393|  1.65M|					}
 4394|  1.80M|				}
 4395|  49.7k|				if (optcode != DNS_OPT_EDE) {
  ------------------
  |  Branch (4395:9): [True: 44.3k, False: 5.34k]
  ------------------
 4396|  44.3k|					ADD_STRING(target, "\")");
  ------------------
  |  |   97|  44.3k|	{                                                         \
  |  |   98|  44.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  44.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 44.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  44.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  44.3k|	}
  ------------------
 4397|  44.3k|				} else {
 4398|  5.34k|					ADD_STRING(target, ")");
  ------------------
  |  |   97|  5.34k|	{                                                         \
  |  |   98|  5.34k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.34k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.34k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.34k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.34k|	}
  ------------------
 4399|  5.34k|				}
 4400|  49.7k|			}
 4401|   302k|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|   302k|	{                                                         \
  |  |   98|   302k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   302k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 302k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   302k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   302k|	}
  ------------------
 4402|   302k|		}
 4403|  4.37k|		return ISC_R_SUCCESS;
 4404|  17.4k|	case DNS_PSEUDOSECTION_TSIG:
  ------------------
  |  Branch (4404:2): [True: 17.4k, False: 34.9k]
  ------------------
 4405|  17.4k|		ps = dns_message_gettsig(msg, &name);
 4406|  17.4k|		if (ps == NULL) {
  ------------------
  |  Branch (4406:7): [True: 17.4k, False: 46]
  ------------------
 4407|  17.4k|			return ISC_R_SUCCESS;
 4408|  17.4k|		}
 4409|     46|		INDENT(style);
  ------------------
  |  | 3191|     46|	do {                                                                 \
  |  | 3192|     46|		unsigned int __i;                                            \
  |  | 3193|     46|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|     46|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|     46|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 46, False: 0]
  |  |  ------------------
  |  | 3195|     46|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|     46|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 46, False: 0]
  |  |  ------------------
  |  | 3196|     46|		{                                                            \
  |  | 3197|     46|			break;                                               \
  |  | 3198|     46|		}                                                            \
  |  | 3199|     46|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4410|     46|		if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (4410:7): [True: 46, False: 0]
  ------------------
 4411|     46|			ADD_STRING(target, ";; TSIG PSEUDOSECTION:\n");
  ------------------
  |  |   97|     46|	{                                                         \
  |  |   98|     46|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     46|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 46]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     46|			isc_buffer_putstr(b, s);                  \
  |  |  103|     46|	}
  ------------------
 4412|     46|		}
 4413|     46|		result = dns_master_rdatasettotext(name, ps, style,
 4414|     46|						   &msg->indent, target);
 4415|     46|		if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) == 0 &&
  ------------------
  |  Branch (4415:7): [True: 46, False: 0]
  ------------------
 4416|     46|		    (flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0)
  ------------------
  |  Branch (4416:7): [True: 46, False: 0]
  ------------------
 4417|     46|		{
 4418|     46|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|     46|	{                                                         \
  |  |   98|     46|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     46|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 46]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     46|			isc_buffer_putstr(b, s);                  \
  |  |  103|     46|	}
  ------------------
 4419|     46|		}
 4420|     46|		return result;
 4421|  17.4k|	case DNS_PSEUDOSECTION_SIG0:
  ------------------
  |  Branch (4421:2): [True: 17.4k, False: 34.9k]
  ------------------
 4422|  17.4k|		ps = dns_message_getsig0(msg, &name);
 4423|  17.4k|		if (ps == NULL) {
  ------------------
  |  Branch (4423:7): [True: 17.4k, False: 80]
  ------------------
 4424|  17.4k|			return ISC_R_SUCCESS;
 4425|  17.4k|		}
 4426|     80|		INDENT(style);
  ------------------
  |  | 3191|     80|	do {                                                                 \
  |  | 3192|     80|		unsigned int __i;                                            \
  |  | 3193|     80|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|     80|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|     80|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 80, False: 0]
  |  |  ------------------
  |  | 3195|     80|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|     80|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 80, False: 0]
  |  |  ------------------
  |  | 3196|     80|		{                                                            \
  |  | 3197|     80|			break;                                               \
  |  | 3198|     80|		}                                                            \
  |  | 3199|     80|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4427|     80|		if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (4427:7): [True: 80, False: 0]
  ------------------
 4428|     80|			ADD_STRING(target, ";; SIG0 PSEUDOSECTION:\n");
  ------------------
  |  |   97|     80|	{                                                         \
  |  |   98|     80|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     80|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 80]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     80|			isc_buffer_putstr(b, s);                  \
  |  |  103|     80|	}
  ------------------
 4429|     80|		}
 4430|     80|		result = dns_master_rdatasettotext(name, ps, style,
 4431|     80|						   &msg->indent, target);
 4432|     80|		if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) == 0 &&
  ------------------
  |  Branch (4432:7): [True: 80, False: 0]
  ------------------
 4433|     80|		    (flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0)
  ------------------
  |  Branch (4433:7): [True: 80, False: 0]
  ------------------
 4434|     80|		{
 4435|     80|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|     80|	{                                                         \
  |  |   98|     80|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     80|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 80]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     80|			isc_buffer_putstr(b, s);                  \
  |  |  103|     80|	}
  ------------------
 4436|     80|		}
 4437|     80|		return result;
 4438|      0|	default:
  ------------------
  |  Branch (4438:2): [True: 0, False: 52.4k]
  ------------------
 4439|      0|		break;
 4440|  52.4k|	}
 4441|      0|	result = ISC_R_UNEXPECTED;
 4442|      2|cleanup:
 4443|      2|	return result;
 4444|      0|}
dns_message_headertotext:
 4448|  17.5k|			 dns_messagetextflag_t flags, isc_buffer_t *target) {
 4449|  17.5k|	char buf[sizeof("1234567890")];
 4450|  17.5k|	isc_result_t result = ISC_R_SUCCESS;
 4451|       |
 4452|  17.5k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4453|  17.5k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4454|       |
 4455|  17.5k|	if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) != 0) {
  ------------------
  |  Branch (4455:6): [True: 0, False: 17.5k]
  ------------------
 4456|      0|		return ISC_R_SUCCESS;
 4457|      0|	}
 4458|       |
 4459|  17.5k|	if (dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) {
  ------------------
  |  |  107|  17.5k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (4459:6): [True: 0, False: 17.5k]
  ------------------
 4460|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4461|      0|		ADD_STRING(target, "opcode: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4462|      0|		ADD_STRING(target, opcodetext[msg->opcode]);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4463|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4464|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4465|      0|		ADD_STRING(target, "status: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4466|      0|		RETERR(dns_rcode_totext(msg->rcode, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 4467|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4468|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4469|      0|		ADD_STRING(target, "id: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4470|      0|		snprintf(buf, sizeof(buf), "%u", msg->id);
 4471|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4472|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4473|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4474|      0|		ADD_STRING(target, "flags:");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4475|      0|		if ((msg->flags & DNS_MESSAGEFLAG_QR) != 0) {
  ------------------
  |  Branch (4475:7): [True: 0, False: 0]
  ------------------
 4476|      0|			ADD_STRING(target, " qr");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4477|      0|		}
 4478|      0|		if ((msg->flags & DNS_MESSAGEFLAG_AA) != 0) {
  ------------------
  |  Branch (4478:7): [True: 0, False: 0]
  ------------------
 4479|      0|			ADD_STRING(target, " aa");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4480|      0|		}
 4481|      0|		if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0) {
  ------------------
  |  Branch (4481:7): [True: 0, False: 0]
  ------------------
 4482|      0|			ADD_STRING(target, " tc");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4483|      0|		}
 4484|      0|		if ((msg->flags & DNS_MESSAGEFLAG_RD) != 0) {
  ------------------
  |  Branch (4484:7): [True: 0, False: 0]
  ------------------
 4485|      0|			ADD_STRING(target, " rd");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4486|      0|		}
 4487|      0|		if ((msg->flags & DNS_MESSAGEFLAG_RA) != 0) {
  ------------------
  |  Branch (4487:7): [True: 0, False: 0]
  ------------------
 4488|      0|			ADD_STRING(target, " ra");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4489|      0|		}
 4490|      0|		if ((msg->flags & DNS_MESSAGEFLAG_AD) != 0) {
  ------------------
  |  Branch (4490:7): [True: 0, False: 0]
  ------------------
 4491|      0|			ADD_STRING(target, " ad");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4492|      0|		}
 4493|      0|		if ((msg->flags & DNS_MESSAGEFLAG_CD) != 0) {
  ------------------
  |  Branch (4493:7): [True: 0, False: 0]
  ------------------
 4494|      0|			ADD_STRING(target, " cd");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4495|      0|		}
 4496|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4497|       |		/*
 4498|       |		 * The final unnamed flag must be zero.
 4499|       |		 */
 4500|      0|		if ((msg->flags & 0x0040U) != 0) {
  ------------------
  |  Branch (4500:7): [True: 0, False: 0]
  ------------------
 4501|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4502|      0|			ADD_STRING(target, "MBZ: 0x4");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4503|      0|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4504|      0|		}
 4505|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4505:7): [True: 0, False: 0]
  ------------------
 4506|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4507|      0|			ADD_STRING(target, "QUESTION: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4508|      0|		} else {
 4509|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4510|      0|			ADD_STRING(target, "ZONE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4511|      0|		}
 4512|      0|		snprintf(buf, sizeof(buf), "%1u",
 4513|      0|			 msg->counts[DNS_SECTION_QUESTION]);
 4514|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4515|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4516|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4516:7): [True: 0, False: 0]
  ------------------
 4517|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4518|      0|			ADD_STRING(target, "ANSWER: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4519|      0|		} else {
 4520|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4521|      0|			ADD_STRING(target, "PREREQ: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4522|      0|		}
 4523|      0|		snprintf(buf, sizeof(buf), "%1u",
 4524|      0|			 msg->counts[DNS_SECTION_ANSWER]);
 4525|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4526|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4527|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4527:7): [True: 0, False: 0]
  ------------------
 4528|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4529|      0|			ADD_STRING(target, "AUTHORITY: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4530|      0|		} else {
 4531|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4532|      0|			ADD_STRING(target, "UPDATE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4533|      0|		}
 4534|      0|		snprintf(buf, sizeof(buf), "%1u",
 4535|      0|			 msg->counts[DNS_SECTION_AUTHORITY]);
 4536|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4537|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4538|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4539|      0|		ADD_STRING(target, "ADDITIONAL: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4540|      0|		snprintf(buf, sizeof(buf), "%1u",
 4541|      0|			 msg->counts[DNS_SECTION_ADDITIONAL]);
 4542|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4543|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4544|  17.5k|	} else {
 4545|  17.5k|		INDENT(style);
  ------------------
  |  | 3191|  17.5k|	do {                                                                 \
  |  | 3192|  17.5k|		unsigned int __i;                                            \
  |  | 3193|  17.5k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  17.5k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  17.5k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 17.5k, False: 0]
  |  |  ------------------
  |  | 3195|  17.5k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  17.5k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 17.5k, False: 0]
  |  |  ------------------
  |  | 3196|  17.5k|		{                                                            \
  |  | 3197|  17.5k|			break;                                               \
  |  | 3198|  17.5k|		}                                                            \
  |  | 3199|  17.5k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4546|  17.5k|		ADD_STRING(target, ";; ->>HEADER<<- opcode: ");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4547|  17.5k|		ADD_STRING(target, opcodetext[msg->opcode]);
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4548|  17.5k|		ADD_STRING(target, ", status: ");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4549|  17.5k|		RETERR(dns_rcode_totext(msg->rcode, target));
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4550|  17.5k|		ADD_STRING(target, ", id: ");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4551|  17.5k|		snprintf(buf, sizeof(buf), "%6u", msg->id);
 4552|  17.5k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4553|  17.5k|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4554|  17.5k|		INDENT(style);
  ------------------
  |  | 3191|  17.5k|	do {                                                                 \
  |  | 3192|  17.5k|		unsigned int __i;                                            \
  |  | 3193|  17.5k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  17.5k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  17.5k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 17.5k, False: 0]
  |  |  ------------------
  |  | 3195|  17.5k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  17.5k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 17.5k, False: 0]
  |  |  ------------------
  |  | 3196|  17.5k|		{                                                            \
  |  | 3197|  17.5k|			break;                                               \
  |  | 3198|  17.5k|		}                                                            \
  |  | 3199|  17.5k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4555|  17.5k|		ADD_STRING(target, ";; flags:");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4556|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_QR) != 0) {
  ------------------
  |  Branch (4556:7): [True: 5.94k, False: 11.5k]
  ------------------
 4557|  5.94k|			ADD_STRING(target, " qr");
  ------------------
  |  |   97|  5.94k|	{                                                         \
  |  |   98|  5.94k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.94k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.94k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.94k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.94k|	}
  ------------------
 4558|  5.94k|		}
 4559|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_AA) != 0) {
  ------------------
  |  Branch (4559:7): [True: 6.99k, False: 10.5k]
  ------------------
 4560|  6.99k|			ADD_STRING(target, " aa");
  ------------------
  |  |   97|  6.99k|	{                                                         \
  |  |   98|  6.99k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  6.99k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 6.99k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  6.99k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  6.99k|	}
  ------------------
 4561|  6.99k|		}
 4562|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0) {
  ------------------
  |  Branch (4562:7): [True: 8.65k, False: 8.84k]
  ------------------
 4563|  8.65k|			ADD_STRING(target, " tc");
  ------------------
  |  |   97|  8.65k|	{                                                         \
  |  |   98|  8.65k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  8.65k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 8.65k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  8.65k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  8.65k|	}
  ------------------
 4564|  8.65k|		}
 4565|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_RD) != 0) {
  ------------------
  |  Branch (4565:7): [True: 7.35k, False: 10.1k]
  ------------------
 4566|  7.35k|			ADD_STRING(target, " rd");
  ------------------
  |  |   97|  7.35k|	{                                                         \
  |  |   98|  7.35k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  7.35k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 7.35k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  7.35k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  7.35k|	}
  ------------------
 4567|  7.35k|		}
 4568|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_RA) != 0) {
  ------------------
  |  Branch (4568:7): [True: 3.79k, False: 13.7k]
  ------------------
 4569|  3.79k|			ADD_STRING(target, " ra");
  ------------------
  |  |   97|  3.79k|	{                                                         \
  |  |   98|  3.79k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.79k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.79k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.79k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.79k|	}
  ------------------
 4570|  3.79k|		}
 4571|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_AD) != 0) {
  ------------------
  |  Branch (4571:7): [True: 4.83k, False: 12.6k]
  ------------------
 4572|  4.83k|			ADD_STRING(target, " ad");
  ------------------
  |  |   97|  4.83k|	{                                                         \
  |  |   98|  4.83k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.83k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.83k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.83k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.83k|	}
  ------------------
 4573|  4.83k|		}
 4574|  17.5k|		if ((msg->flags & DNS_MESSAGEFLAG_CD) != 0) {
  ------------------
  |  Branch (4574:7): [True: 5.91k, False: 11.5k]
  ------------------
 4575|  5.91k|			ADD_STRING(target, " cd");
  ------------------
  |  |   97|  5.91k|	{                                                         \
  |  |   98|  5.91k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.91k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.91k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.91k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.91k|	}
  ------------------
 4576|  5.91k|		}
 4577|       |		/*
 4578|       |		 * The final unnamed flag must be zero.
 4579|       |		 */
 4580|  17.5k|		if ((msg->flags & 0x0040U) != 0) {
  ------------------
  |  Branch (4580:7): [True: 4.79k, False: 12.7k]
  ------------------
 4581|  4.79k|			INDENT(style);
  ------------------
  |  | 3191|  4.79k|	do {                                                                 \
  |  | 3192|  4.79k|		unsigned int __i;                                            \
  |  | 3193|  4.79k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  4.79k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  4.79k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 4.79k, False: 0]
  |  |  ------------------
  |  | 3195|  4.79k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  4.79k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 4.79k, False: 0]
  |  |  ------------------
  |  | 3196|  4.79k|		{                                                            \
  |  | 3197|  4.79k|			break;                                               \
  |  | 3198|  4.79k|		}                                                            \
  |  | 3199|  4.79k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4582|  4.79k|			ADD_STRING(target, "; MBZ: 0x4");
  ------------------
  |  |   97|  4.79k|	{                                                         \
  |  |   98|  4.79k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.79k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.79k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.79k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.79k|	}
  ------------------
 4583|  4.79k|		}
 4584|  17.5k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4584:7): [True: 15.3k, False: 2.12k]
  ------------------
 4585|  15.3k|			INDENT(style);
  ------------------
  |  | 3191|  15.3k|	do {                                                                 \
  |  | 3192|  15.3k|		unsigned int __i;                                            \
  |  | 3193|  15.3k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  15.3k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  15.3k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 15.3k, False: 0]
  |  |  ------------------
  |  | 3195|  15.3k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  15.3k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 15.3k, False: 0]
  |  |  ------------------
  |  | 3196|  15.3k|		{                                                            \
  |  | 3197|  15.3k|			break;                                               \
  |  | 3198|  15.3k|		}                                                            \
  |  | 3199|  15.3k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4586|  15.3k|			ADD_STRING(target, "; QUESTION: ");
  ------------------
  |  |   97|  15.3k|	{                                                         \
  |  |   98|  15.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  15.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 15.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  15.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  15.3k|	}
  ------------------
 4587|  15.3k|		} else {
 4588|  2.12k|			INDENT(style);
  ------------------
  |  | 3191|  2.12k|	do {                                                                 \
  |  | 3192|  2.12k|		unsigned int __i;                                            \
  |  | 3193|  2.12k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  2.12k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  2.12k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 2.12k, False: 0]
  |  |  ------------------
  |  | 3195|  2.12k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  2.12k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 2.12k, False: 0]
  |  |  ------------------
  |  | 3196|  2.12k|		{                                                            \
  |  | 3197|  2.12k|			break;                                               \
  |  | 3198|  2.12k|		}                                                            \
  |  | 3199|  2.12k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4589|  2.12k|			ADD_STRING(target, "; ZONE: ");
  ------------------
  |  |   97|  2.12k|	{                                                         \
  |  |   98|  2.12k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.12k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.12k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.12k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.12k|	}
  ------------------
 4590|  2.12k|		}
 4591|  17.5k|		snprintf(buf, sizeof(buf), "%1u",
 4592|  17.5k|			 msg->counts[DNS_SECTION_QUESTION]);
 4593|  17.5k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4594|  17.5k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4594:7): [True: 15.3k, False: 2.12k]
  ------------------
 4595|  15.3k|			ADD_STRING(target, ", ANSWER: ");
  ------------------
  |  |   97|  15.3k|	{                                                         \
  |  |   98|  15.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  15.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 15.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  15.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  15.3k|	}
  ------------------
 4596|  15.3k|		} else {
 4597|  2.12k|			ADD_STRING(target, ", PREREQ: ");
  ------------------
  |  |   97|  2.12k|	{                                                         \
  |  |   98|  2.12k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.12k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.12k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.12k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.12k|	}
  ------------------
 4598|  2.12k|		}
 4599|  17.5k|		snprintf(buf, sizeof(buf), "%1u",
 4600|  17.5k|			 msg->counts[DNS_SECTION_ANSWER]);
 4601|  17.5k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4602|  17.5k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4602:7): [True: 15.3k, False: 2.12k]
  ------------------
 4603|  15.3k|			ADD_STRING(target, ", AUTHORITY: ");
  ------------------
  |  |   97|  15.3k|	{                                                         \
  |  |   98|  15.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  15.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 15.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  15.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  15.3k|	}
  ------------------
 4604|  15.3k|		} else {
 4605|  2.12k|			ADD_STRING(target, ", UPDATE: ");
  ------------------
  |  |   97|  2.12k|	{                                                         \
  |  |   98|  2.12k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.12k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.12k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.12k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.12k|	}
  ------------------
 4606|  2.12k|		}
 4607|  17.5k|		snprintf(buf, sizeof(buf), "%1u",
 4608|  17.5k|			 msg->counts[DNS_SECTION_AUTHORITY]);
 4609|  17.5k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4610|  17.5k|		ADD_STRING(target, ", ADDITIONAL: ");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4611|  17.5k|		snprintf(buf, sizeof(buf), "%1u",
 4612|  17.5k|			 msg->counts[DNS_SECTION_ADDITIONAL]);
 4613|  17.5k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4614|  17.5k|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|  17.5k|	{                                                         \
  |  |   98|  17.5k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.5k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.5k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.5k|	}
  ------------------
 4615|  17.5k|	}
 4616|       |
 4617|  17.5k|cleanup:
 4618|  17.5k|	return result;
 4619|  17.5k|}
dns_message_totext:
 4623|  17.5k|		   dns_messagetextflag_t flags, isc_buffer_t *target) {
 4624|  17.5k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4625|  17.5k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4626|       |
 4627|  17.5k|	RETERR(dns_message_headertotext(msg, style, flags, target));
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4628|  17.5k|	RETERR(dns_message_pseudosectiontotext(msg, DNS_PSEUDOSECTION_OPT,
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 17.5k]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4629|  17.5k|					       style, flags, target));
 4630|  17.5k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_QUESTION, style,
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4631|  17.5k|					 flags, target));
 4632|  17.5k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_ANSWER, style, flags,
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 17.5k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4633|  17.5k|					 target));
 4634|  17.5k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_AUTHORITY, style,
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 4, False: 17.4k]
  |  |  ------------------
  |  |  279|      4|			return ((_r));     \
  |  |  280|      4|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4635|  17.5k|					 flags, target));
 4636|  17.4k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_ADDITIONAL, style,
  ------------------
  |  |  276|  17.4k|	{                                  \
  |  |  277|  17.4k|		isc_result_t _r = (x);     \
  |  |  278|  17.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 7, False: 17.4k]
  |  |  ------------------
  |  |  279|      7|			return ((_r));     \
  |  |  280|      7|		}                          \
  |  |  281|  17.4k|	}
  ------------------
 4637|  17.4k|					 flags, target));
 4638|  17.4k|	RETERR(dns_message_pseudosectiontotext(msg, DNS_PSEUDOSECTION_TSIG,
  ------------------
  |  |  276|  17.4k|	{                                  \
  |  |  277|  17.4k|		isc_result_t _r = (x);     \
  |  |  278|  17.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.4k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.4k|	}
  ------------------
 4639|  17.4k|					       style, flags, target));
 4640|  17.4k|	return dns_message_pseudosectiontotext(msg, DNS_PSEUDOSECTION_SIG0,
 4641|  17.4k|					       style, flags, target);
 4642|  17.4k|}
dns_message_createpools:
 5029|  21.9k|			isc_mempool_t **rdspoolp) {
 5030|  21.9k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5031|  21.9k|	REQUIRE(namepoolp != NULL && *namepoolp == NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5032|  21.9k|	REQUIRE(rdspoolp != NULL && *rdspoolp == NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5033|       |
 5034|  21.9k|	isc_mempool_create(mctx, sizeof(dns_fixedname_t), "dns_fixedname_pool",
  ------------------
  |  |  344|  21.9k|	isc__mempool_create((c), (s), (n), (mp)_ISC_MEM_FILELINE)
  ------------------
 5035|  21.9k|			   namepoolp);
 5036|  21.9k|	isc_mempool_setfillcount(*namepoolp, NAME_FILLCOUNT);
  ------------------
  |  |  124|  21.9k|#define NAME_FILLCOUNT	   1024
  ------------------
 5037|  21.9k|	isc_mempool_setfreemax(*namepoolp, NAME_FREEMAX);
  ------------------
  |  |  125|  21.9k|#define NAME_FREEMAX	   8 * NAME_FILLCOUNT
  |  |  ------------------
  |  |  |  |  124|  21.9k|#define NAME_FILLCOUNT	   1024
  |  |  ------------------
  ------------------
 5038|       |
 5039|  21.9k|	isc_mempool_create(mctx, sizeof(dns_rdataset_t), "dns_rdataset_pool",
  ------------------
  |  |  344|  21.9k|	isc__mempool_create((c), (s), (n), (mp)_ISC_MEM_FILELINE)
  ------------------
 5040|  21.9k|			   rdspoolp);
 5041|  21.9k|	isc_mempool_setfillcount(*rdspoolp, RDATASET_FILLCOUNT);
  ------------------
  |  |  129|  21.9k|#define RDATASET_FILLCOUNT 1024
  ------------------
 5042|  21.9k|	isc_mempool_setfreemax(*rdspoolp, RDATASET_FREEMAX);
  ------------------
  |  |  130|  21.9k|#define RDATASET_FREEMAX   8 * RDATASET_FILLCOUNT
  |  |  ------------------
  |  |  |  |  129|  21.9k|#define RDATASET_FILLCOUNT 1024
  |  |  ------------------
  ------------------
 5043|  21.9k|}
dns_message_destroypools:
 5046|  21.9k|dns_message_destroypools(isc_mempool_t **namepoolp, isc_mempool_t **rdspoolp) {
 5047|  21.9k|	REQUIRE(namepoolp != NULL && *namepoolp != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5048|  21.9k|	REQUIRE(rdspoolp != NULL && *rdspoolp != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5049|       |
 5050|  21.9k|	ENSURE(isc_mempool_getallocated(*namepoolp) == 0);
  ------------------
  |  |  200|  21.9k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 5051|  21.9k|	ENSURE(isc_mempool_getallocated(*rdspoolp) == 0);
  ------------------
  |  |  200|  21.9k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 5052|       |
 5053|  21.9k|	isc_mempool_destroy(rdspoolp);
  ------------------
  |  |  361|  21.9k|#define isc_mempool_destroy(mp) isc__mempool_destroy((mp)_ISC_MEM_FILELINE)
  ------------------
 5054|  21.9k|	isc_mempool_destroy(namepoolp);
  ------------------
  |  |  361|  21.9k|#define isc_mempool_destroy(mp) isc__mempool_destroy((mp)_ISC_MEM_FILELINE)
  ------------------
 5055|  21.9k|}
message.c:msginit:
  425|  21.9k|msginit(dns_message_t *m) {
  426|  21.9k|	msginitheader(m);
  427|  21.9k|	msginitprivate(m);
  428|  21.9k|	msginittsig(m);
  429|  21.9k|	m->header_ok = 0;
  430|  21.9k|	m->question_ok = 0;
  431|  21.9k|	m->tcp_continuation = 0;
  432|  21.9k|	m->verified_sig = 0;
  433|  21.9k|	m->verify_attempted = 0;
  434|  21.9k|	m->query.base = NULL;
  435|  21.9k|	m->query.length = 0;
  436|  21.9k|	m->free_query = 0;
  437|  21.9k|	m->saved.base = NULL;
  438|  21.9k|	m->saved.length = 0;
  439|  21.9k|	m->free_saved = 0;
  440|  21.9k|	m->cc_ok = 0;
  441|  21.9k|	m->cc_bad = 0;
  442|  21.9k|	m->tkey = 0;
  443|  21.9k|	m->rdclass_set = 0;
  444|  21.9k|	m->has_dname = 0;
  445|       |	m->querytsig = NULL;
  446|  21.9k|	m->indent.string = "\t";
  447|  21.9k|	m->indent.count = 0;
  448|  21.9k|}
message.c:msginitheader:
  378|  21.9k|msginitheader(dns_message_t *m) {
  379|  21.9k|	m->id = 0;
  380|  21.9k|	m->flags = 0;
  381|  21.9k|	m->rcode = 0;
  382|  21.9k|	m->opcode = 0;
  383|  21.9k|	m->rdclass = 0;
  384|  21.9k|}
message.c:msginittsig:
  409|  21.9k|msginittsig(dns_message_t *m) {
  410|  21.9k|	m->tsigstatus = dns_rcode_noerror;
  ------------------
  |  |  269|  21.9k|#define dns_rcode_noerror ((dns_rcode_t)dns_rcode_noerror)
  ------------------
  411|  21.9k|	m->querytsigstatus = dns_rcode_noerror;
  ------------------
  |  |  269|  21.9k|#define dns_rcode_noerror ((dns_rcode_t)dns_rcode_noerror)
  ------------------
  412|  21.9k|	m->tsigkey = NULL;
  413|  21.9k|	m->tsigctx = NULL;
  414|  21.9k|	m->sigstart = -1;
  415|  21.9k|	m->sig0key = NULL;
  416|  21.9k|	m->sig0status = dns_rcode_noerror;
  ------------------
  |  |  269|  21.9k|#define dns_rcode_noerror ((dns_rcode_t)dns_rcode_noerror)
  ------------------
  417|  21.9k|	m->timeadjust = 0;
  418|  21.9k|}
message.c:msgreset:
  540|  21.9k|msgreset(dns_message_t *msg, bool everything) {
  541|  21.9k|	dns_msgblock_t *msgblock = NULL, *next_msgblock = NULL;
  542|  21.9k|	isc_buffer_t *dynbuf = NULL, *next_dynbuf = NULL;
  543|       |
  544|  21.9k|	msgresetnames(msg, 0);
  545|  21.9k|	msgresetopt(msg);
  546|  21.9k|	msgresetsigs(msg, false);
  547|  21.9k|	msgresetedns(msg);
  548|       |
  549|       |	/*
  550|       |	 * Clean up linked lists.
  551|       |	 */
  552|       |
  553|       |	/*
  554|       |	 * Run through the free lists, and just unlink anything found there.
  555|       |	 * The memory isn't lost since these are part of message blocks we
  556|       |	 * have allocated.
  557|       |	 */
  558|  21.9k|	ISC_LIST_FOREACH(msg->freerdata, rdata, link) {
  ------------------
  |  |  234|  21.9k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  21.9k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  236|  21.9k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  237|  21.9k|	     elt = elt##_next,                                             \
  |  |  238|      0|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  559|      0|		ISC_LIST_UNLINK(msg->freerdata, rdata, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  560|      0|	}
  561|  21.9k|	ISC_LIST_FOREACH(msg->freerdatalist, rdatalist, link) {
  ------------------
  |  |  234|  21.9k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  21.9k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  236|  21.9k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  237|  21.9k|	     elt = elt##_next,                                             \
  |  |  238|      0|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  562|      0|		ISC_LIST_UNLINK(msg->freerdatalist, rdatalist, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  563|      0|	}
  564|       |
  565|  21.9k|	dynbuf = ISC_LIST_HEAD(msg->scratchpad);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  566|  21.9k|	INSIST(dynbuf != NULL);
  ------------------
  |  |  202|  21.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  567|  21.9k|	if (!everything) {
  ------------------
  |  Branch (567:6): [True: 0, False: 21.9k]
  ------------------
  568|      0|		isc_buffer_clear(dynbuf);
  569|      0|		dynbuf = ISC_LIST_NEXT(dynbuf, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  570|      0|	}
  571|   122k|	while (dynbuf != NULL) {
  ------------------
  |  Branch (571:9): [True: 100k, False: 21.9k]
  ------------------
  572|   100k|		next_dynbuf = ISC_LIST_NEXT(dynbuf, link);
  ------------------
  |  |  140|   100k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  573|   100k|		ISC_LIST_UNLINK(msg->scratchpad, dynbuf, link);
  ------------------
  |  |  137|   100k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|   100k|	do {                                                         \
  |  |  |  |  133|   100k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|   100k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|   100k|	do {                                                            \
  |  |  |  |  |  |  110|   100k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 78.3k, False: 21.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  78.3k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  78.3k|		} else {                                                \
  |  |  |  |  |  |  113|  21.9k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 21.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  21.9k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  21.9k|		}                                                       \
  |  |  |  |  |  |  116|   100k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 100k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|   100k|		} else {                                                \
  |  |  |  |  |  |  119|   100k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   100k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 100k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|   100k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|   100k|		}                                                       \
  |  |  |  |  |  |  122|   100k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   100k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|   100k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   100k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|   100k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   100k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 100k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|   100k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   100k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 100k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|   100k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 100k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|   100k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 100k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  574|   100k|		isc_buffer_free(&dynbuf);
  575|   100k|		dynbuf = next_dynbuf;
  576|   100k|	}
  577|       |
  578|  21.9k|	msgblock = ISC_LIST_HEAD(msg->rdatas);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  579|  21.9k|	if (!everything && msgblock != NULL) {
  ------------------
  |  Branch (579:6): [True: 0, False: 21.9k]
  |  Branch (579:21): [True: 0, False: 0]
  ------------------
  580|      0|		msgblock_reset(msgblock);
  581|      0|		msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  582|      0|	}
  583|  72.6k|	while (msgblock != NULL) {
  ------------------
  |  Branch (583:9): [True: 50.6k, False: 21.9k]
  ------------------
  584|  50.6k|		next_msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|  50.6k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  585|  50.6k|		ISC_LIST_UNLINK(msg->rdatas, msgblock, link);
  ------------------
  |  |  137|  50.6k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  50.6k|	do {                                                         \
  |  |  |  |  133|  50.6k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  50.6k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  50.6k|	do {                                                            \
  |  |  |  |  |  |  110|  50.6k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 30.9k, False: 19.7k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  30.9k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  30.9k|		} else {                                                \
  |  |  |  |  |  |  113|  19.7k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  19.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 19.7k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  19.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  19.7k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  19.7k|		}                                                       \
  |  |  |  |  |  |  116|  50.6k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 50.6k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  50.6k|		} else {                                                \
  |  |  |  |  |  |  119|  50.6k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  50.6k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 50.6k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  50.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  50.6k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  50.6k|		}                                                       \
  |  |  |  |  |  |  122|  50.6k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  50.6k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  50.6k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  50.6k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  50.6k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  50.6k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 50.6k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  50.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  50.6k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  50.6k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 50.6k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  50.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  50.6k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 50.6k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  50.6k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 50.6k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  586|  50.6k|		msgblock_free(msg->mctx, msgblock, sizeof(dns_rdata_t));
  587|  50.6k|		msgblock = next_msgblock;
  588|  50.6k|	}
  589|       |
  590|       |	/*
  591|       |	 * rdatalists could be empty.
  592|       |	 */
  593|       |
  594|  21.9k|	msgblock = ISC_LIST_HEAD(msg->rdatalists);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  595|  21.9k|	if (!everything && msgblock != NULL) {
  ------------------
  |  Branch (595:6): [True: 0, False: 21.9k]
  |  Branch (595:21): [True: 0, False: 0]
  ------------------
  596|      0|		msgblock_reset(msgblock);
  597|      0|		msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  598|      0|	}
  599|  93.1k|	while (msgblock != NULL) {
  ------------------
  |  Branch (599:9): [True: 71.1k, False: 21.9k]
  ------------------
  600|  71.1k|		next_msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|  71.1k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  601|  71.1k|		ISC_LIST_UNLINK(msg->rdatalists, msgblock, link);
  ------------------
  |  |  137|  71.1k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  71.1k|	do {                                                         \
  |  |  |  |  133|  71.1k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  71.1k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  71.1k|	do {                                                            \
  |  |  |  |  |  |  110|  71.1k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 51.3k, False: 19.8k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  51.3k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  51.3k|		} else {                                                \
  |  |  |  |  |  |  113|  19.8k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  19.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 19.8k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  19.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  19.8k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  19.8k|		}                                                       \
  |  |  |  |  |  |  116|  71.1k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 71.1k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  71.1k|		} else {                                                \
  |  |  |  |  |  |  119|  71.1k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  71.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 71.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  71.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  71.1k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  71.1k|		}                                                       \
  |  |  |  |  |  |  122|  71.1k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  71.1k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  71.1k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  71.1k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  71.1k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  71.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 71.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  71.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  71.1k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  71.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 71.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  71.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  71.1k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 71.1k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  71.1k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 71.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  602|  71.1k|		msgblock_free(msg->mctx, msgblock, sizeof(dns_rdatalist_t));
  603|  71.1k|		msgblock = next_msgblock;
  604|  71.1k|	}
  605|       |
  606|  21.9k|	if (msg->tsigkey != NULL) {
  ------------------
  |  Branch (606:6): [True: 0, False: 21.9k]
  ------------------
  607|      0|		dns_tsigkey_detach(&msg->tsigkey);
  608|      0|		msg->tsigkey = NULL;
  609|      0|	}
  610|       |
  611|  21.9k|	if (msg->tsigctx != NULL) {
  ------------------
  |  Branch (611:6): [True: 0, False: 21.9k]
  ------------------
  612|      0|		dst_context_destroy(&msg->tsigctx);
  613|      0|	}
  614|       |
  615|  21.9k|	if (msg->query.base != NULL) {
  ------------------
  |  Branch (615:6): [True: 0, False: 21.9k]
  ------------------
  616|      0|		if (msg->free_query != 0) {
  ------------------
  |  Branch (616:7): [True: 0, False: 0]
  ------------------
  617|      0|			isc_mem_put(msg->mctx, msg->query.base,
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  618|      0|				    msg->query.length);
  619|      0|		}
  620|      0|		msg->query.base = NULL;
  621|      0|		msg->query.length = 0;
  622|      0|	}
  623|       |
  624|  21.9k|	if (msg->saved.base != NULL) {
  ------------------
  |  Branch (624:6): [True: 21.9k, False: 0]
  ------------------
  625|  21.9k|		if (msg->free_saved != 0) {
  ------------------
  |  Branch (625:7): [True: 0, False: 21.9k]
  ------------------
  626|      0|			isc_mem_put(msg->mctx, msg->saved.base,
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  627|      0|				    msg->saved.length);
  628|      0|		}
  629|  21.9k|		msg->saved.base = NULL;
  630|  21.9k|		msg->saved.length = 0;
  631|  21.9k|	}
  632|       |
  633|       |	/*
  634|       |	 * cleanup the buffer cleanup list
  635|       |	 */
  636|  21.9k|	dynbuf = ISC_LIST_HEAD(msg->cleanup);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  637|  21.9k|	while (dynbuf != NULL) {
  ------------------
  |  Branch (637:9): [True: 0, False: 21.9k]
  ------------------
  638|      0|		next_dynbuf = ISC_LIST_NEXT(dynbuf, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  639|      0|		ISC_LIST_UNLINK(msg->cleanup, dynbuf, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  640|      0|		isc_buffer_free(&dynbuf);
  641|      0|		dynbuf = next_dynbuf;
  642|      0|	}
  643|       |
  644|       |	/*
  645|       |	 * Set other bits to normal default values.
  646|       |	 */
  647|  21.9k|	if (!everything) {
  ------------------
  |  Branch (647:6): [True: 0, False: 21.9k]
  ------------------
  648|      0|		msginit(msg);
  649|      0|	}
  650|  21.9k|}
message.c:msgblock_free:
  283|   121k|	      unsigned int sizeof_type) {
  284|   121k|	unsigned int length;
  285|       |
  286|   121k|	length = sizeof(dns_msgblock_t) + (sizeof_type * block->count);
  287|       |
  288|       |	isc_mem_put(mctx, block, length);
  ------------------
  |  |  148|   121k|	do {                                                      \
  |  |  149|   121k|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|   121k|		(p) = NULL;                                       \
  |  |  151|   121k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 121k]
  |  |  ------------------
  ------------------
  289|   121k|}
message.c:dns__message_destroy:
  749|  21.9k|dns__message_destroy(dns_message_t *msg) {
  750|  21.9k|	REQUIRE(msg != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  751|  21.9k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  752|       |
  753|  21.9k|	msgreset(msg, true);
  754|       |
  755|  21.9k|	msg->magic = 0;
  756|       |
  757|  21.9k|	if (msg->free_pools) {
  ------------------
  |  Branch (757:6): [True: 21.9k, False: 0]
  ------------------
  758|  21.9k|		dns_message_destroypools(&msg->namepool, &msg->rdspool);
  759|  21.9k|	}
  760|       |
  761|       |	isc_mem_putanddetach(&msg->mctx, msg, sizeof(dns_message_t));
  ------------------
  |  |  159|  21.9k|	do {                                                               \
  |  |  160|  21.9k|		isc__mem_putanddetach((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  161|  21.9k|		(p) = NULL;                                                \
  |  |  162|  21.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (162:11): [Folded, False: 21.9k]
  |  |  ------------------
  ------------------
  762|  21.9k|}
message.c:early_sanity_check:
 1545|  21.9k|early_sanity_check(dns_message_t *msg) {
 1546|  21.9k|	bool is_unknown_opcode = msg->opcode >= dns_opcode_max;
 1547|  21.9k|	bool is_query_response = (msg->flags & DNS_MESSAGEFLAG_QR) != 0;
 1548|  21.9k|	bool no_questions = msg->counts[DNS_SECTION_QUESTION] == 0;
 1549|  21.9k|	bool many_questions = msg->counts[DNS_SECTION_QUESTION] > 1;
 1550|  21.9k|	bool has_answer = msg->counts[DNS_SECTION_ANSWER] > 0;
 1551|  21.9k|	bool has_auth = msg->counts[DNS_SECTION_AUTHORITY] > 0;
 1552|       |
 1553|  21.9k|	if (is_unknown_opcode) {
  ------------------
  |  Branch (1553:6): [True: 7.49k, False: 14.4k]
  ------------------
 1554|  7.49k|		return DNS_R_NOTIMP;
 1555|  14.4k|	} else if (many_questions) {
  ------------------
  |  Branch (1555:13): [True: 1.44k, False: 13.0k]
  ------------------
 1556|  1.44k|		return DNS_R_FORMERR;
 1557|  13.0k|	} else if (no_questions && (msg->opcode != dns_opcode_query) &&
  ------------------
  |  Branch (1557:13): [True: 11.8k, False: 1.16k]
  |  Branch (1557:29): [True: 5.65k, False: 6.20k]
  ------------------
 1558|  5.65k|		   (msg->opcode != dns_opcode_status))
  ------------------
  |  Branch (1558:6): [True: 4.91k, False: 735]
  ------------------
 1559|  4.91k|	{
 1560|       |		/*
 1561|       |		 * Per RFC9619, the two cases where qdcount == 0 is acceptable
 1562|       |		 * are AXFR transfers and cookies, and both have opcode 0.
 1563|       |		 *
 1564|       |		 * RFC9619 also specifies that msg->opcode == dns_opcode_status
 1565|       |		 * is unspecified, so we ignore it.
 1566|       |		 */
 1567|  4.91k|		return DNS_R_FORMERR;
 1568|  8.10k|	} else if (msg->opcode == dns_opcode_notify &&
  ------------------
  |  Branch (1568:13): [True: 231, False: 7.87k]
  ------------------
 1569|    231|		   ((is_query_response && has_answer) || has_auth))
  ------------------
  |  Branch (1569:8): [True: 113, False: 118]
  |  Branch (1569:29): [True: 43, False: 70]
  |  Branch (1569:44): [True: 46, False: 142]
  ------------------
 1570|     89|	{
 1571|     89|		return DNS_R_FORMERR;
 1572|     89|	}
 1573|  8.01k|	return ISC_R_SUCCESS;
 1574|  21.9k|}
message.c:getquestions:
  931|  21.9k|	     unsigned int options) {
  932|  21.9k|	isc_region_t r;
  933|  21.9k|	unsigned int count;
  934|  21.9k|	dns_name_t *name = NULL;
  935|  21.9k|	dns_rdataset_t *rdataset = NULL;
  936|  21.9k|	dns_rdatalist_t *rdatalist = NULL;
  937|  21.9k|	isc_result_t result = ISC_R_SUCCESS;
  938|  21.9k|	dns_rdatatype_t rdtype;
  939|  21.9k|	dns_rdataclass_t rdclass;
  940|  21.9k|	dns_namelist_t *section = &msg->sections[DNS_SECTION_QUESTION];
  941|  21.9k|	bool best_effort = ((options & DNS_MESSAGEPARSE_BESTEFFORT) != 0);
  ------------------
  |  |  202|  21.9k|	0x0002 /*%< return a message if a \
  ------------------
  942|  21.9k|	bool seen_problem = false;
  943|  21.9k|	bool free_name = false;
  944|       |
  945|  21.9k|	REQUIRE(msg->counts[DNS_SECTION_QUESTION] <= 1 || best_effort);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  24.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 19.4k, False: 2.52k]
  |  |  |  |  |  Branch (42:11): [True: 2.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  946|       |
  947|   192k|	for (count = 0; count < msg->counts[DNS_SECTION_QUESTION]; count++) {
  ------------------
  |  Branch (947:18): [True: 170k, False: 21.8k]
  ------------------
  948|   170k|		name = NULL;
  949|   170k|		dns_message_gettempname(msg, &name);
  950|   170k|		free_name = true;
  951|       |
  952|       |		/*
  953|       |		 * Parse the name out of this packet.
  954|       |		 */
  955|   170k|		isc_buffer_remainingregion(source, &r);
  956|   170k|		isc_buffer_setactive(source, r.length);
  957|   170k|		CHECK(getname(name, source, msg, dctx));
  ------------------
  |  |  255|   170k|	{                                      \
  |  |  256|   170k|		result = (r);                  \
  |  |  257|   170k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 104, False: 170k]
  |  |  ------------------
  |  |  258|    104|			goto cleanup;          \
  |  |  259|    104|		}                              \
  |  |  260|   170k|	}
  ------------------
  958|       |
  959|   170k|		ISC_LIST_APPEND(*section, name, link);
  ------------------
  |  |  100|   170k|	do {                                                  \
  |  |  101|   170k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|   170k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|   170k|	do {                                            \
  |  |  |  |   89|   170k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 166k, False: 4.09k]
  |  |  |  |  ------------------
  |  |  |  |   90|   166k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|   166k|		} else {                                \
  |  |  |  |   92|  4.09k|			(list).head = (elt);            \
  |  |  |  |   93|  4.09k|		}                                       \
  |  |  |  |   94|   170k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|   170k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|   170k|		(list).tail = (elt);                    \
  |  |  |  |   97|   170k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 170k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|   170k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 170k]
  |  |  ------------------
  ------------------
  960|       |
  961|   170k|		free_name = false;
  962|       |
  963|       |		/*
  964|       |		 * Get type and class.
  965|       |		 */
  966|   170k|		isc_buffer_remainingregion(source, &r);
  967|   170k|		if (r.length < 4) {
  ------------------
  |  Branch (967:7): [True: 13, False: 170k]
  ------------------
  968|     13|			CLEANUP(ISC_R_UNEXPECTEDEND);
  ------------------
  |  |  266|     13|	{                     \
  |  |  267|     13|		result = (r); \
  |  |  268|     13|		goto cleanup; \
  |  |  269|     13|	}
  ------------------
  969|      0|		}
  970|   170k|		rdtype = isc_buffer_getuint16(source);
  971|   170k|		rdclass = isc_buffer_getuint16(source);
  972|       |
  973|       |		/*
  974|       |		 * Notify and update messages need to specify the data class.
  975|       |		 */
  976|   170k|		if ((msg->opcode == dns_opcode_update ||
  ------------------
  |  Branch (976:8): [True: 3.53k, False: 167k]
  ------------------
  977|   167k|		     msg->opcode == dns_opcode_notify) &&
  ------------------
  |  Branch (977:8): [True: 3.37k, False: 163k]
  ------------------
  978|  6.90k|		    (rdclass == dns_rdataclass_none ||
  ------------------
  |  |   32|  13.8k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (978:8): [True: 253, False: 6.65k]
  ------------------
  979|  6.65k|		     rdclass == dns_rdataclass_any))
  ------------------
  |  |   34|  6.65k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (979:8): [True: 251, False: 6.40k]
  ------------------
  980|    504|		{
  981|    504|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|    504|	do {                                 \
  |  |  912|    504|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 504, False: 0]
  |  |  ------------------
  |  |  913|    504|			seen_problem = true; \
  |  |  914|    504|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|    504|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 504]
  |  |  ------------------
  ------------------
  982|    504|		}
  983|       |
  984|       |		/*
  985|       |		 * If this class is different than the one we already read,
  986|       |		 * this is an error.
  987|       |		 */
  988|   170k|		if (msg->rdclass_set == 0) {
  ------------------
  |  Branch (988:7): [True: 4.08k, False: 166k]
  ------------------
  989|  4.08k|			msg->rdclass = rdclass;
  990|  4.08k|			msg->rdclass_set = 1;
  991|   166k|		} else if (msg->rdclass != rdclass) {
  ------------------
  |  Branch (991:14): [True: 159k, False: 7.09k]
  ------------------
  992|   159k|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|   159k|	do {                                 \
  |  |  912|   159k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 159k, False: 0]
  |  |  ------------------
  |  |  913|   159k|			seen_problem = true; \
  |  |  914|   159k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|   159k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 159k]
  |  |  ------------------
  ------------------
  993|   159k|		}
  994|       |
  995|       |		/*
  996|       |		 * Is this a TKEY query?
  997|       |		 */
  998|   170k|		if (rdtype == dns_rdatatype_tkey) {
  ------------------
  |  |  189|   170k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (998:7): [True: 332, False: 170k]
  ------------------
  999|    332|			msg->tkey = 1;
 1000|    332|		}
 1001|       |
 1002|       |		/*
 1003|       |		 * Allocate a new rdatalist.
 1004|       |		 */
 1005|   170k|		rdatalist = newrdatalist(msg);
 1006|   170k|		rdatalist->type = rdtype;
 1007|   170k|		rdatalist->rdclass = rdclass;
 1008|   170k|		rdatalist->covers = dns_rdatatype_none;
  ------------------
  |  |  114|   170k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
 1009|       |
 1010|       |		/*
 1011|       |		 * Convert rdatalist to rdataset, and attach the latter to
 1012|       |		 * the name.
 1013|       |		 */
 1014|   170k|		dns_message_gettemprdataset(msg, &rdataset);
 1015|   170k|		dns_rdatalist_tordataset(rdatalist, rdataset);
 1016|       |
 1017|   170k|		rdataset->attributes.question = true;
 1018|       |
 1019|   170k|		ISC_LIST_APPEND(name->list, rdataset, link);
  ------------------
  |  |  100|   170k|	do {                                                  \
  |  |  101|   170k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|   170k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|   170k|	do {                                            \
  |  |  |  |   89|   170k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 170k]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|   170k|		} else {                                \
  |  |  |  |   92|   170k|			(list).head = (elt);            \
  |  |  |  |   93|   170k|		}                                       \
  |  |  |  |   94|   170k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|   170k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|   170k|		(list).tail = (elt);                    \
  |  |  |  |   97|   170k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 170k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|   170k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 170k]
  |  |  ------------------
  ------------------
 1020|       |
 1021|   170k|		rdataset = NULL;
 1022|   170k|	}
 1023|       |
 1024|  21.8k|	if (seen_problem) {
  ------------------
  |  Branch (1024:6): [True: 2.35k, False: 19.4k]
  ------------------
 1025|       |		/* XXX test coverage */
 1026|  2.35k|		result = DNS_R_RECOVERABLE;
 1027|  2.35k|	}
 1028|       |
 1029|  21.9k|cleanup:
 1030|  21.9k|	if (rdataset != NULL) {
  ------------------
  |  Branch (1030:6): [True: 0, False: 21.9k]
  ------------------
 1031|      0|		dns_rdataset_cleanup(rdataset);
  ------------------
  |  |  297|      0|	if (rdataset != NULL && dns_rdataset_isassociated(rdataset)) { \
  |  |  ------------------
  |  |  |  Branch (297:6): [True: 0, False: 0]
  |  |  |  Branch (297:26): [True: 0, False: 0]
  |  |  ------------------
  |  |  298|      0|		dns__rdataset_disassociate(rdataset DNS__DB_FILELINE); \
  |  |  299|      0|	}
  ------------------
 1032|      0|		dns_message_puttemprdataset(msg, &rdataset);
 1033|      0|	}
 1034|       |
 1035|  21.9k|	if (free_name) {
  ------------------
  |  Branch (1035:6): [True: 104, False: 21.8k]
  ------------------
 1036|    104|		dns_message_puttempname(msg, &name);
 1037|    104|	}
 1038|       |
 1039|  21.9k|	return result;
 1040|  21.8k|}
message.c:getname:
  830|   467k|	dns_decompress_t dctx) {
  831|   467k|	isc_buffer_t *scratch;
  832|   467k|	isc_result_t result;
  833|   467k|	unsigned int tries;
  834|       |
  835|   467k|	scratch = currentbuffer(msg);
  836|       |
  837|       |	/*
  838|       |	 * First try:  use current buffer.
  839|       |	 * Second try:  allocate a new buffer and use that.
  840|       |	 */
  841|   467k|	tries = 0;
  842|   498k|	while (tries < 2) {
  ------------------
  |  Branch (842:9): [True: 498k, False: 0]
  ------------------
  843|   498k|		result = dns_name_fromwire(name, source, dctx, scratch);
  844|       |
  845|   498k|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (845:7): [True: 31.6k, False: 467k]
  ------------------
  846|  31.6k|			tries++;
  847|       |
  848|  31.6k|			newbuffer(msg, SCRATCHPAD_SIZE);
  ------------------
  |  |  123|  31.6k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  849|  31.6k|			scratch = currentbuffer(msg);
  850|  31.6k|			dns_name_reset(name);
  851|   467k|		} else {
  852|   467k|			return result;
  853|   467k|		}
  854|   498k|	}
  855|       |
  856|      0|	UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  857|   467k|}
message.c:currentbuffer:
  306|   837k|currentbuffer(dns_message_t *msg) {
  307|   837k|	isc_buffer_t *dynbuf;
  308|       |
  309|   837k|	dynbuf = ISC_LIST_TAIL(msg->scratchpad);
  ------------------
  |  |   63|   837k|#define ISC_LIST_TAIL(list)  ((list).tail)
  ------------------
  310|   837k|	INSIST(dynbuf != NULL);
  ------------------
  |  |  202|   837k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   837k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 837k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   837k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  311|       |
  312|   837k|	return dynbuf;
  313|   837k|}
message.c:newbuffer:
  297|  78.3k|newbuffer(dns_message_t *msg, unsigned int size) {
  298|  78.3k|	isc_buffer_t *dynbuf = NULL;
  299|       |
  300|  78.3k|	isc_buffer_allocate(msg->mctx, &dynbuf, size);
  301|       |
  302|       |	ISC_LIST_APPEND(msg->scratchpad, dynbuf, link);
  ------------------
  |  |  100|  78.3k|	do {                                                  \
  |  |  101|  78.3k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  78.3k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  78.3k|	do {                                            \
  |  |  |  |   89|  78.3k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 78.3k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   90|  78.3k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  78.3k|		} else {                                \
  |  |  |  |   92|      0|			(list).head = (elt);            \
  |  |  |  |   93|      0|		}                                       \
  |  |  |  |   94|  78.3k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  78.3k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  78.3k|		(list).tail = (elt);                    \
  |  |  |  |   97|  78.3k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 78.3k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  78.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 78.3k]
  |  |  ------------------
  ------------------
  303|  78.3k|}
message.c:getsection:
 1056|  59.5k|	   dns_section_t sectionid, unsigned int options) {
 1057|  59.5k|	isc_region_t r;
 1058|  59.5k|	unsigned int count, rdatalen;
 1059|  59.5k|	dns_name_t *name = NULL;
 1060|  59.5k|	dns_name_t *found_name = NULL;
 1061|  59.5k|	dns_rdataset_t *rdataset = NULL;
 1062|  59.5k|	dns_rdataset_t *found_rdataset = NULL;
 1063|  59.5k|	dns_rdatalist_t *rdatalist = NULL;
 1064|  59.5k|	isc_result_t result = ISC_R_SUCCESS;
 1065|  59.5k|	dns_rdatatype_t rdtype, covers;
 1066|  59.5k|	dns_rdataclass_t rdclass;
 1067|  59.5k|	dns_rdata_t *rdata = NULL;
 1068|  59.5k|	dns_ttl_t ttl;
 1069|  59.5k|	dns_namelist_t *section = &msg->sections[sectionid];
 1070|  59.5k|	bool free_name = false, seen_problem = false;
 1071|  59.5k|	bool free_hashmaps = false;
 1072|  59.5k|	bool preserve_order = ((options & DNS_MESSAGEPARSE_PRESERVEORDER) != 0);
  ------------------
  |  |  200|  59.5k|#define DNS_MESSAGEPARSE_PRESERVEORDER 0x0001 /*%< preserve rdata order */
  ------------------
 1073|  59.5k|	bool best_effort = ((options & DNS_MESSAGEPARSE_BESTEFFORT) != 0);
  ------------------
  |  |  202|  59.5k|	0x0002 /*%< return a message if a \
  ------------------
 1074|  59.5k|	bool isedns, issigzero, istsig;
 1075|  59.5k|	isc_hashmap_t *name_map = NULL;
 1076|       |
 1077|  59.5k|	if (msg->counts[sectionid] > 1) {
  ------------------
  |  Branch (1077:6): [True: 13.0k, False: 46.4k]
  ------------------
 1078|  13.0k|		isc_hashmap_create(msg->mctx, 1, &name_map);
 1079|  13.0k|	}
 1080|       |
 1081|   351k|	for (count = 0; count < msg->counts[sectionid]; count++) {
  ------------------
  |  Branch (1081:18): [True: 296k, False: 55.1k]
  ------------------
 1082|   296k|		int recstart = source->current;
 1083|   296k|		bool skip_name_search, skip_type_search;
 1084|       |
 1085|   296k|		skip_name_search = false;
 1086|   296k|		skip_type_search = false;
 1087|   296k|		isedns = false;
 1088|   296k|		issigzero = false;
 1089|   296k|		istsig = false;
 1090|   296k|		found_rdataset = NULL;
 1091|       |
 1092|   296k|		name = NULL;
 1093|   296k|		dns_message_gettempname(msg, &name);
 1094|   296k|		free_name = true;
 1095|       |
 1096|       |		/*
 1097|       |		 * Parse the name out of this packet.
 1098|       |		 */
 1099|   296k|		isc_buffer_remainingregion(source, &r);
 1100|   296k|		isc_buffer_setactive(source, r.length);
 1101|   296k|		CHECK(getname(name, source, msg, dctx));
  ------------------
  |  |  255|   296k|	{                                      \
  |  |  256|   296k|		result = (r);                  \
  |  |  257|   296k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 1.64k, False: 294k]
  |  |  ------------------
  |  |  258|  1.64k|			goto cleanup;          \
  |  |  259|  1.64k|		}                              \
  |  |  260|   296k|	}
  ------------------
 1102|       |
 1103|       |		/*
 1104|       |		 * Get type, class, ttl, and rdatalen.  Verify that at least
 1105|       |		 * rdatalen bytes remain.  (Some of this is deferred to
 1106|       |		 * later.)
 1107|       |		 */
 1108|   294k|		isc_buffer_remainingregion(source, &r);
 1109|   294k|		if (r.length < 2 + 2 + 4 + 2) {
  ------------------
  |  Branch (1109:7): [True: 161, False: 294k]
  ------------------
 1110|    161|			CLEANUP(ISC_R_UNEXPECTEDEND);
  ------------------
  |  |  266|    161|	{                     \
  |  |  267|    161|		result = (r); \
  |  |  268|    161|		goto cleanup; \
  |  |  269|    161|	}
  ------------------
 1111|      0|		}
 1112|   294k|		rdtype = isc_buffer_getuint16(source);
 1113|   294k|		rdclass = isc_buffer_getuint16(source);
 1114|       |
 1115|       |		/*
 1116|       |		 * If there was no question section, we may not yet have
 1117|       |		 * established a class.  Do so now.
 1118|       |		 */
 1119|   294k|		if (msg->rdclass_set == 0 &&
  ------------------
  |  Branch (1119:7): [True: 20.9k, False: 273k]
  ------------------
 1120|  20.9k|		    rdtype != dns_rdatatype_opt &&  /* class is UDP SIZE */
  ------------------
  |  |  155|   315k|#define dns_rdatatype_opt	((dns_rdatatype_t)dns_rdatatype_opt)
  ------------------
  |  Branch (1120:7): [True: 15.5k, False: 5.37k]
  ------------------
 1121|  15.5k|		    rdtype != dns_rdatatype_tsig && /* class is ANY */
  ------------------
  |  |  190|   310k|#define dns_rdatatype_tsig	((dns_rdatatype_t)dns_rdatatype_tsig)
  ------------------
  |  Branch (1121:7): [True: 14.7k, False: 844]
  ------------------
 1122|  14.7k|		    rdtype != dns_rdatatype_tkey)   /* class is undefined */
  ------------------
  |  |  189|  14.7k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (1122:7): [True: 14.2k, False: 531]
  ------------------
 1123|  14.2k|		{
 1124|  14.2k|			msg->rdclass = rdclass;
 1125|  14.2k|			msg->rdclass_set = 1;
 1126|  14.2k|		}
 1127|       |
 1128|       |		/*
 1129|       |		 * If this class is different than the one in the question
 1130|       |		 * section, bail.
 1131|       |		 */
 1132|   294k|		if (msg->opcode != dns_opcode_update &&
  ------------------
  |  Branch (1132:7): [True: 259k, False: 35.4k]
  ------------------
 1133|   259k|		    rdtype != dns_rdatatype_tsig &&
  ------------------
  |  |  190|   553k|#define dns_rdatatype_tsig	((dns_rdatatype_t)dns_rdatatype_tsig)
  ------------------
  |  Branch (1133:7): [True: 255k, False: 4.05k]
  ------------------
 1134|   255k|		    rdtype != dns_rdatatype_opt &&
  ------------------
  |  |  155|   549k|#define dns_rdatatype_opt	((dns_rdatatype_t)dns_rdatatype_opt)
  ------------------
  |  Branch (1134:7): [True: 245k, False: 9.36k]
  ------------------
 1135|   245k|		    rdtype != dns_rdatatype_key &&  /* in a TKEY query */
  ------------------
  |  |  139|   540k|#define dns_rdatatype_key	((dns_rdatatype_t)dns_rdatatype_key)
  ------------------
  |  Branch (1135:7): [True: 244k, False: 1.61k]
  ------------------
 1136|   244k|		    rdtype != dns_rdatatype_sig &&  /* SIG(0) */
  ------------------
  |  |  138|   538k|#define dns_rdatatype_sig	((dns_rdatatype_t)dns_rdatatype_sig)
  ------------------
  |  Branch (1136:7): [True: 240k, False: 3.75k]
  ------------------
 1137|   240k|		    rdtype != dns_rdatatype_tkey && /* Win2000 TKEY */
  ------------------
  |  |  189|   534k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (1137:7): [True: 237k, False: 2.63k]
  ------------------
 1138|   237k|		    msg->rdclass != dns_rdataclass_any &&
  ------------------
  |  |   34|   532k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1138:7): [True: 234k, False: 2.69k]
  ------------------
 1139|   234k|		    msg->rdclass != rdclass)
  ------------------
  |  Branch (1139:7): [True: 179k, False: 55.0k]
  ------------------
 1140|   179k|		{
 1141|   179k|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|   179k|	do {                                 \
  |  |  912|   179k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 179k, False: 0]
  |  |  ------------------
  |  |  913|   179k|			seen_problem = true; \
  |  |  914|   179k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|   179k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 179k]
  |  |  ------------------
  ------------------
 1142|   179k|		}
 1143|       |
 1144|       |		/*
 1145|       |		 * If this is not a TKEY query/response then the KEY
 1146|       |		 * record's class needs to match.
 1147|       |		 */
 1148|   294k|		if (msg->opcode != dns_opcode_update && !msg->tkey &&
  ------------------
  |  Branch (1148:7): [True: 259k, False: 35.4k]
  |  Branch (1148:43): [True: 258k, False: 616]
  ------------------
 1149|   258k|		    rdtype == dns_rdatatype_key &&
  ------------------
  |  |  139|   553k|#define dns_rdatatype_key	((dns_rdatatype_t)dns_rdatatype_key)
  ------------------
  |  Branch (1149:7): [True: 1.61k, False: 256k]
  ------------------
 1150|  1.61k|		    msg->rdclass != dns_rdataclass_any &&
  ------------------
  |  |   34|   296k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1150:7): [True: 1.39k, False: 225]
  ------------------
 1151|  1.39k|		    msg->rdclass != rdclass)
  ------------------
  |  Branch (1151:7): [True: 918, False: 475]
  ------------------
 1152|    918|		{
 1153|    918|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|    918|	do {                                 \
  |  |  912|    918|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 918, False: 0]
  |  |  ------------------
  |  |  913|    918|			seen_problem = true; \
  |  |  914|    918|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|    918|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 918]
  |  |  ------------------
  ------------------
 1154|    918|		}
 1155|       |
 1156|       |		/*
 1157|       |		 * Special type handling for TSIG, OPT, and TKEY.
 1158|       |		 */
 1159|   294k|		if (rdtype == dns_rdatatype_tsig) {
  ------------------
  |  |  190|   294k|#define dns_rdatatype_tsig	((dns_rdatatype_t)dns_rdatatype_tsig)
  ------------------
  |  Branch (1159:7): [True: 5.09k, False: 289k]
  ------------------
 1160|       |			/*
 1161|       |			 * If it is a tsig, verify that it is in the
 1162|       |			 * additional data section.
 1163|       |			 */
 1164|  5.09k|			if (sectionid != DNS_SECTION_ADDITIONAL ||
  ------------------
  |  Branch (1164:8): [True: 2.81k, False: 2.27k]
  ------------------
 1165|  2.27k|			    rdclass != dns_rdataclass_any ||
  ------------------
  |  |   34|  7.36k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1165:8): [True: 972, False: 1.30k]
  ------------------
 1166|  1.30k|			    count != msg->counts[sectionid] - 1)
  ------------------
  |  Branch (1166:8): [True: 1.24k, False: 55]
  ------------------
 1167|  5.03k|			{
 1168|  5.03k|				DO_ERROR(DNS_R_BADTSIG);
  ------------------
  |  |  911|  5.03k|	do {                                 \
  |  |  912|  5.03k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 5.03k, False: 0]
  |  |  ------------------
  |  |  913|  5.03k|			seen_problem = true; \
  |  |  914|  5.03k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  5.03k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 5.03k]
  |  |  ------------------
  ------------------
 1169|  5.03k|			} else {
 1170|     55|				skip_name_search = true;
 1171|     55|				skip_type_search = true;
 1172|     55|				istsig = true;
 1173|     55|			}
 1174|   289k|		} else if (rdtype == dns_rdatatype_opt) {
  ------------------
  |  |  155|   289k|#define dns_rdatatype_opt	((dns_rdatatype_t)dns_rdatatype_opt)
  ------------------
  |  Branch (1174:14): [True: 10.3k, False: 279k]
  ------------------
 1175|       |			/*
 1176|       |			 * The name of an OPT record must be ".", it
 1177|       |			 * must be in the additional data section, and
 1178|       |			 * it must be the first OPT we've seen.
 1179|       |			 */
 1180|  10.3k|			if (!dns_name_equal(dns_rootname, name) ||
  ------------------
  |  Branch (1180:8): [True: 755, False: 9.54k]
  ------------------
 1181|  9.54k|			    sectionid != DNS_SECTION_ADDITIONAL ||
  ------------------
  |  Branch (1181:8): [True: 4.17k, False: 5.36k]
  ------------------
 1182|  5.36k|			    msg->opt != NULL)
  ------------------
  |  Branch (1182:8): [True: 872, False: 4.49k]
  ------------------
 1183|  5.80k|			{
 1184|  5.80k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  5.80k|	do {                                 \
  |  |  912|  5.80k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 5.80k, False: 0]
  |  |  ------------------
  |  |  913|  5.80k|			seen_problem = true; \
  |  |  914|  5.80k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  5.80k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 5.80k]
  |  |  ------------------
  ------------------
 1185|  5.80k|			} else {
 1186|  4.49k|				skip_name_search = true;
 1187|  4.49k|				skip_type_search = true;
 1188|  4.49k|				isedns = true;
 1189|  4.49k|			}
 1190|   279k|		} else if (rdtype == dns_rdatatype_tkey) {
  ------------------
  |  |  189|   279k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (1190:14): [True: 3.01k, False: 276k]
  ------------------
 1191|       |			/*
 1192|       |			 * A TKEY must be in the additional section if this
 1193|       |			 * is a query, and the answer section if this is a
 1194|       |			 * response.  Unless it's a Win2000 client.
 1195|       |			 *
 1196|       |			 * Its class is ignored.
 1197|       |			 */
 1198|  3.01k|			dns_section_t tkeysection;
 1199|       |
 1200|  3.01k|			if ((msg->flags & DNS_MESSAGEFLAG_QR) == 0) {
  ------------------
  |  Branch (1200:8): [True: 2.08k, False: 929]
  ------------------
 1201|  2.08k|				tkeysection = DNS_SECTION_ADDITIONAL;
 1202|  2.08k|			} else {
 1203|    929|				tkeysection = DNS_SECTION_ANSWER;
 1204|    929|			}
 1205|  3.01k|			if (sectionid != tkeysection &&
  ------------------
  |  Branch (1205:8): [True: 2.04k, False: 965]
  ------------------
 1206|  2.04k|			    sectionid != DNS_SECTION_ANSWER)
  ------------------
  |  Branch (1206:8): [True: 1.04k, False: 1.00k]
  ------------------
 1207|  1.04k|			{
 1208|  1.04k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  1.04k|	do {                                 \
  |  |  912|  1.04k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 1.04k, False: 0]
  |  |  ------------------
  |  |  913|  1.04k|			seen_problem = true; \
  |  |  914|  1.04k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  1.04k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 1.04k]
  |  |  ------------------
  ------------------
 1209|  1.04k|			}
 1210|  3.01k|		}
 1211|       |
 1212|       |		/*
 1213|       |		 * ... now get ttl and rdatalen, and check buffer.
 1214|       |		 */
 1215|   294k|		ttl = isc_buffer_getuint32(source);
 1216|   294k|		rdatalen = isc_buffer_getuint16(source);
 1217|   294k|		r.length -= (2 + 2 + 4 + 2);
 1218|   294k|		if (r.length < rdatalen) {
  ------------------
  |  Branch (1218:7): [True: 165, False: 294k]
  ------------------
 1219|    165|			CLEANUP(ISC_R_UNEXPECTEDEND);
  ------------------
  |  |  266|    165|	{                     \
  |  |  267|    165|		result = (r); \
  |  |  268|    165|		goto cleanup; \
  |  |  269|    165|	}
  ------------------
 1220|      0|		}
 1221|       |
 1222|       |		/*
 1223|       |		 * Read the rdata from the wire format.  Interpret the
 1224|       |		 * rdata according to its actual class, even if it had a
 1225|       |		 * DynDNS meta-class in the packet (unless this is a TSIG).
 1226|       |		 * Then put the meta-class back into the finished rdata.
 1227|       |		 */
 1228|   294k|		rdata = newrdata(msg);
 1229|   294k|		if (msg->opcode == dns_opcode_update &&
  ------------------
  |  Branch (1229:7): [True: 35.4k, False: 258k]
  ------------------
 1230|  35.4k|		    update(sectionid, rdclass))
  ------------------
  |  Branch (1230:7): [True: 2.89k, False: 32.5k]
  ------------------
 1231|  2.89k|		{
 1232|  2.89k|			if (rdatalen != 0) {
  ------------------
  |  Branch (1232:8): [True: 1, False: 2.89k]
  ------------------
 1233|      1|				CLEANUP(DNS_R_FORMERR);
  ------------------
  |  |  266|      1|	{                     \
  |  |  267|      1|		result = (r); \
  |  |  268|      1|		goto cleanup; \
  |  |  269|      1|	}
  ------------------
 1234|      0|			}
 1235|       |			/*
 1236|       |			 * When the rdata is empty, the data pointer is
 1237|       |			 * never dereferenced, but it must still be non-NULL.
 1238|       |			 * Casting 1 rather than "" avoids warnings about
 1239|       |			 * discarding the const attribute of a string,
 1240|       |			 * for compilers that would warn about such things.
 1241|       |			 */
 1242|  2.89k|			rdata->data = (unsigned char *)1;
 1243|  2.89k|			rdata->length = 0;
 1244|  2.89k|			rdata->rdclass = rdclass;
 1245|  2.89k|			rdata->type = rdtype;
 1246|  2.89k|			rdata->flags = DNS_RDATA_UPDATE;
  ------------------
  |  |  166|  2.89k|#define DNS_RDATA_UPDATE  0x0001 /*%< update pseudo record. */
  ------------------
 1247|  2.89k|			result = ISC_R_SUCCESS;
 1248|   291k|		} else if (rdclass == dns_rdataclass_none &&
  ------------------
  |  |   32|   582k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (1248:14): [True: 5.09k, False: 286k]
  ------------------
 1249|  5.09k|			   msg->opcode == dns_opcode_update &&
  ------------------
  |  Branch (1249:7): [True: 1.03k, False: 4.05k]
  ------------------
 1250|  1.03k|			   sectionid == DNS_SECTION_UPDATE)
  ------------------
  |  |  186|  1.03k|#define DNS_SECTION_UPDATE	 DNS_SECTION_AUTHORITY
  ------------------
  |  Branch (1250:7): [True: 521, False: 515]
  ------------------
 1251|    521|		{
 1252|    521|			result = getrdata(source, msg, dctx, msg->rdclass,
 1253|    521|					  rdtype, rdatalen, rdata);
 1254|   290k|		} else {
 1255|   290k|			result = getrdata(source, msg, dctx, rdclass, rdtype,
 1256|   290k|					  rdatalen, rdata);
 1257|   290k|		}
 1258|   294k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1258:7): [True: 2.36k, False: 292k]
  ------------------
 1259|  2.36k|			goto cleanup;
 1260|  2.36k|		}
 1261|   292k|		rdata->rdclass = rdclass;
 1262|   292k|		if (rdtype == dns_rdatatype_rrsig && rdata->flags == 0) {
  ------------------
  |  |  160|   584k|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (1262:7): [True: 4.08k, False: 287k]
  |  Branch (1262:40): [True: 3.80k, False: 286]
  ------------------
 1263|  3.80k|			covers = dns_rdata_covers(rdata);
 1264|       |			/* A signature can only cover a real rdata type */
 1265|  3.80k|			if (covers == dns_rdatatype_none ||
  ------------------
  |  |  114|  7.60k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  |  Branch (1265:8): [True: 324, False: 3.47k]
  ------------------
 1266|  3.47k|			    dns_rdatatype_ismeta(covers) ||
  ------------------
  |  Branch (1266:8): [True: 285, False: 3.19k]
  ------------------
 1267|  3.19k|			    dns_rdatatype_issig(covers))
  ------------------
  |  Branch (1267:8): [True: 125, False: 3.06k]
  ------------------
 1268|    734|			{
 1269|    734|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|    734|	do {                                 \
  |  |  912|    734|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 734, False: 0]
  |  |  ------------------
  |  |  913|    734|			seen_problem = true; \
  |  |  914|    734|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|    734|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 734]
  |  |  ------------------
  ------------------
 1270|    734|			}
 1271|   288k|		} else if (rdtype == dns_rdatatype_sig /* SIG(0) */ &&
  ------------------
  |  |  138|   576k|#define dns_rdatatype_sig	((dns_rdatatype_t)dns_rdatatype_sig)
  ------------------
  |  Branch (1271:14): [True: 4.76k, False: 283k]
  ------------------
 1272|  4.76k|			   rdata->flags == 0)
  ------------------
  |  Branch (1272:7): [True: 4.23k, False: 530]
  ------------------
 1273|  4.23k|		{
 1274|  4.23k|			covers = dns_rdata_covers(rdata);
 1275|  4.23k|			if (covers == dns_rdatatype_none) {
  ------------------
  |  |  114|  4.23k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  |  Branch (1275:8): [True: 1.17k, False: 3.05k]
  ------------------
 1276|  1.17k|				if (sectionid != DNS_SECTION_ADDITIONAL ||
  ------------------
  |  Branch (1276:9): [True: 452, False: 727]
  ------------------
 1277|    727|				    count != msg->counts[sectionid] - 1 ||
  ------------------
  |  Branch (1277:9): [True: 632, False: 95]
  ------------------
 1278|     95|				    !dns_name_equal(name, dns_rootname))
  ------------------
  |  Branch (1278:9): [True: 15, False: 80]
  ------------------
 1279|  1.09k|				{
 1280|  1.09k|					DO_ERROR(DNS_R_BADSIG0);
  ------------------
  |  |  911|  1.09k|	do {                                 \
  |  |  912|  1.09k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 1.09k, False: 0]
  |  |  ------------------
  |  |  913|  1.09k|			seen_problem = true; \
  |  |  914|  1.09k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  1.09k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 1.09k]
  |  |  ------------------
  ------------------
 1281|  1.09k|				} else {
 1282|     80|					skip_name_search = true;
 1283|     80|					skip_type_search = true;
 1284|     80|					issigzero = true;
 1285|     80|				}
 1286|  3.05k|			} else {
 1287|  3.05k|				covers = dns_rdatatype_none;
  ------------------
  |  |  114|  3.05k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
 1288|  3.05k|			}
 1289|   283k|		} else {
 1290|   283k|			covers = dns_rdatatype_none;
  ------------------
  |  |  114|   283k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
 1291|   283k|		}
 1292|       |
 1293|       |		/*
 1294|       |		 * Check the ownername of NSEC3 records
 1295|       |		 */
 1296|   292k|		if (rdtype == dns_rdatatype_nsec3 &&
  ------------------
  |  |  164|   584k|#define dns_rdatatype_nsec3	((dns_rdatatype_t)dns_rdatatype_nsec3)
  ------------------
  |  Branch (1296:7): [True: 5.06k, False: 286k]
  ------------------
 1297|  5.06k|		    !dns_rdata_checkowner(name, msg->rdclass, rdtype, false))
  ------------------
  |  Branch (1297:7): [True: 19, False: 5.04k]
  ------------------
 1298|     19|		{
 1299|     19|			CLEANUP(DNS_R_BADOWNERNAME);
  ------------------
  |  |  266|     19|	{                     \
  |  |  267|     19|		result = (r); \
  |  |  268|     19|		goto cleanup; \
  |  |  269|     19|	}
  ------------------
 1300|      0|		}
 1301|       |
 1302|       |		/*
 1303|       |		 * If we are doing a dynamic update or this is a meta-type,
 1304|       |		 * don't bother searching for a name, just append this one
 1305|       |		 * to the end of the message.
 1306|       |		 */
 1307|   291k|		if (preserve_order || msg->opcode == dns_opcode_update ||
  ------------------
  |  Branch (1307:7): [True: 0, False: 291k]
  |  Branch (1307:25): [True: 35.1k, False: 256k]
  ------------------
 1308|   256k|		    skip_name_search)
  ------------------
  |  Branch (1308:7): [True: 3.83k, False: 252k]
  ------------------
 1309|  39.0k|		{
 1310|  39.0k|			if (!isedns && !istsig && !issigzero) {
  ------------------
  |  Branch (1310:8): [True: 34.6k, False: 4.39k]
  |  Branch (1310:19): [True: 34.5k, False: 46]
  |  Branch (1310:30): [True: 34.5k, False: 80]
  ------------------
 1311|  34.5k|				ISC_LIST_APPEND(*section, name, link);
  ------------------
  |  |  100|  34.5k|	do {                                                  \
  |  |  101|  34.5k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  34.5k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  34.5k|	do {                                            \
  |  |  |  |   89|  34.5k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 32.3k, False: 2.16k]
  |  |  |  |  ------------------
  |  |  |  |   90|  32.3k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  32.3k|		} else {                                \
  |  |  |  |   92|  2.16k|			(list).head = (elt);            \
  |  |  |  |   93|  2.16k|		}                                       \
  |  |  |  |   94|  34.5k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  34.5k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  34.5k|		(list).tail = (elt);                    \
  |  |  |  |   97|  34.5k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 34.5k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  34.5k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 34.5k]
  |  |  ------------------
  ------------------
 1312|  34.5k|				free_name = false;
 1313|  34.5k|			}
 1314|   252k|		} else {
 1315|   252k|			if (name_map == NULL) {
  ------------------
  |  Branch (1315:8): [True: 6.58k, False: 246k]
  ------------------
 1316|  6.58k|				result = ISC_R_SUCCESS;
 1317|  6.58k|				goto skip_name_check;
 1318|  6.58k|			}
 1319|       |
 1320|       |			/*
 1321|       |			 * Run through the section, looking to see if this name
 1322|       |			 * is already there.  If it is found, put back the
 1323|       |			 * allocated name since we no longer need it, and set
 1324|       |			 * our name pointer to point to the name we found.
 1325|       |			 */
 1326|   246k|			result = isc_hashmap_add(name_map, dns_name_hash(name),
 1327|   246k|						 name_match, name, name,
 1328|   246k|						 (void **)&found_name);
 1329|       |
 1330|       |			/*
 1331|       |			 * If it is a new name, append to the section.
 1332|       |			 */
 1333|   252k|		skip_name_check:
 1334|   252k|			switch (result) {
 1335|  41.1k|			case ISC_R_SUCCESS:
  ------------------
  |  Branch (1335:4): [True: 41.1k, False: 211k]
  ------------------
 1336|  41.1k|				ISC_LIST_APPEND(*section, name, link);
  ------------------
  |  |  100|  41.1k|	do {                                                  \
  |  |  101|  41.1k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  41.1k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  41.1k|	do {                                            \
  |  |  |  |   89|  41.1k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 24.4k, False: 16.6k]
  |  |  |  |  ------------------
  |  |  |  |   90|  24.4k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  24.4k|		} else {                                \
  |  |  |  |   92|  16.6k|			(list).head = (elt);            \
  |  |  |  |   93|  16.6k|		}                                       \
  |  |  |  |   94|  41.1k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  41.1k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  41.1k|		(list).tail = (elt);                    \
  |  |  |  |   97|  41.1k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 41.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  41.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 41.1k]
  |  |  ------------------
  ------------------
 1337|  41.1k|				break;
 1338|   211k|			case ISC_R_EXISTS:
  ------------------
  |  Branch (1338:4): [True: 211k, False: 41.1k]
  ------------------
 1339|   211k|				dns_message_puttempname(msg, &name);
 1340|   211k|				name = found_name;
 1341|   211k|				found_name = NULL;
 1342|   211k|				break;
 1343|      0|			default:
  ------------------
  |  Branch (1343:4): [True: 0, False: 252k]
  ------------------
 1344|      0|				UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
 1345|   252k|			}
 1346|   252k|			free_name = false;
 1347|   252k|		}
 1348|       |
 1349|   291k|		rdatalist = newrdatalist(msg);
 1350|   291k|		rdatalist->type = rdtype;
 1351|   291k|		rdatalist->covers = covers;
 1352|   291k|		rdatalist->rdclass = rdclass;
 1353|   291k|		rdatalist->ttl = ttl;
 1354|       |
 1355|   291k|		dns_message_gettemprdataset(msg, &rdataset);
 1356|   291k|		dns_rdatalist_tordataset(rdatalist, rdataset);
 1357|   291k|		dns_rdataset_setownercase(rdataset, name);
 1358|   291k|		rdatalist = NULL;
 1359|       |
 1360|       |		/*
 1361|       |		 * Search name for the particular type and class.
 1362|       |		 * Skip this stage if in update mode or this is a meta-type.
 1363|       |		 */
 1364|   291k|		if (isedns || istsig || issigzero) {
  ------------------
  |  Branch (1364:7): [True: 4.39k, False: 287k]
  |  Branch (1364:17): [True: 46, False: 287k]
  |  Branch (1364:27): [True: 80, False: 287k]
  ------------------
 1365|       |			/* Skip adding the rdataset to the tables */
 1366|   287k|		} else if (preserve_order || msg->opcode == dns_opcode_update ||
  ------------------
  |  Branch (1366:14): [True: 0, False: 287k]
  |  Branch (1366:32): [True: 34.5k, False: 252k]
  ------------------
 1367|   252k|			   skip_type_search)
  ------------------
  |  Branch (1367:7): [True: 0, False: 252k]
  ------------------
 1368|  34.5k|		{
 1369|  34.5k|			result = ISC_R_SUCCESS;
 1370|       |
 1371|  34.5k|			ISC_LIST_APPEND(name->list, rdataset, link);
  ------------------
  |  |  100|  34.5k|	do {                                                  \
  |  |  101|  34.5k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  34.5k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  34.5k|	do {                                            \
  |  |  |  |   89|  34.5k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 34.5k]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  34.5k|		} else {                                \
  |  |  |  |   92|  34.5k|			(list).head = (elt);            \
  |  |  |  |   93|  34.5k|		}                                       \
  |  |  |  |   94|  34.5k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  34.5k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  34.5k|		(list).tail = (elt);                    \
  |  |  |  |   97|  34.5k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 34.5k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  34.5k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 34.5k]
  |  |  ------------------
  ------------------
 1372|   252k|		} else {
 1373|       |			/*
 1374|       |			 * If this is a type that can only occur in
 1375|       |			 * the question section, fail.
 1376|       |			 */
 1377|   252k|			if (dns_rdatatype_questiononly(rdtype)) {
  ------------------
  |  Branch (1377:8): [True: 4.89k, False: 248k]
  ------------------
 1378|  4.89k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  4.89k|	do {                                 \
  |  |  912|  4.89k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 4.89k, False: 0]
  |  |  ------------------
  |  |  913|  4.89k|			seen_problem = true; \
  |  |  914|  4.89k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  4.89k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 4.89k]
  |  |  ------------------
  ------------------
 1379|  4.89k|			}
 1380|       |
 1381|   252k|			if (ISC_LIST_EMPTY(name->list)) {
  ------------------
  |  |   64|   252k|#define ISC_LIST_EMPTY(list) ((list).head == NULL)
  |  |  ------------------
  |  |  |  Branch (64:30): [True: 41.1k, False: 211k]
  |  |  ------------------
  ------------------
 1382|  41.1k|				result = ISC_R_SUCCESS;
 1383|  41.1k|				goto skip_rds_check;
 1384|  41.1k|			}
 1385|       |
 1386|   211k|			if (name->hashmap == NULL) {
  ------------------
  |  Branch (1386:8): [True: 15.7k, False: 196k]
  ------------------
 1387|  15.7k|				isc_hashmap_create(msg->mctx, 1,
 1388|  15.7k|						   &name->hashmap);
 1389|  15.7k|				free_hashmaps = true;
 1390|       |
 1391|  15.7k|				INSIST(ISC_LIST_HEAD(name->list) ==
  ------------------
  |  |  202|  15.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  15.7k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 15.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  15.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1392|  15.7k|				       ISC_LIST_TAIL(name->list));
 1393|       |
 1394|  15.7k|				dns_rdataset_t *old_rdataset =
 1395|  15.7k|					ISC_LIST_HEAD(name->list);
  ------------------
  |  |   62|  15.7k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1396|       |
 1397|  15.7k|				result = isc_hashmap_add(
 1398|  15.7k|					name->hashmap, rds_hash(old_rdataset),
 1399|  15.7k|					rds_match, old_rdataset, old_rdataset,
 1400|  15.7k|					NULL);
 1401|       |
 1402|  15.7k|				INSIST(result == ISC_R_SUCCESS);
  ------------------
  |  |  202|  15.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  15.7k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 15.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  15.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1403|  15.7k|			}
 1404|       |
 1405|   211k|			result = isc_hashmap_add(
 1406|   211k|				name->hashmap, rds_hash(rdataset), rds_match,
 1407|   211k|				rdataset, rdataset, (void **)&found_rdataset);
 1408|       |
 1409|       |			/*
 1410|       |			 * If we found an rdataset that matches, we need to
 1411|       |			 * append this rdata to that set.  If we did not, we
 1412|       |			 * need to create a new rdatalist, store the important
 1413|       |			 * bits there, convert it to an rdataset, and link the
 1414|       |			 * latter to the name. Yuck.  When appending, make
 1415|       |			 * certain that the type isn't a singleton type, such as
 1416|       |			 * SOA or CNAME.
 1417|       |			 *
 1418|       |			 * Note that this check will be bypassed when preserving
 1419|       |			 * order, the opcode is an update, or the type search is
 1420|       |			 * skipped.
 1421|       |			 */
 1422|   252k|		skip_rds_check:
 1423|   252k|			switch (result) {
 1424|   160k|			case ISC_R_EXISTS:
  ------------------
  |  Branch (1424:4): [True: 160k, False: 92.1k]
  ------------------
 1425|       |				/* Free the rdataset we used as the key */
 1426|   160k|				dns__message_putassociatedrdataset(msg,
 1427|   160k|								   &rdataset);
 1428|   160k|				result = ISC_R_SUCCESS;
 1429|   160k|				rdataset = found_rdataset;
 1430|       |
 1431|   160k|				if (!dns_rdatatype_issingleton(rdtype)) {
  ------------------
  |  Branch (1431:9): [True: 148k, False: 12.0k]
  ------------------
 1432|   148k|					break;
 1433|   148k|				}
 1434|       |
 1435|  12.0k|				dns_rdatalist_fromrdataset(rdataset,
 1436|  12.0k|							   &rdatalist);
 1437|  12.0k|				dns_rdata_t *first =
 1438|  12.0k|					ISC_LIST_HEAD(rdatalist->rdata);
  ------------------
  |  |   62|  12.0k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1439|  12.0k|				INSIST(first != NULL);
  ------------------
  |  |  202|  12.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  12.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 12.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1440|  12.0k|				if (dns_rdata_compare(rdata, first) != 0) {
  ------------------
  |  Branch (1440:9): [True: 5.82k, False: 6.25k]
  ------------------
 1441|  5.82k|					DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  5.82k|	do {                                 \
  |  |  912|  5.82k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 5.82k, False: 0]
  |  |  ------------------
  |  |  913|  5.82k|			seen_problem = true; \
  |  |  914|  5.82k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  5.82k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 5.82k]
  |  |  ------------------
  ------------------
 1442|  5.82k|				}
 1443|  12.0k|				break;
 1444|  92.1k|			case ISC_R_SUCCESS:
  ------------------
  |  Branch (1444:4): [True: 92.1k, False: 160k]
  ------------------
 1445|  92.1k|				ISC_LIST_APPEND(name->list, rdataset, link);
  ------------------
  |  |  100|  92.1k|	do {                                                  \
  |  |  101|  92.1k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  92.1k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  92.1k|	do {                                            \
  |  |  |  |   89|  92.1k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 51.0k, False: 41.1k]
  |  |  |  |  ------------------
  |  |  |  |   90|  51.0k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  51.0k|		} else {                                \
  |  |  |  |   92|  41.1k|			(list).head = (elt);            \
  |  |  |  |   93|  41.1k|		}                                       \
  |  |  |  |   94|  92.1k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  92.1k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  92.1k|		(list).tail = (elt);                    \
  |  |  |  |   97|  92.1k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 92.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  92.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 92.1k]
  |  |  ------------------
  ------------------
 1446|  92.1k|				break;
 1447|      0|			default:
  ------------------
  |  Branch (1447:4): [True: 0, False: 252k]
  ------------------
 1448|      0|				UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
 1449|   252k|			}
 1450|   252k|		}
 1451|       |
 1452|       |		/*
 1453|       |		 * Minimize TTLs.
 1454|       |		 *
 1455|       |		 * Section 5.2 of RFC2181 says we should drop
 1456|       |		 * nonauthoritative rrsets where the TTLs differ, but we
 1457|       |		 * currently treat them the as if they were authoritative and
 1458|       |		 * minimize them.
 1459|       |		 */
 1460|   291k|		if (ttl != rdataset->ttl) {
  ------------------
  |  Branch (1460:7): [True: 41.5k, False: 250k]
  ------------------
 1461|  41.5k|			rdataset->attributes.ttladjusted = true;
 1462|  41.5k|			if (ttl < rdataset->ttl) {
  ------------------
  |  Branch (1462:8): [True: 4.55k, False: 37.0k]
  ------------------
 1463|  4.55k|				rdataset->ttl = ttl;
 1464|  4.55k|			}
 1465|  41.5k|		}
 1466|       |
 1467|       |		/* Append this rdata to the rdataset. */
 1468|   291k|		dns_rdatalist_fromrdataset(rdataset, &rdatalist);
 1469|   291k|		ISC_LIST_APPEND(rdatalist->rdata, rdata, link);
  ------------------
  |  |  100|   291k|	do {                                                  \
  |  |  101|   291k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|   291k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|   291k|	do {                                            \
  |  |  |  |   89|   291k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 160k, False: 131k]
  |  |  |  |  ------------------
  |  |  |  |   90|   160k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|   160k|		} else {                                \
  |  |  |  |   92|   131k|			(list).head = (elt);            \
  |  |  |  |   93|   131k|		}                                       \
  |  |  |  |   94|   291k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|   291k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|   291k|		(list).tail = (elt);                    \
  |  |  |  |   97|   291k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 291k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|   291k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 291k]
  |  |  ------------------
  ------------------
 1470|       |
 1471|       |		/*
 1472|       |		 * If this is an OPT, SIG(0) or TSIG record, remember it.
 1473|       |		 * Also, set the extended rcode for TSIG.
 1474|       |		 *
 1475|       |		 * Note msg->opt, msg->sig0 and msg->tsig will only be
 1476|       |		 * already set if best-effort parsing is enabled otherwise
 1477|       |		 * there will only be at most one of each.
 1478|       |		 */
 1479|   291k|		if (isedns) {
  ------------------
  |  Branch (1479:7): [True: 4.39k, False: 287k]
  ------------------
 1480|  4.39k|			dns_rcode_t ercode;
 1481|       |
 1482|  4.39k|			msg->opt = rdataset;
 1483|  4.39k|			ercode = (dns_rcode_t)((msg->opt->ttl &
 1484|  4.39k|						DNS_MESSAGE_EDNSRCODE_MASK) >>
  ------------------
  |  |   88|  4.39k|#define DNS_MESSAGE_EDNSRCODE_MASK    0xff000000U
  ------------------
 1485|  4.39k|					       20);
 1486|  4.39k|			msg->rcode |= ercode;
 1487|  4.39k|			dns_message_puttempname(msg, &name);
 1488|  4.39k|			free_name = false;
 1489|   287k|		} else if (issigzero) {
  ------------------
  |  Branch (1489:14): [True: 80, False: 287k]
  ------------------
 1490|     80|			msg->sig0 = rdataset;
 1491|     80|			msg->sig0name = name;
 1492|     80|			msg->sigstart = recstart;
 1493|     80|			free_name = false;
 1494|   287k|		} else if (istsig) {
  ------------------
  |  Branch (1494:14): [True: 46, False: 287k]
  ------------------
 1495|     46|			msg->tsig = rdataset;
 1496|     46|			msg->tsigname = name;
 1497|     46|			msg->sigstart = recstart;
 1498|       |			/*
 1499|       |			 * Windows doesn't like TSIG names to be compressed.
 1500|       |			 */
 1501|     46|			msg->tsigname->attributes.nocompress = true;
 1502|     46|			free_name = false;
 1503|   287k|		} else if (rdtype == dns_rdatatype_dname &&
  ------------------
  |  |  153|   574k|#define dns_rdatatype_dname	((dns_rdatatype_t)dns_rdatatype_dname)
  ------------------
  |  Branch (1503:14): [True: 2.83k, False: 284k]
  ------------------
 1504|  2.83k|			   sectionid == DNS_SECTION_ANSWER &&
  ------------------
  |  Branch (1504:7): [True: 1.66k, False: 1.17k]
  ------------------
 1505|  1.66k|			   msg->opcode == dns_opcode_query)
  ------------------
  |  Branch (1505:7): [True: 535, False: 1.12k]
  ------------------
 1506|    535|		{
 1507|    535|			msg->has_dname = 1;
 1508|    535|		}
 1509|   291k|		rdataset = NULL;
 1510|       |
 1511|   291k|		if (seen_problem) {
  ------------------
  |  Branch (1511:7): [True: 235k, False: 56.6k]
  ------------------
 1512|   235k|			if (free_name) {
  ------------------
  |  Branch (1512:8): [True: 0, False: 235k]
  ------------------
 1513|       |				/* XXX test coverage */
 1514|      0|				dns_message_puttempname(msg, &name);
 1515|      0|			}
 1516|   235k|			free_name = false;
 1517|   235k|		}
 1518|   291k|		INSIST(!free_name);
  ------------------
  |  |  202|   291k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   291k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 291k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   291k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1519|   291k|	}
 1520|       |
 1521|  55.1k|	if (seen_problem) {
  ------------------
  |  Branch (1521:6): [True: 8.70k, False: 46.4k]
  ------------------
 1522|  8.70k|		result = DNS_R_RECOVERABLE;
 1523|  8.70k|	}
 1524|       |
 1525|  59.5k|cleanup:
 1526|  59.5k|	if (rdataset != NULL && rdataset != found_rdataset) {
  ------------------
  |  Branch (1526:6): [True: 0, False: 59.5k]
  |  Branch (1526:26): [True: 0, False: 0]
  ------------------
 1527|      0|		dns__message_putassociatedrdataset(msg, &rdataset);
 1528|      0|	}
 1529|  59.5k|	if (free_name) {
  ------------------
  |  Branch (1529:6): [True: 4.36k, False: 55.1k]
  ------------------
 1530|  4.36k|		dns_message_puttempname(msg, &name);
 1531|  4.36k|	}
 1532|       |
 1533|  59.5k|	if (free_hashmaps) {
  ------------------
  |  Branch (1533:6): [True: 8.17k, False: 51.3k]
  ------------------
 1534|  8.17k|		cleanup_name_hashmaps(section);
 1535|  8.17k|	}
 1536|       |
 1537|  59.5k|	if (name_map != NULL) {
  ------------------
  |  Branch (1537:6): [True: 13.0k, False: 46.4k]
  ------------------
 1538|  13.0k|		isc_hashmap_destroy(&name_map);
 1539|  13.0k|	}
 1540|       |
 1541|  59.5k|	return result;
 1542|  55.1k|}
message.c:update:
 1043|  35.4k|update(dns_section_t section, dns_rdataclass_t rdclass) {
 1044|  35.4k|	if (section == DNS_SECTION_PREREQUISITE) {
  ------------------
  |  |  185|  35.4k|#define DNS_SECTION_PREREQUISITE DNS_SECTION_ANSWER
  ------------------
  |  Branch (1044:6): [True: 9.13k, False: 26.2k]
  ------------------
 1045|  9.13k|		return rdclass == dns_rdataclass_any ||
  ------------------
  |  |   34|  18.2k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1045:10): [True: 1.52k, False: 7.60k]
  ------------------
 1046|  7.60k|		       rdclass == dns_rdataclass_none;
  ------------------
  |  |   32|  16.7k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (1046:10): [True: 688, False: 6.92k]
  ------------------
 1047|  9.13k|	}
 1048|  26.2k|	if (section == DNS_SECTION_UPDATE) {
  ------------------
  |  |  186|  26.2k|#define DNS_SECTION_UPDATE	 DNS_SECTION_AUTHORITY
  ------------------
  |  Branch (1048:6): [True: 10.0k, False: 16.2k]
  ------------------
 1049|  10.0k|		return rdclass == dns_rdataclass_any;
  ------------------
  |  |   34|  10.0k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
 1050|  10.0k|	}
 1051|  16.2k|	return false;
 1052|  26.2k|}
message.c:getrdata:
  862|   291k|	 unsigned int rdatalen, dns_rdata_t *rdata) {
  863|   291k|	isc_buffer_t *scratch;
  864|   291k|	isc_result_t result;
  865|   291k|	unsigned int tries;
  866|   291k|	unsigned int trysize;
  867|       |
  868|   291k|	scratch = currentbuffer(msg);
  869|       |
  870|   291k|	isc_buffer_setactive(source, rdatalen);
  871|       |
  872|       |	/*
  873|       |	 * First try:  use current buffer.
  874|       |	 * Second try:  allocate a new buffer of size
  875|       |	 *     max(SCRATCHPAD_SIZE, 2 * compressed_rdatalen)
  876|       |	 *     (the data will fit if it was not more than 50% compressed)
  877|       |	 * Subsequent tries: double buffer size on each try.
  878|       |	 */
  879|   291k|	tries = 0;
  880|   291k|	trysize = 0;
  881|       |	/* XXX possibly change this to a while (tries < 2) loop */
  882|   338k|	for (;;) {
  883|   338k|		result = dns_rdata_fromwire(rdata, rdclass, rdtype, source,
  884|   338k|					    dctx, scratch);
  885|       |
  886|   338k|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (886:7): [True: 46.6k, False: 291k]
  ------------------
  887|  46.6k|			if (tries == 0) {
  ------------------
  |  Branch (887:8): [True: 38.4k, False: 8.22k]
  ------------------
  888|  38.4k|				trysize = 2 * rdatalen;
  889|  38.4k|				if (trysize < SCRATCHPAD_SIZE) {
  ------------------
  |  |  123|  38.4k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  |  Branch (889:9): [True: 36.3k, False: 2.15k]
  ------------------
  890|  36.3k|					trysize = SCRATCHPAD_SIZE;
  ------------------
  |  |  123|  36.3k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  891|  36.3k|				}
  892|  38.4k|			} else {
  893|  8.22k|				INSIST(trysize != 0);
  ------------------
  |  |  202|  8.22k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  8.22k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 8.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  8.22k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  894|  8.22k|				if (trysize >= 65535) {
  ------------------
  |  Branch (894:9): [True: 2, False: 8.22k]
  ------------------
  895|      2|					return ISC_R_NOSPACE;
  896|      2|				}
  897|       |				/* XXX DNS_R_RRTOOLONG? */
  898|  8.22k|				trysize *= 2;
  899|  8.22k|			}
  900|  46.6k|			tries++;
  901|  46.6k|			newbuffer(msg, trysize);
  902|       |
  903|  46.6k|			scratch = currentbuffer(msg);
  904|   291k|		} else {
  905|   291k|			return result;
  906|   291k|		}
  907|   338k|	}
  908|   291k|}
message.c:name_match:
  771|   211k|name_match(void *node, const void *key) {
  772|   211k|	return dns_name_equal(node, key);
  773|   211k|}
message.c:rds_hash:
  789|   227k|rds_hash(dns_rdataset_t *rds) {
  790|   227k|	isc_hash32_t state;
  791|       |
  792|   227k|	isc_hash32_init(&state);
  793|   227k|	isc_hash32_hash(&state, &rds->rdclass, sizeof(rds->rdclass), true);
  794|   227k|	isc_hash32_hash(&state, &rds->type, sizeof(rds->type), true);
  795|   227k|	isc_hash32_hash(&state, &rds->covers, sizeof(rds->covers), true);
  796|       |
  797|   227k|	return isc_hash32_finalize(&state);
  798|   227k|}
message.c:rds_match:
  801|   160k|rds_match(void *node, const void *key0) {
  802|   160k|	const dns_rdataset_t *rds = node;
  803|   160k|	const dns_rdataset_t *key = key0;
  804|       |
  805|   160k|	return rds->rdclass == key->rdclass && rds->type == key->type &&
  ------------------
  |  Branch (805:9): [True: 160k, False: 100]
  |  Branch (805:41): [True: 160k, False: 0]
  ------------------
  806|   160k|	       rds->covers == key->covers;
  ------------------
  |  Branch (806:9): [True: 160k, False: 0]
  ------------------
  807|   160k|}
message.c:cleanup_name_hashmaps:
  921|  8.17k|cleanup_name_hashmaps(dns_namelist_t *section) {
  922|  31.9k|	ISC_LIST_FOREACH(*section, name, link) {
  ------------------
  |  |  234|  8.17k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  8.17k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  8.17k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  8.17k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 8.17k, False: 0]
  |  |  ------------------
  |  |  236|  40.1k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 31.9k, False: 8.17k]
  |  |  ------------------
  |  |  237|  31.9k|	     elt = elt##_next,                                             \
  |  |  238|  31.9k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  23.7k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 23.7k, False: 8.17k]
  |  |  ------------------
  ------------------
  923|  31.9k|		if (name->hashmap != NULL) {
  ------------------
  |  Branch (923:7): [True: 15.7k, False: 16.1k]
  ------------------
  924|  15.7k|			isc_hashmap_destroy(&name->hashmap);
  925|  15.7k|		}
  926|  31.9k|	}
  927|  8.17k|}
message.c:update_min_section_ttl:
 1871|   198k|		       dns_rdataset_t *restrict rdataset) {
 1872|   198k|	if (!msg->minttl[sectionid].is_set ||
  ------------------
  |  Branch (1872:6): [True: 10.5k, False: 188k]
  ------------------
 1873|   188k|	    rdataset->ttl < msg->minttl[sectionid].ttl)
  ------------------
  |  Branch (1873:6): [True: 4.76k, False: 183k]
  ------------------
 1874|  15.3k|	{
 1875|       |		msg->minttl[sectionid].is_set = true;
 1876|  15.3k|		msg->minttl[sectionid].ttl = rdataset->ttl;
 1877|  15.3k|	}
 1878|   198k|}
message.c:wrong_priority:
 1802|  30.4k|wrong_priority(dns_rdataset_t *rds, int pass, dns_rdatatype_t preferred_glue) {
 1803|  30.4k|	int pass_needed;
 1804|       |
 1805|       |	/*
 1806|       |	 * If we are not rendering class IN, this ordering is bogus.
 1807|       |	 */
 1808|  30.4k|	if (rds->rdclass != dns_rdataclass_in) {
  ------------------
  |  |   24|  30.4k|#define dns_rdataclass_in	((dns_rdataclass_t)dns_rdataclass_in)
  ------------------
  |  Branch (1808:6): [True: 19.5k, False: 10.9k]
  ------------------
 1809|  19.5k|		return false;
 1810|  19.5k|	}
 1811|       |
 1812|  10.9k|	switch (rds->type) {
 1813|    251|	case dns_rdatatype_a:
  ------------------
  |  |  115|    251|#define dns_rdatatype_a		((dns_rdatatype_t)dns_rdatatype_a)
  ------------------
  |  Branch (1813:2): [True: 251, False: 10.7k]
  ------------------
 1814|    458|	case dns_rdatatype_aaaa:
  ------------------
  |  |  142|    458|#define dns_rdatatype_aaaa	((dns_rdatatype_t)dns_rdatatype_aaaa)
  ------------------
  |  Branch (1814:2): [True: 207, False: 10.7k]
  ------------------
 1815|    458|		if (preferred_glue == rds->type) {
  ------------------
  |  Branch (1815:7): [True: 0, False: 458]
  ------------------
 1816|      0|			pass_needed = 4;
 1817|    458|		} else {
 1818|    458|			pass_needed = 3;
 1819|    458|		}
 1820|    458|		break;
 1821|    478|	case dns_rdatatype_rrsig:
  ------------------
  |  |  160|    478|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (1821:2): [True: 478, False: 10.4k]
  ------------------
 1822|    866|	case dns_rdatatype_dnskey:
  ------------------
  |  |  162|    866|#define dns_rdatatype_dnskey	((dns_rdatatype_t)dns_rdatatype_dnskey)
  ------------------
  |  Branch (1822:2): [True: 388, False: 10.5k]
  ------------------
 1823|    866|		pass_needed = 2;
 1824|    866|		break;
 1825|  9.63k|	default:
  ------------------
  |  Branch (1825:2): [True: 9.63k, False: 1.32k]
  ------------------
 1826|  9.63k|		pass_needed = 1;
 1827|  10.9k|	}
 1828|       |
 1829|  10.9k|	if (pass_needed >= pass) {
  ------------------
  |  Branch (1829:6): [True: 4.09k, False: 6.86k]
  ------------------
 1830|  4.09k|		return false;
 1831|  4.09k|	}
 1832|       |
 1833|  6.86k|	return true;
 1834|  10.9k|}
message.c:maybe_clear_ad:
 1858|    157|maybe_clear_ad(dns_message_t *msg, dns_section_t sectionid) {
 1859|    157|	if (msg->counts[sectionid] == 0 &&
  ------------------
  |  Branch (1859:6): [True: 86, False: 71]
  ------------------
 1860|     86|	    (sectionid == DNS_SECTION_ANSWER ||
  ------------------
  |  Branch (1860:7): [True: 1, False: 85]
  ------------------
 1861|     85|	     (sectionid == DNS_SECTION_AUTHORITY &&
  ------------------
  |  Branch (1861:8): [True: 35, False: 50]
  ------------------
 1862|     35|	      msg->counts[DNS_SECTION_ANSWER] == 0)))
  ------------------
  |  Branch (1862:8): [True: 1, False: 34]
  ------------------
 1863|      2|	{
 1864|      2|		msg->flags &= ~DNS_MESSAGEFLAG_AD;
 1865|      2|	}
 1866|    157|}
message.c:msgresetnames:
  459|  23.4k|msgresetnames(dns_message_t *msg, unsigned int first_section) {
  460|       |	/* Clean up name lists. */
  461|   115k|	for (size_t i = first_section; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (461:33): [True: 92.2k, False: 23.4k]
  ------------------
  462|   246k|		ISC_LIST_FOREACH(msg->sections[i], name, link) {
  ------------------
  |  |  234|  92.2k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  92.2k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  92.2k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  22.9k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 22.9k, False: 69.3k]
  |  |  ------------------
  |  |  236|   338k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 246k, False: 92.2k]
  |  |  ------------------
  |  |  237|   246k|	     elt = elt##_next,                                             \
  |  |  238|   246k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|   223k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 223k, False: 22.9k]
  |  |  ------------------
  ------------------
  463|       |			ISC_LIST_UNLINK(msg->sections[i], name, link);
  ------------------
  |  |  137|   246k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|   246k|	do {                                                         \
  |  |  |  |  133|   246k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|   246k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|   246k|	do {                                                            \
  |  |  |  |  |  |  110|   246k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 223k, False: 22.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|   223k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|   223k|		} else {                                                \
  |  |  |  |  |  |  113|  22.9k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  22.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 22.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  22.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  22.9k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  22.9k|		}                                                       \
  |  |  |  |  |  |  116|   246k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 246k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|   246k|		} else {                                                \
  |  |  |  |  |  |  119|   246k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   246k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 246k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   246k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|   246k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|   246k|		}                                                       \
  |  |  |  |  |  |  122|   246k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   246k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|   246k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   246k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|   246k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   246k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 246k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   246k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|   246k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   246k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 246k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   246k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|   246k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 246k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|   246k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 246k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  464|   246k|			msgresetname(msg, name);
  465|   246k|			dns_message_puttempname(msg, &name);
  466|   246k|		}
  467|  92.2k|	}
  468|  23.4k|}
message.c:msgresetname:
  451|   246k|msgresetname(dns_message_t *msg, dns_name_t *name) {
  452|   297k|	ISC_LIST_FOREACH(name->list, rds, link) {
  ------------------
  |  |  234|   246k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|   246k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|   246k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|   246k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 246k, False: 13]
  |  |  ------------------
  |  |  236|   544k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 297k, False: 246k]
  |  |  ------------------
  |  |  237|   297k|	     elt = elt##_next,                                             \
  |  |  238|   297k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  51.0k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 51.0k, False: 246k]
  |  |  ------------------
  ------------------
  453|       |		ISC_LIST_UNLINK(name->list, rds, link);
  ------------------
  |  |  137|   297k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|   297k|	do {                                                         \
  |  |  |  |  133|   297k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|   297k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|   297k|	do {                                                            \
  |  |  |  |  |  |  110|   297k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 51.0k, False: 246k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  51.0k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|   246k|		} else {                                                \
  |  |  |  |  |  |  113|   246k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   246k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 246k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   246k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|   246k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|   246k|		}                                                       \
  |  |  |  |  |  |  116|   297k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 297k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|   297k|		} else {                                                \
  |  |  |  |  |  |  119|   297k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   297k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 297k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   297k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|   297k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|   297k|		}                                                       \
  |  |  |  |  |  |  122|   297k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   297k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|   297k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   297k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|   297k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   297k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 297k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   297k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|   297k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   297k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 297k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   297k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|   297k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 297k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|   297k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 297k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  454|   297k|		dns__message_putassociatedrdataset(msg, &rds);
  455|   297k|	}
  456|   246k|}
message.c:renderset:
 1839|  2.18k|	  unsigned int options, unsigned int *countp) {
 1840|  2.18k|	isc_result_t result;
 1841|       |
 1842|       |	/*
 1843|       |	 * Shrink the space in the buffer by the reserved amount.
 1844|       |	 */
 1845|  2.18k|	if (target->length - target->used < reserved) {
  ------------------
  |  Branch (1845:6): [True: 0, False: 2.18k]
  ------------------
 1846|      0|		return ISC_R_NOSPACE;
 1847|      0|	}
 1848|       |
 1849|  2.18k|	target->length -= reserved;
 1850|  2.18k|	result = dns_rdataset_towire(rdataset, owner_name, id, cctx, target,
 1851|  2.18k|				     false, options, countp);
 1852|  2.18k|	target->length += reserved;
 1853|       |
 1854|  2.18k|	return result;
 1855|  2.18k|}
message.c:newrdata:
  321|   294k|newrdata(dns_message_t *msg) {
  322|   294k|	dns_msgblock_t *msgblock;
  323|   294k|	dns_rdata_t *rdata;
  324|       |
  325|   294k|	rdata = ISC_LIST_HEAD(msg->freerdata);
  ------------------
  |  |   62|   294k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  326|   294k|	if (rdata != NULL) {
  ------------------
  |  Branch (326:6): [True: 0, False: 294k]
  ------------------
  327|      0|		ISC_LIST_UNLINK(msg->freerdata, rdata, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  328|      0|		dns_rdata_reset(rdata);
  329|      0|		return rdata;
  330|      0|	}
  331|       |
  332|   294k|	msgblock = ISC_LIST_TAIL(msg->rdatas);
  ------------------
  |  |   63|   294k|#define ISC_LIST_TAIL(list)  ((list).tail)
  ------------------
  333|   294k|	rdata = msgblock_get(msgblock, dns_rdata_t);
  ------------------
  |  |  190|   294k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  334|   294k|	if (rdata == NULL) {
  ------------------
  |  Branch (334:6): [True: 50.6k, False: 243k]
  ------------------
  335|  50.6k|		msgblock = msgblock_allocate(msg->mctx, sizeof(dns_rdata_t),
  336|  50.6k|					     RDATA_COUNT);
  ------------------
  |  |  127|  50.6k|#define RDATA_COUNT	   8
  ------------------
  337|  50.6k|		ISC_LIST_APPEND(msg->rdatas, msgblock, link);
  ------------------
  |  |  100|  50.6k|	do {                                                  \
  |  |  101|  50.6k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  50.6k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  50.6k|	do {                                            \
  |  |  |  |   89|  50.6k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 30.9k, False: 19.7k]
  |  |  |  |  ------------------
  |  |  |  |   90|  30.9k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  30.9k|		} else {                                \
  |  |  |  |   92|  19.7k|			(list).head = (elt);            \
  |  |  |  |   93|  19.7k|		}                                       \
  |  |  |  |   94|  50.6k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  50.6k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  50.6k|		(list).tail = (elt);                    \
  |  |  |  |   97|  50.6k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 50.6k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  50.6k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 50.6k]
  |  |  ------------------
  ------------------
  338|       |
  339|  50.6k|		rdata = msgblock_get(msgblock, dns_rdata_t);
  ------------------
  |  |  190|  50.6k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  340|  50.6k|	}
  341|       |
  342|   294k|	dns_rdata_init(rdata);
  343|   294k|	return rdata;
  344|   294k|}
message.c:msgblock_internalget:
  258|   879k|msgblock_internalget(dns_msgblock_t *block, unsigned int sizeof_type) {
  259|   879k|	void *ptr;
  260|       |
  261|   879k|	if (block == NULL || block->remaining == 0) {
  ------------------
  |  Branch (261:6): [True: 39.5k, False: 839k]
  |  Branch (261:23): [True: 82.2k, False: 757k]
  ------------------
  262|   121k|		return NULL;
  263|   121k|	}
  264|       |
  265|   757k|	block->remaining--;
  266|       |
  267|   757k|	ptr = (((unsigned char *)block) + sizeof(dns_msgblock_t) +
  268|   757k|	       (sizeof_type * block->remaining));
  269|       |
  270|   757k|	return ptr;
  271|   879k|}
message.c:msgblock_allocate:
  237|   121k|		  unsigned int count) {
  238|   121k|	dns_msgblock_t *block;
  239|   121k|	unsigned int length;
  240|       |
  241|   121k|	length = sizeof(dns_msgblock_t) + (sizeof_type * count);
  242|       |
  243|   121k|	block = isc_mem_get(mctx, length);
  ------------------
  |  |  128|   121k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  244|       |
  245|   121k|	block->count = count;
  246|   121k|	block->remaining = count;
  247|       |
  248|   121k|	ISC_LINK_INIT(block, link);
  ------------------
  |  |   57|   121k|#define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
  |  |  ------------------
  |  |  |  |   53|   121k|	do {                                                 \
  |  |  |  |   54|   121k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   121k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   55|   121k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   121k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   56|   121k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (56:11): [Folded, False: 121k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  249|       |
  250|   121k|	return block;
  251|   121k|}
message.c:newrdatalist:
  352|   462k|newrdatalist(dns_message_t *msg) {
  353|   462k|	dns_msgblock_t *msgblock;
  354|   462k|	dns_rdatalist_t *rdatalist;
  355|       |
  356|   462k|	rdatalist = ISC_LIST_HEAD(msg->freerdatalist);
  ------------------
  |  |   62|   462k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  357|   462k|	if (rdatalist != NULL) {
  ------------------
  |  Branch (357:6): [True: 0, False: 462k]
  ------------------
  358|      0|		ISC_LIST_UNLINK(msg->freerdatalist, rdatalist, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  359|      0|		dns_rdatalist_init(rdatalist);
  360|      0|		goto out;
  361|      0|	}
  362|       |
  363|   462k|	msgblock = ISC_LIST_TAIL(msg->rdatalists);
  ------------------
  |  |   63|   462k|#define ISC_LIST_TAIL(list)  ((list).tail)
  ------------------
  364|   462k|	rdatalist = msgblock_get(msgblock, dns_rdatalist_t);
  ------------------
  |  |  190|   462k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  365|   462k|	if (rdatalist == NULL) {
  ------------------
  |  Branch (365:6): [True: 71.1k, False: 391k]
  ------------------
  366|  71.1k|		msgblock = msgblock_allocate(msg->mctx, sizeof(dns_rdatalist_t),
  367|  71.1k|					     RDATALIST_COUNT);
  ------------------
  |  |  128|  71.1k|#define RDATALIST_COUNT	   8
  ------------------
  368|  71.1k|		ISC_LIST_APPEND(msg->rdatalists, msgblock, link);
  ------------------
  |  |  100|  71.1k|	do {                                                  \
  |  |  101|  71.1k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  71.1k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  71.1k|	do {                                            \
  |  |  |  |   89|  71.1k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 51.3k, False: 19.8k]
  |  |  |  |  ------------------
  |  |  |  |   90|  51.3k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  51.3k|		} else {                                \
  |  |  |  |   92|  19.8k|			(list).head = (elt);            \
  |  |  |  |   93|  19.8k|		}                                       \
  |  |  |  |   94|  71.1k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  71.1k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  71.1k|		(list).tail = (elt);                    \
  |  |  |  |   97|  71.1k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 71.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  71.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 71.1k]
  |  |  ------------------
  ------------------
  369|       |
  370|  71.1k|		rdatalist = msgblock_get(msgblock, dns_rdatalist_t);
  ------------------
  |  |  190|  71.1k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  371|  71.1k|	}
  372|   462k|out:
  373|   462k|	dns_rdatalist_init(rdatalist);
  374|   462k|	return rdatalist;
  375|   462k|}
message.c:dns__message_putassociatedrdataset:
 2482|   462k|dns__message_putassociatedrdataset(dns_message_t *msg, dns_rdataset_t **item) {
 2483|   462k|	dns_rdataset_disassociate(*item);
  ------------------
  |  |  301|   462k|	dns__rdataset_disassociate(rdataset DNS__DB_FILELINE)
  ------------------
 2484|   462k|	dns_message_puttemprdataset(msg, item);
 2485|   462k|}
message.c:msgresetopt:
  471|  21.9k|msgresetopt(dns_message_t *msg) {
  472|  21.9k|	if (msg->opt != NULL) {
  ------------------
  |  Branch (472:6): [True: 4.39k, False: 17.5k]
  ------------------
  473|  4.39k|		if (msg->opt_reserved > 0) {
  ------------------
  |  Branch (473:7): [True: 0, False: 4.39k]
  ------------------
  474|      0|			dns_message_renderrelease(msg, msg->opt_reserved);
  475|      0|			msg->opt_reserved = 0;
  476|      0|		}
  477|  4.39k|		dns__message_putassociatedrdataset(msg, &msg->opt);
  478|       |		msg->opt = NULL;
  479|  4.39k|		msg->cc_ok = 0;
  480|  4.39k|		msg->cc_bad = 0;
  481|  4.39k|	}
  482|  21.9k|}
message.c:msgresetsigs:
  485|  21.9k|msgresetsigs(dns_message_t *msg, bool replying) {
  486|  21.9k|	if (msg->sig_reserved > 0) {
  ------------------
  |  Branch (486:6): [True: 0, False: 21.9k]
  ------------------
  487|      0|		dns_message_renderrelease(msg, msg->sig_reserved);
  488|      0|		msg->sig_reserved = 0;
  489|      0|	}
  490|  21.9k|	if (msg->tsig != NULL) {
  ------------------
  |  Branch (490:6): [True: 43, False: 21.9k]
  ------------------
  491|     43|		INSIST(dns_rdataset_isassociated(msg->tsig));
  ------------------
  |  |  202|     43|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|     43|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 43, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|     43|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  492|     43|		INSIST(msg->namepool != NULL);
  ------------------
  |  |  202|     43|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|     43|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 43, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|     43|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  493|     43|		if (replying) {
  ------------------
  |  Branch (493:7): [True: 0, False: 43]
  ------------------
  494|      0|			INSIST(msg->querytsig == NULL);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  495|      0|			msg->querytsig = msg->tsig;
  496|     43|		} else {
  497|     43|			dns__message_putassociatedrdataset(msg, &msg->tsig);
  498|     43|			if (msg->querytsig != NULL) {
  ------------------
  |  Branch (498:8): [True: 0, False: 43]
  ------------------
  499|      0|				dns__message_putassociatedrdataset(
  500|      0|					msg, &msg->querytsig);
  501|      0|			}
  502|     43|		}
  503|     43|		dns_message_puttempname(msg, &msg->tsigname);
  504|     43|		msg->tsig = NULL;
  505|  21.9k|	} else if (msg->querytsig != NULL && !replying) {
  ------------------
  |  Branch (505:13): [True: 0, False: 21.9k]
  |  Branch (505:39): [True: 0, False: 0]
  ------------------
  506|      0|		dns__message_putassociatedrdataset(msg, &msg->querytsig);
  507|      0|		msg->querytsig = NULL;
  508|      0|	}
  509|  21.9k|	if (msg->sig0 != NULL) {
  ------------------
  |  Branch (509:6): [True: 78, False: 21.9k]
  ------------------
  510|     78|		dns__message_putassociatedrdataset(msg, &msg->sig0);
  511|     78|		msg->sig0 = NULL;
  512|     78|	}
  513|  21.9k|	if (msg->sig0name != NULL) {
  ------------------
  |  Branch (513:6): [True: 78, False: 21.9k]
  ------------------
  514|     78|		dns_message_puttempname(msg, &msg->sig0name);
  515|     78|	}
  516|  21.9k|}
message.c:msginitprivate:
  387|  21.9k|msginitprivate(dns_message_t *m) {
  388|  21.9k|	unsigned int i;
  389|       |
  390|   109k|	for (i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (390:14): [True: 87.9k, False: 21.9k]
  ------------------
  391|  87.9k|		m->cursors[i] = NULL;
  392|  87.9k|		m->counts[i] = 0;
  393|  87.9k|	}
  394|  21.9k|	m->opt = NULL;
  395|  21.9k|	m->sig0 = NULL;
  396|  21.9k|	m->sig0name = NULL;
  397|  21.9k|	m->tsig = NULL;
  398|  21.9k|	m->tsigname = NULL;
  399|  21.9k|	m->state = DNS_SECTION_ANY; /* indicate nothing parsed or rendered */
  400|  21.9k|	m->opt_reserved = 0;
  401|  21.9k|	m->sig_reserved = 0;
  402|  21.9k|	m->reserved = 0;
  403|  21.9k|	m->padding = 0;
  404|  21.9k|	m->padding_off = 0;
  405|       |	m->buffer = NULL;
  406|  21.9k|}
message.c:render_llq:
 3366|  3.14k|	   const dns_master_style_t *style, isc_buffer_t *target) {
 3367|  3.14k|	char buf[sizeof("18446744073709551615")]; /* 2^64-1 */
 3368|  3.14k|	isc_result_t result = ISC_R_SUCCESS;
 3369|  3.14k|	uint32_t u;
 3370|  3.14k|	uint64_t q;
 3371|  3.14k|	const char *sep1 = " ", *sep2 = ", ";
 3372|  3.14k|	size_t count = msg->indent.count;
 3373|  3.14k|	bool yaml = false;
 3374|       |
 3375|  3.14k|	if ((dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  3.14k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3375:6): [True: 0, False: 3.14k]
  ------------------
 3376|      0|		sep1 = sep2 = "\n";
 3377|      0|		msg->indent.count++;
 3378|      0|		yaml = true;
 3379|      0|	}
 3380|       |
 3381|  3.14k|	u = isc_buffer_getuint16(optbuf);
 3382|  3.14k|	ADD_STRING(target, sep1);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3383|  3.14k|	INDENT(style);
  ------------------
  |  | 3191|  3.14k|	do {                                                                 \
  |  | 3192|  3.14k|		unsigned int __i;                                            \
  |  | 3193|  3.14k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.14k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.14k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3195|  3.14k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.14k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3196|  3.14k|		{                                                            \
  |  | 3197|  3.14k|			break;                                               \
  |  | 3198|  3.14k|		}                                                            \
  |  | 3199|  3.14k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3384|  3.14k|	if (yaml) {
  ------------------
  |  Branch (3384:6): [True: 0, False: 3.14k]
  ------------------
 3385|      0|		ADD_STRING(target, "LLQ-VERSION: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3386|  3.14k|	} else {
 3387|  3.14k|		ADD_STRING(target, "Version: ");
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3388|  3.14k|	}
 3389|  3.14k|	snprintf(buf, sizeof(buf), "%u", u);
 3390|  3.14k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3391|       |
 3392|  3.14k|	u = isc_buffer_getuint16(optbuf);
 3393|  3.14k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3394|  3.14k|	INDENT(style);
  ------------------
  |  | 3191|  3.14k|	do {                                                                 \
  |  | 3192|  3.14k|		unsigned int __i;                                            \
  |  | 3193|  3.14k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.14k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.14k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3195|  3.14k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.14k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3196|  3.14k|		{                                                            \
  |  | 3197|  3.14k|			break;                                               \
  |  | 3198|  3.14k|		}                                                            \
  |  | 3199|  3.14k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3395|  3.14k|	if (yaml) {
  ------------------
  |  Branch (3395:6): [True: 0, False: 3.14k]
  ------------------
 3396|      0|		ADD_STRING(target, "LLQ-OPCODE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3397|  3.14k|	} else {
 3398|  3.14k|		ADD_STRING(target, "Opcode: ");
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3399|  3.14k|	}
 3400|  3.14k|	snprintf(buf, sizeof(buf), "%u", u);
 3401|  3.14k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3402|       |
 3403|  3.14k|	u = isc_buffer_getuint16(optbuf);
 3404|  3.14k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3405|  3.14k|	INDENT(style);
  ------------------
  |  | 3191|  3.14k|	do {                                                                 \
  |  | 3192|  3.14k|		unsigned int __i;                                            \
  |  | 3193|  3.14k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.14k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.14k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3195|  3.14k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.14k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3196|  3.14k|		{                                                            \
  |  | 3197|  3.14k|			break;                                               \
  |  | 3198|  3.14k|		}                                                            \
  |  | 3199|  3.14k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3406|  3.14k|	if (yaml) {
  ------------------
  |  Branch (3406:6): [True: 0, False: 3.14k]
  ------------------
 3407|      0|		ADD_STRING(target, "LLQ-ERROR: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3408|  3.14k|	} else {
 3409|  3.14k|		ADD_STRING(target, "Error: ");
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3410|  3.14k|	}
 3411|  3.14k|	snprintf(buf, sizeof(buf), "%u", u);
 3412|  3.14k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3413|       |
 3414|  3.14k|	q = isc_buffer_getuint32(optbuf);
 3415|  3.14k|	q <<= 32;
 3416|  3.14k|	q |= isc_buffer_getuint32(optbuf);
 3417|  3.14k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3418|  3.14k|	INDENT(style);
  ------------------
  |  | 3191|  3.14k|	do {                                                                 \
  |  | 3192|  3.14k|		unsigned int __i;                                            \
  |  | 3193|  3.14k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.14k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.14k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3195|  3.14k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.14k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3196|  3.14k|		{                                                            \
  |  | 3197|  3.14k|			break;                                               \
  |  | 3198|  3.14k|		}                                                            \
  |  | 3199|  3.14k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3419|  3.14k|	if (yaml) {
  ------------------
  |  Branch (3419:6): [True: 0, False: 3.14k]
  ------------------
 3420|      0|		ADD_STRING(target, "LLQ-ID: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3421|  3.14k|	} else {
 3422|  3.14k|		ADD_STRING(target, "Identifier: ");
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3423|  3.14k|	}
 3424|  3.14k|	snprintf(buf, sizeof(buf), "%" PRIu64, q);
 3425|  3.14k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3426|       |
 3427|  3.14k|	u = isc_buffer_getuint32(optbuf);
 3428|  3.14k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3429|  3.14k|	INDENT(style);
  ------------------
  |  | 3191|  3.14k|	do {                                                                 \
  |  | 3192|  3.14k|		unsigned int __i;                                            \
  |  | 3193|  3.14k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.14k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.14k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3195|  3.14k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.14k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.14k, False: 0]
  |  |  ------------------
  |  | 3196|  3.14k|		{                                                            \
  |  | 3197|  3.14k|			break;                                               \
  |  | 3198|  3.14k|		}                                                            \
  |  | 3199|  3.14k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3430|  3.14k|	if (yaml) {
  ------------------
  |  Branch (3430:6): [True: 0, False: 3.14k]
  ------------------
 3431|      0|		ADD_STRING(target, "LLQ-LEASE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3432|  3.14k|	} else {
 3433|  3.14k|		ADD_STRING(target, "Lifetime: ");
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3434|  3.14k|	}
 3435|  3.14k|	snprintf(buf, sizeof(buf), "%u", u);
 3436|  3.14k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.14k|	{                                                         \
  |  |   98|  3.14k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.14k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.14k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.14k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.14k|	}
  ------------------
 3437|       |
 3438|  3.14k|cleanup:
 3439|  3.14k|	msg->indent.count = count;
 3440|  3.14k|	return result;
 3441|  3.14k|}
message.c:render_ecs:
 3299|  12.1k|render_ecs(isc_buffer_t *ecsbuf, isc_buffer_t *target) {
 3300|  12.1k|	int i;
 3301|  12.1k|	char addr[16] = { 0 }, addr_text[64];
 3302|  12.1k|	uint16_t family;
 3303|  12.1k|	uint8_t addrlen, addrbytes, scopelen;
 3304|  12.1k|	isc_result_t result;
 3305|       |
 3306|       |	/*
 3307|       |	 * Note: This routine needs to handle malformed ECS options.
 3308|       |	 */
 3309|       |
 3310|  12.1k|	if (isc_buffer_remaininglength(ecsbuf) < 4) {
  ------------------
  |  |  159|  12.1k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (3310:6): [True: 0, False: 12.1k]
  ------------------
 3311|      0|		return DNS_R_OPTERR;
 3312|      0|	}
 3313|  12.1k|	family = isc_buffer_getuint16(ecsbuf);
 3314|  12.1k|	addrlen = isc_buffer_getuint8(ecsbuf);
 3315|  12.1k|	scopelen = isc_buffer_getuint8(ecsbuf);
 3316|       |
 3317|  12.1k|	addrbytes = (addrlen + 7) / 8;
 3318|  12.1k|	if (isc_buffer_remaininglength(ecsbuf) < addrbytes) {
  ------------------
  |  |  159|  12.1k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (3318:6): [True: 0, False: 12.1k]
  ------------------
 3319|      0|		return DNS_R_OPTERR;
 3320|      0|	}
 3321|       |
 3322|  12.1k|	if (addrbytes > sizeof(addr)) {
  ------------------
  |  Branch (3322:6): [True: 0, False: 12.1k]
  ------------------
 3323|      0|		return DNS_R_OPTERR;
 3324|      0|	}
 3325|       |
 3326|  22.3k|	for (i = 0; i < addrbytes; i++) {
  ------------------
  |  Branch (3326:14): [True: 10.2k, False: 12.1k]
  ------------------
 3327|  10.2k|		addr[i] = isc_buffer_getuint8(ecsbuf);
 3328|  10.2k|	}
 3329|       |
 3330|  12.1k|	switch (family) {
 3331|  4.53k|	case 0:
  ------------------
  |  Branch (3331:2): [True: 4.53k, False: 7.64k]
  ------------------
 3332|  4.53k|		if (addrlen != 0U || scopelen != 0U) {
  ------------------
  |  Branch (3332:7): [True: 0, False: 4.53k]
  |  Branch (3332:24): [True: 0, False: 4.53k]
  ------------------
 3333|      0|			return DNS_R_OPTERR;
 3334|      0|		}
 3335|  4.53k|		strlcpy(addr_text, "0", sizeof(addr_text));
 3336|  4.53k|		break;
 3337|  1.93k|	case 1:
  ------------------
  |  Branch (3337:2): [True: 1.93k, False: 10.2k]
  ------------------
 3338|  1.93k|		if (addrlen > 32 || scopelen > 32) {
  ------------------
  |  Branch (3338:7): [True: 0, False: 1.93k]
  |  Branch (3338:23): [True: 0, False: 1.93k]
  ------------------
 3339|      0|			return DNS_R_OPTERR;
 3340|      0|		}
 3341|  1.93k|		inet_ntop(AF_INET, addr, addr_text, sizeof(addr_text));
 3342|  1.93k|		break;
 3343|  5.71k|	case 2:
  ------------------
  |  Branch (3343:2): [True: 5.71k, False: 6.46k]
  ------------------
 3344|  5.71k|		if (addrlen > 128 || scopelen > 128) {
  ------------------
  |  Branch (3344:7): [True: 0, False: 5.71k]
  |  Branch (3344:24): [True: 0, False: 5.71k]
  ------------------
 3345|      0|			return DNS_R_OPTERR;
 3346|      0|		}
 3347|  5.71k|		inet_ntop(AF_INET6, addr, addr_text, sizeof(addr_text));
 3348|  5.71k|		break;
 3349|      0|	default:
  ------------------
  |  Branch (3349:2): [True: 0, False: 12.1k]
  ------------------
 3350|      0|		return DNS_R_OPTERR;
 3351|  12.1k|	}
 3352|       |
 3353|  12.1k|	ADD_STRING(target, " ");
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 3354|  12.1k|	ADD_STRING(target, addr_text);
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 3355|  12.1k|	snprintf(addr_text, sizeof(addr_text), "/%d/%d", addrlen, scopelen);
 3356|  12.1k|	ADD_STRING(target, addr_text);
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 3357|       |
 3358|  12.1k|	result = ISC_R_SUCCESS;
 3359|       |
 3360|  12.1k|cleanup:
 3361|  12.1k|	return result;
 3362|  12.1k|}
message.c:render_nameopt:
 3466|  2.92k|render_nameopt(isc_buffer_t *optbuf, bool yaml, isc_buffer_t *target) {
 3467|  2.92k|	dns_decompress_t dctx = DNS_DECOMPRESS_NEVER;
 3468|  2.92k|	dns_fixedname_t fixed;
 3469|  2.92k|	dns_name_t *name = dns_fixedname_initname(&fixed);
 3470|  2.92k|	char namebuf[DNS_NAME_FORMATSIZE];
 3471|  2.92k|	isc_result_t result;
 3472|       |
 3473|  2.92k|	result = dns_name_fromwire(name, optbuf, dctx, NULL);
 3474|  2.92k|	if (result == ISC_R_SUCCESS && isc_buffer_activelength(optbuf) == 0) {
  ------------------
  |  |  160|  2.07k|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  |  Branch (3474:6): [True: 2.07k, False: 848]
  |  Branch (3474:33): [True: 1.77k, False: 301]
  ------------------
 3475|  1.77k|		dns_name_format(name, namebuf, sizeof(namebuf));
 3476|  1.77k|		ADD_STRING(target, " \"");
  ------------------
  |  |   97|  1.77k|	{                                                         \
  |  |   98|  1.77k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.77k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.77k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.77k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.77k|	}
  ------------------
 3477|  1.77k|		if (yaml) {
  ------------------
  |  Branch (3477:7): [True: 0, False: 1.77k]
  ------------------
 3478|      0|			PUT_YAMLSTR(target, (unsigned char *)namebuf,
  ------------------
  |  |  105|      0|	{                                                          \
  |  |  106|      0|		result = put_yamlstr(target, namebuf, len, utfok); \
  |  |  107|      0|		if (result != ISC_R_SUCCESS) {                     \
  |  |  ------------------
  |  |  |  Branch (107:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  108|      0|			goto cleanup;                              \
  |  |  109|      0|		}                                                  \
  |  |  110|      0|	}
  ------------------
 3479|      0|				    strlen(namebuf), false);
 3480|  1.77k|		} else {
 3481|  1.77k|			ADD_STRING(target, namebuf);
  ------------------
  |  |   97|  1.77k|	{                                                         \
  |  |   98|  1.77k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.77k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.77k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.77k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.77k|	}
  ------------------
 3482|  1.77k|		}
 3483|  1.77k|		ADD_STRING(target, "\"");
  ------------------
  |  |   97|  1.77k|	{                                                         \
  |  |   98|  1.77k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.77k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.77k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.77k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.77k|	}
  ------------------
 3484|  1.77k|		return result;
 3485|  1.77k|	}
 3486|  1.14k|	result = ISC_R_FAILURE;
 3487|  1.14k|cleanup:
 3488|  1.14k|	return result;
 3489|  1.14k|}
message.c:render_zoneversion:
 3514|  30.0k|		   const dns_master_style_t *style, isc_buffer_t *target) {
 3515|  30.0k|	isc_result_t result = ISC_R_SUCCESS;
 3516|  30.0k|	unsigned int labels = isc_buffer_getuint8(optbuf);
 3517|  30.0k|	unsigned int type = isc_buffer_getuint8(optbuf);
 3518|  30.0k|	char buf[sizeof("4000000000")];
 3519|  30.0k|	char namebuf[DNS_NAME_FORMATSIZE];
 3520|  30.0k|	dns_name_t *name = ISC_LIST_HEAD(msg->sections[DNS_SECTION_QUESTION]);
  ------------------
  |  |   62|  30.0k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 3521|  30.0k|	dns_name_t suffix = DNS_NAME_INITEMPTY;
  ------------------
  |  |  183|  30.0k|	{ .magic = DNS_NAME_MAGIC,      \
  |  |  ------------------
  |  |  |  |  121|  30.0k|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  |  |  ------------------
  |  |  |  |  |  |   31|  30.0k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  184|  30.0k|	  .link = ISC_LINK_INITIALIZER, \
  |  |  ------------------
  |  |  |  |   30|  30.0k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|  30.0k|	{                                         \
  |  |  |  |  |  |   27|  30.0k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  30.0k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   28|  30.0k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  30.0k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  30.0k|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  185|  30.0k|	  .list = ISC_LIST_INITIALIZER }
  |  |  ------------------
  |  |  |  |   21|  30.0k|	{                     \
  |  |  |  |   22|  30.0k|		.head = NULL, \
  |  |  |  |   23|  30.0k|		.tail = NULL, \
  |  |  |  |   24|  30.0k|	}
  |  |  ------------------
  ------------------
 3522|  30.0k|	bool yaml = false, rawmode = false;
 3523|  30.0k|	const char *sep1 = " ", *sep2 = ", ";
 3524|       |
 3525|  30.0k|	if ((dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  30.0k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3525:6): [True: 0, False: 30.0k]
  ------------------
 3526|      0|		msg->indent.count++;
 3527|      0|		sep1 = sep2 = "\n";
 3528|      0|		yaml = true;
 3529|      0|	}
 3530|       |
 3531|  30.0k|	ADD_STRING(target, sep1);
  ------------------
  |  |   97|  30.0k|	{                                                         \
  |  |   98|  30.0k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  30.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 30.0k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  30.0k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  30.0k|	}
  ------------------
 3532|       |
 3533|  30.0k|	if (msg->counts[DNS_SECTION_QUESTION] != 1 || name == NULL ||
  ------------------
  |  Branch (3533:6): [True: 28.0k, False: 2.00k]
  |  Branch (3533:48): [True: 0, False: 2.00k]
  ------------------
 3534|  2.00k|	    dns_name_countlabels(name) < labels + 1)
  ------------------
  |  Branch (3534:6): [True: 1.32k, False: 680]
  ------------------
 3535|  29.4k|	{
 3536|  29.4k|		rawmode = true;
 3537|  29.4k|		INDENT(style);
  ------------------
  |  | 3191|  29.4k|	do {                                                                 \
  |  | 3192|  29.4k|		unsigned int __i;                                            \
  |  | 3193|  29.4k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  29.4k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  29.4k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 29.4k, False: 0]
  |  |  ------------------
  |  | 3195|  29.4k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  29.4k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 29.4k, False: 0]
  |  |  ------------------
  |  | 3196|  29.4k|		{                                                            \
  |  | 3197|  29.4k|			break;                                               \
  |  | 3198|  29.4k|		}                                                            \
  |  | 3199|  29.4k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3538|  29.4k|		ADD_STRING(target, "LABELS: ");
  ------------------
  |  |   97|  29.4k|	{                                                         \
  |  |   98|  29.4k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.4k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.4k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.4k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.4k|	}
  ------------------
 3539|  29.4k|		snprintf(buf, sizeof(buf), "%u", labels);
 3540|  29.4k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  29.4k|	{                                                         \
  |  |   98|  29.4k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.4k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.4k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.4k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.4k|	}
  ------------------
 3541|  29.4k|	} else {
 3542|    680|		dns_name_split(name, labels + 1, NULL, &suffix);
 3543|    680|		dns_name_format(&suffix, namebuf, sizeof(namebuf));
 3544|       |
 3545|    680|		INDENT(style);
  ------------------
  |  | 3191|    680|	do {                                                                 \
  |  | 3192|    680|		unsigned int __i;                                            \
  |  | 3193|    680|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|    680|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|    680|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 680, False: 0]
  |  |  ------------------
  |  | 3195|    680|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|    680|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 680, False: 0]
  |  |  ------------------
  |  | 3196|    680|		{                                                            \
  |  | 3197|    680|			break;                                               \
  |  | 3198|    680|		}                                                            \
  |  | 3199|    680|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3546|    680|		ADD_STRING(target, "ZONE: ");
  ------------------
  |  |   97|    680|	{                                                         \
  |  |   98|    680|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    680|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 680]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    680|			isc_buffer_putstr(b, s);                  \
  |  |  103|    680|	}
  ------------------
 3547|    680|		if (yaml) {
  ------------------
  |  Branch (3547:7): [True: 0, False: 680]
  ------------------
 3548|      0|			ADD_STRING(target, "\"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3549|      0|			PUT_YAMLSTR(target, (unsigned char *)namebuf,
  ------------------
  |  |  105|      0|	{                                                          \
  |  |  106|      0|		result = put_yamlstr(target, namebuf, len, utfok); \
  |  |  107|      0|		if (result != ISC_R_SUCCESS) {                     \
  |  |  ------------------
  |  |  |  Branch (107:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  108|      0|			goto cleanup;                              \
  |  |  109|      0|		}                                                  \
  |  |  110|      0|	}
  ------------------
 3550|      0|				    strlen(namebuf), false);
 3551|      0|			ADD_STRING(target, "\"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3552|    680|		} else {
 3553|    680|			ADD_STRING(target, namebuf);
  ------------------
  |  |   97|    680|	{                                                         \
  |  |   98|    680|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    680|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 680]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    680|			isc_buffer_putstr(b, s);                  \
  |  |  103|    680|	}
  ------------------
 3554|    680|		}
 3555|    680|	}
 3556|  30.0k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  30.0k|	{                                                         \
  |  |   98|  30.0k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  30.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 30.0k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  30.0k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  30.0k|	}
  ------------------
 3557|       |
 3558|  30.0k|	if (!rawmode && type == 0 && isc_buffer_remaininglength(optbuf) == 4) {
  ------------------
  |  |  159|    259|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (3558:6): [True: 680, False: 29.4k]
  |  Branch (3558:18): [True: 259, False: 421]
  |  Branch (3558:31): [True: 83, False: 176]
  ------------------
 3559|     83|		uint32_t serial = isc_buffer_getuint32(optbuf);
 3560|     83|		INDENT(style);
  ------------------
  |  | 3191|     83|	do {                                                                 \
  |  | 3192|     83|		unsigned int __i;                                            \
  |  | 3193|     83|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|     83|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|     83|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 83, False: 0]
  |  |  ------------------
  |  | 3195|     83|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|     83|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 83, False: 0]
  |  |  ------------------
  |  | 3196|     83|		{                                                            \
  |  | 3197|     83|			break;                                               \
  |  | 3198|     83|		}                                                            \
  |  | 3199|     83|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3561|     83|		ADD_STRING(target, "SOA-SERIAL: ");
  ------------------
  |  |   97|     83|	{                                                         \
  |  |   98|     83|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     83|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 83]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     83|			isc_buffer_putstr(b, s);                  \
  |  |  103|     83|	}
  ------------------
 3562|     83|		snprintf(buf, sizeof(buf), "%u", serial);
 3563|     83|		ADD_STRING(target, buf);
  ------------------
  |  |   97|     83|	{                                                         \
  |  |   98|     83|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     83|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 83]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     83|			isc_buffer_putstr(b, s);                  \
  |  |  103|     83|	}
  ------------------
 3564|  29.9k|	} else {
 3565|  29.9k|		size_t len = isc_buffer_remaininglength(optbuf);
  ------------------
  |  |  159|  29.9k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
 3566|  29.9k|		unsigned char *data = isc_buffer_current(optbuf);
  ------------------
  |  |  145|  29.9k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 3567|  29.9k|		INDENT(style);
  ------------------
  |  | 3191|  29.9k|	do {                                                                 \
  |  | 3192|  29.9k|		unsigned int __i;                                            \
  |  | 3193|  29.9k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  29.9k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  29.9k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 29.9k, False: 0]
  |  |  ------------------
  |  | 3195|  29.9k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  29.9k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 29.9k, False: 0]
  |  |  ------------------
  |  | 3196|  29.9k|		{                                                            \
  |  | 3197|  29.9k|			break;                                               \
  |  | 3198|  29.9k|		}                                                            \
  |  | 3199|  29.9k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3568|  29.9k|		ADD_STRING(target, "TYPE: ");
  ------------------
  |  |   97|  29.9k|	{                                                         \
  |  |   98|  29.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.9k|	}
  ------------------
 3569|  29.9k|		snprintf(buf, sizeof(buf), "%u", type);
 3570|  29.9k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  29.9k|	{                                                         \
  |  |   98|  29.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.9k|	}
  ------------------
 3571|  29.9k|		ADD_STRING(target, sep2);
  ------------------
  |  |   97|  29.9k|	{                                                         \
  |  |   98|  29.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.9k|	}
  ------------------
 3572|  29.9k|		INDENT(style);
  ------------------
  |  | 3191|  29.9k|	do {                                                                 \
  |  | 3192|  29.9k|		unsigned int __i;                                            \
  |  | 3193|  29.9k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  29.9k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  29.9k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 29.9k, False: 0]
  |  |  ------------------
  |  | 3195|  29.9k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  29.9k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 29.9k, False: 0]
  |  |  ------------------
  |  | 3196|  29.9k|		{                                                            \
  |  | 3197|  29.9k|			break;                                               \
  |  | 3198|  29.9k|		}                                                            \
  |  | 3199|  29.9k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3573|  29.9k|		ADD_STRING(target, "VALUE: ");
  ------------------
  |  |   97|  29.9k|	{                                                         \
  |  |   98|  29.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.9k|	}
  ------------------
 3574|   268M|		for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (3574:22): [True: 268M, False: 29.9k]
  ------------------
 3575|   268M|			snprintf(buf, sizeof(buf), "%02x", data[i]);
 3576|   268M|			ADD_STRING(target, buf);
  ------------------
  |  |   97|   268M|	{                                                         \
  |  |   98|   268M|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   268M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 1, False: 268M]
  |  |  ------------------
  |  |   99|      1|			result = ISC_R_NOSPACE;                   \
  |  |  100|      1|			goto cleanup;                             \
  |  |  101|      1|		} else                                            \
  |  |  102|   268M|			isc_buffer_putstr(b, s);                  \
  |  |  103|   268M|	}
  ------------------
 3577|   268M|		}
 3578|  29.9k|		if (yaml) {
  ------------------
  |  Branch (3578:7): [True: 0, False: 29.9k]
  ------------------
 3579|      0|			ADD_STRING(target, sep2);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3580|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3581|      0|			ADD_STRING(target, "PVALUE: \"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3582|      0|			PUT_YAMLSTR(target, data, len, false);
  ------------------
  |  |  105|      0|	{                                                          \
  |  |  106|      0|		result = put_yamlstr(target, namebuf, len, utfok); \
  |  |  107|      0|		if (result != ISC_R_SUCCESS) {                     \
  |  |  ------------------
  |  |  |  Branch (107:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  108|      0|			goto cleanup;                              \
  |  |  109|      0|		}                                                  \
  |  |  110|      0|	}
  ------------------
 3583|      0|			ADD_STRING(target, "\"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3584|  29.9k|		} else {
 3585|  29.9k|			ADD_STRING(target, " (\"");
  ------------------
  |  |   97|  29.9k|	{                                                         \
  |  |   98|  29.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.9k|	}
  ------------------
 3586|   268M|			for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (3586:23): [True: 268M, False: 29.9k]
  ------------------
 3587|   268M|				if (isprint(data[i])) {
  ------------------
  |  Branch (3587:9): [True: 20.6M, False: 248M]
  ------------------
 3588|  20.6M|					if (isc_buffer_availablelength(target) <
  ------------------
  |  |  161|  20.6M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (3588:10): [True: 0, False: 20.6M]
  ------------------
 3589|  20.6M|					    1)
 3590|      0|					{
 3591|      0|						CLEANUP(ISC_R_NOSPACE);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
 3592|      0|					}
 3593|  20.6M|					isc_buffer_putmem(target, &data[i], 1);
 3594|   248M|				} else {
 3595|   248M|					ADD_STRING(target, ".");
  ------------------
  |  |   97|   248M|	{                                                         \
  |  |   98|   248M|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   248M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 248M]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   248M|			isc_buffer_putstr(b, s);                  \
  |  |  103|   248M|	}
  ------------------
 3596|   248M|				}
 3597|   268M|			}
 3598|  29.9k|			ADD_STRING(target, "\")");
  ------------------
  |  |   97|  29.9k|	{                                                         \
  |  |   98|  29.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  29.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 29.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  29.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  29.9k|	}
  ------------------
 3599|  29.9k|		}
 3600|  29.9k|		isc_buffer_forward(optbuf, len);
 3601|  29.9k|	}
 3602|  30.0k|cleanup:
 3603|  30.0k|	return result;
 3604|  30.0k|}
message.c:msgresetedns:
  519|  21.9k|msgresetedns(dns_message_t *msg) {
  520|  21.9k|	if (msg->edns.opts != NULL) {
  ------------------
  |  Branch (520:6): [True: 0, False: 21.9k]
  ------------------
  521|      0|		INSIST(msg->edns.maxopts != 0);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  522|      0|		for (size_t i = 0; i < msg->edns.count; i++) {
  ------------------
  |  Branch (522:22): [True: 0, False: 0]
  ------------------
  523|      0|			if (msg->edns.opts[i].value != NULL) {
  ------------------
  |  Branch (523:8): [True: 0, False: 0]
  ------------------
  524|      0|				isc_mem_put(msg->mctx, msg->edns.opts[i].value,
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  525|      0|					    msg->edns.opts[i].length);
  526|      0|			}
  527|      0|		}
  528|       |		isc_mem_cput(msg->mctx, msg->edns.opts,
  ------------------
  |  |  153|      0|	do {                                                      \
  |  |  154|      0|		isc__mem_put((c), (p), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  155|      0|			     ISC__MEM_ZERO _ISC_MEM_FILELINE);    \
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  |  |  156|      0|		(p) = NULL;                                       \
  |  |  157|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (157:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  529|      0|			     (size_t)msg->edns.maxopts, sizeof(dns_ednsopt_t));
  530|      0|	}
  531|  21.9k|	msg->edns.maxopts = 0;
  532|  21.9k|	msg->edns.count = 0;
  533|  21.9k|}

dns_name_isabsolute:
  134|   304k|dns_name_isabsolute(const dns_name_t *name) {
  135|       |	/*
  136|       |	 * Does 'name' end in the root label?
  137|       |	 */
  138|       |
  139|   304k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   304k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   608k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 304k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 304k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   304k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  140|       |
  141|   304k|	return name->attributes.absolute;
  142|   304k|}
dns_name_hash:
  314|   246k|dns_name_hash(const dns_name_t *name) {
  315|   246k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   246k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   492k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 246k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 246k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   246k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  316|       |
  317|       |	return isc_hash32(name->ndata, name->length, false);
  318|   246k|}
dns_name_equal:
  437|   222k|dns_name_equal(const dns_name_t *name1, const dns_name_t *name2) {
  438|   222k|	unsigned int length;
  439|       |
  440|       |	/*
  441|       |	 * Are 'name1' and 'name2' equal?
  442|       |	 *
  443|       |	 * Note: It makes no sense for one of the names to be relative and the
  444|       |	 * other absolute.  If both names are relative, then to be meaningfully
  445|       |	 * compared the caller must ensure that they are both relative to the
  446|       |	 * same domain.
  447|       |	 */
  448|       |
  449|   222k|	REQUIRE(DNS_NAME_VALID(name1));
  ------------------
  |  |  198|   222k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   444k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 222k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 222k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   222k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  450|   222k|	REQUIRE(DNS_NAME_VALID(name2));
  ------------------
  |  |  198|   222k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   444k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 222k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 222k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   222k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  451|       |	/*
  452|       |	 * Either name1 is absolute and name2 is absolute, or neither is.
  453|       |	 */
  454|   222k|	REQUIRE((name1->attributes.absolute) == (name2->attributes.absolute));
  ------------------
  |  |  198|   222k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   222k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 222k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   222k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  455|       |
  456|   222k|	if (name1 == name2) {
  ------------------
  |  Branch (456:6): [True: 0, False: 222k]
  ------------------
  457|      0|		return true;
  458|      0|	}
  459|       |
  460|   222k|	length = name1->length;
  461|   222k|	if (length != name2->length) {
  ------------------
  |  Branch (461:6): [True: 770, False: 221k]
  ------------------
  462|    770|		return false;
  463|    770|	}
  464|       |
  465|       |	/* label lengths are < 64 so tolower() does not affect them */
  466|   221k|	return isc_ascii_lowerequal(name1->ndata, name2->ndata, length);
  467|   222k|}
dns_name_rdatacompare:
  499|  10.0k|dns_name_rdatacompare(const dns_name_t *name1, const dns_name_t *name2) {
  500|       |	/*
  501|       |	 * Compare two absolute names as rdata.
  502|       |	 */
  503|       |
  504|  10.0k|	REQUIRE(DNS_NAME_VALID(name1));
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  20.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  505|  10.0k|	REQUIRE(name1->length > 0);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  506|  10.0k|	REQUIRE(name1->attributes.absolute);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  507|  10.0k|	REQUIRE(DNS_NAME_VALID(name2));
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  20.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  508|  10.0k|	REQUIRE(name2->length > 0);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  509|  10.0k|	REQUIRE(name2->attributes.absolute);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  510|       |
  511|       |	/* label lengths are < 64 so tolower() does not affect them */
  512|  10.0k|	return isc_ascii_lowercmp(name1->ndata, name2->ndata,
  513|  10.0k|				  ISC_MIN(name1->length, name2->length));
  ------------------
  |  |   77|  10.0k|#define ISC_MIN(a, b) ((a) < (b) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (77:24): [True: 1.02k, False: 9.04k]
  |  |  ------------------
  ------------------
  514|  10.0k|}
dns_name_getlabel:
  565|  5.06k|dns_name_getlabel(const dns_name_t *name, unsigned int n, dns_label_t *label) {
  566|  5.06k|	dns_offsets_t offsets;
  567|       |
  568|       |	/*
  569|       |	 * Make 'label' refer to the 'n'th least significant label of 'name'.
  570|       |	 */
  571|       |
  572|  5.06k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  5.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 5.06k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 5.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  573|  5.06k|	REQUIRE(label != NULL);
  ------------------
  |  |  198|  5.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.06k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  574|       |
  575|  5.06k|	uint8_t labels = dns_name_offsets(name, offsets);
  576|       |
  577|  5.06k|	REQUIRE(labels > 0);
  ------------------
  |  |  198|  5.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.06k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  578|  5.06k|	REQUIRE(n < labels);
  ------------------
  |  |  198|  5.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.06k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  579|       |
  580|  5.06k|	label->base = &name->ndata[offsets[n]];
  581|  5.06k|	if (n == (unsigned int)labels - 1) {
  ------------------
  |  Branch (581:6): [True: 3.03k, False: 2.02k]
  ------------------
  582|  3.03k|		label->length = name->length - offsets[n];
  583|  3.03k|	} else {
  584|  2.02k|		label->length = offsets[n + 1] - offsets[n];
  585|  2.02k|	}
  586|  5.06k|}
dns_name_getlabelsequence:
  590|    680|			  unsigned int n, dns_name_t *target) {
  591|    680|	unsigned char *p, l;
  592|    680|	unsigned int firstoffset, endoffset;
  593|    680|	unsigned int i;
  594|       |
  595|       |	/*
  596|       |	 * Make 'target' refer to the 'n' labels including and following
  597|       |	 * 'first' in 'source'.
  598|       |	 */
  599|       |
  600|    680|	REQUIRE(DNS_NAME_VALID(source));
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  601|    680|	REQUIRE(DNS_NAME_VALID(target));
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  602|    680|	REQUIRE(DNS_NAME_BINDABLE(target));
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  603|       |
  604|    680|	uint8_t labels = dns_name_countlabels(source);
  605|    680|	REQUIRE(first <= labels && n <= labels - first);
  ------------------
  |  |  198|    680|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 680, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    680|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  606|       |
  607|    680|	p = source->ndata;
  608|    680|	if (first == labels) {
  ------------------
  |  Branch (608:6): [True: 0, False: 680]
  ------------------
  609|      0|		firstoffset = source->length;
  610|    680|	} else {
  611|  1.47k|		for (i = 0; i < first; i++) {
  ------------------
  |  Branch (611:15): [True: 799, False: 680]
  ------------------
  612|    799|			l = *p;
  613|    799|			p += l + 1;
  614|    799|		}
  615|    680|		firstoffset = (unsigned int)(p - source->ndata);
  616|    680|	}
  617|       |
  618|    680|	if (first + n == labels) {
  ------------------
  |  Branch (618:6): [True: 680, False: 0]
  ------------------
  619|    680|		endoffset = source->length;
  620|    680|	} else {
  621|      0|		for (i = 0; i < n; i++) {
  ------------------
  |  Branch (621:15): [True: 0, False: 0]
  ------------------
  622|      0|			l = *p;
  623|      0|			p += l + 1;
  624|      0|		}
  625|      0|		endoffset = (unsigned int)(p - source->ndata);
  626|      0|	}
  627|       |
  628|    680|	target->ndata = &source->ndata[firstoffset];
  629|    680|	target->length = endoffset - firstoffset;
  630|       |
  631|    680|	if (first + n == labels && n > 0 && source->attributes.absolute) {
  ------------------
  |  Branch (631:6): [True: 680, False: 0]
  |  Branch (631:29): [True: 680, False: 0]
  |  Branch (631:38): [True: 680, False: 0]
  ------------------
  632|    680|		target->attributes.absolute = true;
  633|    680|	} else {
  634|       |		target->attributes.absolute = false;
  635|      0|	}
  636|    680|}
dns_name_fromregion:
  656|   479k|dns_name_fromregion(dns_name_t *name, const isc_region_t *r) {
  657|   479k|	size_t length;
  658|   479k|	isc_region_t r2 = { .base = NULL, .length = 0 };
  659|       |
  660|       |	/*
  661|       |	 * Make 'name' refer to region 'r'.
  662|       |	 */
  663|       |
  664|   479k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   479k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   959k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 479k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 479k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   479k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  665|   479k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   479k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   479k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 479k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   479k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  666|   479k|	REQUIRE(DNS_NAME_BINDABLE(name));
  ------------------
  |  |  198|   479k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   959k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 479k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 479k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   479k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  667|       |
  668|   479k|	name->ndata = r->base;
  669|   479k|	if (name->buffer != NULL) {
  ------------------
  |  Branch (669:6): [True: 0, False: 479k]
  ------------------
  670|      0|		isc_buffer_clear(name->buffer);
  671|      0|		isc_buffer_availableregion(name->buffer, &r2);
  672|      0|		length = (r->length < r2.length) ? r->length : r2.length;
  ------------------
  |  Branch (672:12): [True: 0, False: 0]
  ------------------
  673|      0|		if (length > DNS_NAME_MAXWIRE) {
  ------------------
  |  |  190|      0|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (673:7): [True: 0, False: 0]
  ------------------
  674|      0|			length = DNS_NAME_MAXWIRE;
  ------------------
  |  |  190|      0|#define DNS_NAME_MAXWIRE   255
  ------------------
  675|      0|		}
  676|   479k|	} else {
  677|   479k|		length = (r->length <= DNS_NAME_MAXWIRE) ? r->length
  ------------------
  |  |  190|   479k|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (677:12): [True: 141k, False: 337k]
  ------------------
  678|   479k|							 : DNS_NAME_MAXWIRE;
  ------------------
  |  |  190|   817k|#define DNS_NAME_MAXWIRE   255
  ------------------
  679|   479k|	}
  680|       |
  681|   479k|	name->attributes.absolute = false;
  682|       |
  683|   479k|	if (length > 0) {
  ------------------
  |  Branch (683:6): [True: 479k, False: 0]
  ------------------
  684|   479k|		size_t offset = 0;
  685|   479k|		uint8_t nlabels = 0;
  686|  2.89M|		while (offset != length) {
  ------------------
  |  Branch (686:10): [True: 2.89M, False: 0]
  ------------------
  687|  2.89M|			uint8_t count;
  688|       |
  689|  2.89M|			INSIST(nlabels < DNS_NAME_MAXLABELS);
  ------------------
  |  |  202|  2.89M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.89M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.89M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.89M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  690|  2.89M|			nlabels++;
  691|       |
  692|  2.89M|			count = name->ndata[offset];
  693|  2.89M|			INSIST(count <= DNS_NAME_LABELLEN);
  ------------------
  |  |  202|  2.89M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.89M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.89M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.89M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  694|       |
  695|  2.89M|			offset += count + 1;
  696|  2.89M|			INSIST(offset <= length);
  ------------------
  |  |  202|  2.89M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.89M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.89M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.89M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  697|       |
  698|  2.89M|			if (count == 0) {
  ------------------
  |  Branch (698:8): [True: 479k, False: 2.41M]
  ------------------
  699|   479k|				name->attributes.absolute = true;
  700|   479k|				break;
  701|   479k|			}
  702|  2.89M|		}
  703|   479k|		name->length = offset;
  704|   479k|	}
  705|       |
  706|   479k|	if (name->buffer != NULL) {
  ------------------
  |  Branch (706:6): [True: 0, False: 479k]
  ------------------
  707|       |		/*
  708|       |		 * name->length has been updated by set_offsets to the actual
  709|       |		 * length of the name data so we can now copy the actual name
  710|       |		 * data and not anything after it.
  711|       |		 */
  712|      0|		if (name->length > 0) {
  ------------------
  |  Branch (712:7): [True: 0, False: 0]
  ------------------
  713|      0|			memmove(r2.base, r->base, name->length);
  714|      0|		}
  715|      0|		name->ndata = r2.base;
  716|      0|		isc_buffer_add(name->buffer, name->length);
  717|      0|	}
  718|   479k|}
dns_name_totext:
  976|   842k|		isc_buffer_t *target) {
  977|   842k|	isc_result_t result;
  978|   842k|	unsigned char *ndata = NULL;
  979|   842k|	unsigned int nlen;
  980|   842k|	unsigned int labels;
  981|   842k|	bool saw_root = false;
  982|   842k|	unsigned int oused;
  983|   842k|	bool omit_final_dot = ((options & DNS_NAME_OMITFINALDOT) != 0);
  ------------------
  |  |  883|   842k|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  984|   842k|	bool minimal = ((options & DNS_NAME_QUOTED) != 0);
  ------------------
  |  |  885|   842k|#define DNS_NAME_QUOTED	      0x04U /* minimal escaping within double quotes */
  ------------------
  985|   842k|	bool principal = ((options & DNS_NAME_PRINCIPAL) != 0);
  ------------------
  |  |  884|   842k|#define DNS_NAME_PRINCIPAL    0x02U /* do not escape $ and @ */
  ------------------
  986|   842k|	bool first = true;
  987|       |
  988|       |	/*
  989|       |	 * This function assumes the name is in proper uncompressed
  990|       |	 * wire format.
  991|       |	 */
  992|   842k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   842k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.68M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 842k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 842k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   842k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  993|   842k|	REQUIRE(ISC_BUFFER_VALID(target));
  ------------------
  |  |  198|   842k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.68M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 842k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 842k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   842k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  994|       |
  995|   842k|	oused = target->used;
  996|       |
  997|   842k|	ndata = name->ndata;
  998|   842k|	nlen = name->length;
  999|   842k|	labels = dns_name_countlabels(name);
 1000|       |
 1001|   842k|	if (labels == 0 && nlen == 0) {
  ------------------
  |  Branch (1001:6): [True: 0, False: 842k]
  |  Branch (1001:21): [True: 0, False: 0]
  ------------------
 1002|       |		/*
 1003|       |		 * Special handling for an empty name.
 1004|       |		 */
 1005|      0|		omit_final_dot = true;
 1006|      0|		CHECK(isc_buffer_reserve(target, 1));
  ------------------
  |  |  255|      0|	{                                      \
  |  |  256|      0|		result = (r);                  \
  |  |  257|      0|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      0|	}
  ------------------
 1007|      0|		isc_buffer_putuint8(target, '@');
 1008|       |
 1009|       |		/*
 1010|       |		 * Skip the while() loop.
 1011|       |		 */
 1012|      0|		nlen = 0;
 1013|   842k|	} else if (nlen == 1 && labels == 1 && *ndata == '\0') {
  ------------------
  |  Branch (1013:13): [True: 363k, False: 479k]
  |  Branch (1013:26): [True: 363k, False: 0]
  |  Branch (1013:41): [True: 363k, False: 0]
  ------------------
 1014|       |		/*
 1015|       |		 * Special handling for the root label.
 1016|       |		 */
 1017|   363k|		saw_root = true;
 1018|   363k|		omit_final_dot = false;
 1019|       |
 1020|       |		/*
 1021|       |		 * Skip the while() loop.
 1022|       |		 */
 1023|   363k|		nlen = 0;
 1024|   363k|	}
 1025|       |
 1026|  6.24M|	while (labels > 0 && nlen > 0) {
  ------------------
  |  Branch (1026:9): [True: 6.24M, False: 0]
  |  Branch (1026:23): [True: 5.87M, False: 363k]
  ------------------
 1027|  5.87M|		unsigned int count = *ndata++;
 1028|  5.87M|		labels--;
 1029|  5.87M|		nlen--;
 1030|  5.87M|		if (count == 0) {
  ------------------
  |  Branch (1030:7): [True: 479k, False: 5.39M]
  ------------------
 1031|   479k|			saw_root = true;
 1032|   479k|			break;
 1033|  5.39M|		} else if (!first) {
  ------------------
  |  Branch (1033:14): [True: 4.91M, False: 479k]
  ------------------
 1034|  4.91M|			CHECK(isc_buffer_reserve(target, 1));
  ------------------
  |  |  255|  4.91M|	{                                      \
  |  |  256|  4.91M|		result = (r);                  \
  |  |  257|  4.91M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 4.91M]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  4.91M|	}
  ------------------
 1035|  4.91M|			isc_buffer_putuint8(target, '.');
 1036|  4.91M|		}
 1037|  5.39M|		first = false;
 1038|       |
 1039|  5.39M|		if (count <= DNS_NAME_LABELLEN) {
  ------------------
  |  |  192|  5.39M|#define DNS_NAME_LABELLEN  63
  ------------------
  |  Branch (1039:7): [True: 5.39M, False: 0]
  ------------------
 1040|  5.39M|			unsigned char c;
 1041|       |
 1042|  5.39M|			INSIST(nlen >= count);
  ------------------
  |  |  202|  5.39M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  5.39M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 5.39M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.39M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1043|       |
 1044|  86.7M|			while (count > 0) {
  ------------------
  |  Branch (1044:11): [True: 81.3M, False: 5.39M]
  ------------------
 1045|  81.3M|				uint32_t value;
 1046|       |
 1047|  81.3M|				c = *ndata;
 1048|  81.3M|				switch (c) {
 1049|       |				/* Special modifiers in zone files. */
 1050|   434k|				case 0x40: /* '@' */
  ------------------
  |  Branch (1050:5): [True: 434k, False: 80.8M]
  ------------------
 1051|   920k|				case 0x24: /* '$' */
  ------------------
  |  Branch (1051:5): [True: 485k, False: 80.8M]
  ------------------
 1052|   920k|					if (principal) {
  ------------------
  |  Branch (1052:10): [True: 0, False: 920k]
  ------------------
 1053|      0|						goto no_escape;
 1054|      0|					}
 1055|   920k|					FALLTHROUGH;
  ------------------
  |  |  101|   920k|#define FALLTHROUGH [[fallthrough]]
  ------------------
 1056|  1.16M|				case 0x28: /* '(' */
  ------------------
  |  Branch (1056:5): [True: 249k, False: 81.0M]
  ------------------
 1057|  1.43M|				case 0x29: /* ')' */
  ------------------
  |  Branch (1057:5): [True: 264k, False: 81.0M]
  ------------------
 1058|  1.61M|				case 0x3B: /* ';' */
  ------------------
  |  Branch (1058:5): [True: 180k, False: 81.1M]
  ------------------
 1059|  1.61M|					if (minimal) {
  ------------------
  |  Branch (1059:10): [True: 0, False: 1.61M]
  ------------------
 1060|      0|						goto no_escape;
 1061|      0|					}
 1062|  1.61M|					FALLTHROUGH;
  ------------------
  |  |  101|  1.61M|#define FALLTHROUGH [[fallthrough]]
  ------------------
 1063|  1.80M|				case 0x22: /* '"' */
  ------------------
  |  Branch (1063:5): [True: 192k, False: 81.1M]
  ------------------
 1064|  2.07M|				case 0x2E: /* '.' */
  ------------------
  |  Branch (1064:5): [True: 271k, False: 81.0M]
  ------------------
 1065|  2.09M|				case 0x5C: /* '\\' */
  ------------------
  |  Branch (1065:5): [True: 15.2k, False: 81.2M]
  ------------------
 1066|  2.09M|					value = '\\' << 8 | c;
 1067|  2.09M|					CHECK(isc_buffer_reserve(target, 2));
  ------------------
  |  |  255|  2.09M|	{                                      \
  |  |  256|  2.09M|		result = (r);                  \
  |  |  257|  2.09M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 2.09M]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  2.09M|	}
  ------------------
 1068|  2.09M|					isc_buffer_putuint16(target, value);
 1069|  2.09M|					ndata++;
 1070|  2.09M|					nlen--;
 1071|  2.09M|					break;
 1072|      0|				no_escape:
 1073|  79.2M|				default:
  ------------------
  |  Branch (1073:5): [True: 79.2M, False: 2.09M]
  ------------------
 1074|  79.2M|					if ((c > 0x20 && c < 0x7f) ||
  ------------------
  |  Branch (1074:11): [True: 17.4M, False: 61.7M]
  |  Branch (1074:23): [True: 4.61M, False: 12.8M]
  ------------------
 1075|  74.5M|					    (c == 0x20 && minimal))
  ------------------
  |  Branch (1075:11): [True: 272k, False: 74.3M]
  |  Branch (1075:24): [True: 0, False: 272k]
  ------------------
 1076|  4.61M|					{
 1077|  4.61M|						CHECK(isc_buffer_reserve(target,
  ------------------
  |  |  255|  4.61M|	{                                      \
  |  |  256|  4.61M|		result = (r);                  \
  |  |  257|  4.61M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 4.61M]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  4.61M|	}
  ------------------
 1078|  4.61M|									 1));
 1079|  4.61M|						isc_buffer_putuint8(target, c);
 1080|  4.61M|						ndata++;
 1081|  4.61M|						nlen--;
 1082|  74.5M|					} else {
 1083|  74.5M|						value = 0x5c << 24;
 1084|  74.5M|						value |= (0x30 +
 1085|  74.5M|							  ((c / 100) % 10))
 1086|  74.5M|							 << 16;
 1087|  74.5M|						value |=
 1088|  74.5M|							(0x30 + ((c / 10) % 10))
 1089|  74.5M|							<< 8;
 1090|  74.5M|						value |= 0x30 + (c % 10);
 1091|  74.5M|						CHECK(isc_buffer_reserve(target,
  ------------------
  |  |  255|  74.5M|	{                                      \
  |  |  256|  74.5M|		result = (r);                  \
  |  |  257|  74.5M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 7, False: 74.5M]
  |  |  ------------------
  |  |  258|      7|			goto cleanup;          \
  |  |  259|      7|		}                              \
  |  |  260|  74.5M|	}
  ------------------
 1092|  74.5M|									 4));
 1093|  74.5M|						isc_buffer_putuint32(target,
 1094|  74.5M|								     value);
 1095|  74.5M|						ndata++;
 1096|  74.5M|						nlen--;
 1097|  74.5M|					}
 1098|  81.3M|				}
 1099|  81.3M|				count--;
 1100|  81.3M|			}
 1101|  5.39M|		} else {
 1102|      0|			FATAL_ERROR("Unexpected label type %02x", count);
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
 1103|      0|			UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
 1104|      0|		}
 1105|  5.39M|	}
 1106|       |
 1107|   842k|	if (saw_root && !omit_final_dot) {
  ------------------
  |  Branch (1107:6): [True: 842k, False: 0]
  |  Branch (1107:18): [True: 842k, False: 327]
  ------------------
 1108|   842k|		CHECK(isc_buffer_reserve(target, 1));
  ------------------
  |  |  255|   842k|	{                                      \
  |  |  256|   842k|		result = (r);                  \
  |  |  257|   842k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 842k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|   842k|	}
  ------------------
 1109|   842k|		isc_buffer_putuint8(target, '.');
 1110|   842k|	}
 1111|       |
 1112|   842k|	if (isc_buffer_availablelength(target) > 1) {
  ------------------
  |  |  161|   842k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1112:6): [True: 842k, False: 0]
  ------------------
 1113|   842k|		uint8_t *p = isc_buffer_used(target);
  ------------------
  |  |  149|   842k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1114|   842k|		*p = 0;
 1115|   842k|	}
 1116|       |
 1117|   842k|	if (totext_filter_proc != NULL) {
  ------------------
  |  Branch (1117:6): [True: 0, False: 842k]
  ------------------
 1118|      0|		return (totext_filter_proc)(target, oused);
 1119|      0|	}
 1120|       |
 1121|   842k|	return ISC_R_SUCCESS;
 1122|       |
 1123|      7|cleanup:
 1124|      7|	return result;
 1125|   842k|}
dns_name_fromwire:
 1277|  1.80M|		  const dns_decompress_t dctx, isc_buffer_t *target) {
 1278|       |	/*
 1279|       |	 * Copy the name at source into target, decompressing it.
 1280|       |	 *
 1281|       |	 *	*** WARNING ***
 1282|       |	 *
 1283|       |	 * dns_name_fromwire() deals with raw network data. An error in this
 1284|       |	 * routine could result in the failure or hijacking of the server.
 1285|       |	 *
 1286|       |	 * The description of name compression in RFC 1035 section 4.1.4 is
 1287|       |	 * subtle wrt certain edge cases. The first important sentence is:
 1288|       |	 *
 1289|       |	 * > In this scheme, an entire domain name or a list of labels at the
 1290|       |	 * > end of a domain name is replaced with a pointer to a prior
 1291|       |	 * > occurrence of the same name.
 1292|       |	 *
 1293|       |	 * The key word is "prior". This says that compression pointers must
 1294|       |	 * point strictly earlier in the message (before our "marker" variable),
 1295|       |	 * which is enough to prevent DoS attacks due to compression loops.
 1296|       |	 *
 1297|       |	 * The next important sentence is:
 1298|       |	 *
 1299|       |	 * > If a domain name is contained in a part of the message subject to a
 1300|       |	 * > length field (such as the RDATA section of an RR), and compression
 1301|       |	 * > is used, the length of the compressed name is used in the length
 1302|       |	 * > calculation, rather than the length of the expanded name.
 1303|       |	 *
 1304|       |	 * When decompressing, this means that the amount of the source buffer
 1305|       |	 * that we consumed (which is checked wrt the container's length field)
 1306|       |	 * is the length of the compressed name. A compressed name is defined as
 1307|       |	 * a sequence of labels ending with the root label or a compression
 1308|       |	 * pointer, that is, the segment of the name that dns_name_fromwire()
 1309|       |	 * examines first.
 1310|       |	 *
 1311|       |	 * This matters when handling names that play dirty tricks, like:
 1312|       |	 *
 1313|       |	 *	+---+---+---+---+---+---+
 1314|       |	 *	| 4 | 1 |'a'|192| 0 | 0 |
 1315|       |	 *	+---+---+---+---+---+---+
 1316|       |	 *
 1317|       |	 * We start at octet 1. There is an ordinary single character label "a",
 1318|       |	 * followed by a compression pointer that refers back to octet zero.
 1319|       |	 * Here there is a label of length 4, which weirdly re-uses the octets
 1320|       |	 * we already examined as the data for the label. It is followed by the
 1321|       |	 * root label,
 1322|       |	 *
 1323|       |	 * The specification says that the compressed name ends after the first
 1324|       |	 * zero octet (after the compression pointer) not the second zero octet,
 1325|       |	 * even though the second octet is later in the message. This shows the
 1326|       |	 * correct way to set our "consumed" variable.
 1327|       |	 */
 1328|       |
 1329|  1.80M|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  1.80M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.61M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.80M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1330|  1.80M|	REQUIRE(DNS_NAME_BINDABLE(name));
  ------------------
  |  |  198|  1.80M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.61M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.80M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1331|  1.80M|	REQUIRE((target != NULL && ISC_BUFFER_VALID(target)) ||
  ------------------
  |  |  198|  1.80M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  9.05M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.80M, False: 6.72k]
  |  |  |  |  |  Branch (42:11): [True: 6.72k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 6.72k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 6.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.80M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1332|  1.80M|		(target == NULL && ISC_BUFFER_VALID(name->buffer)));
 1333|       |
 1334|  1.80M|	if (target == NULL && name->buffer != NULL) {
  ------------------
  |  Branch (1334:6): [True: 6.72k, False: 1.80M]
  |  Branch (1334:24): [True: 6.72k, False: 0]
  ------------------
 1335|  6.72k|		target = name->buffer;
 1336|  6.72k|		isc_buffer_clear(target);
 1337|  6.72k|	}
 1338|       |
 1339|  1.80M|	uint8_t *const name_buf = isc_buffer_used(target);
  ------------------
  |  |  149|  1.80M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1340|  1.80M|	const uint32_t name_max = ISC_MIN(DNS_NAME_MAXWIRE,
  ------------------
  |  |   77|  1.80M|#define ISC_MIN(a, b) ((a) < (b) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (77:24): [True: 1.62M, False: 187k]
  |  |  ------------------
  ------------------
 1341|  1.80M|					  isc_buffer_availablelength(target));
 1342|  1.80M|	uint32_t name_len = 0;
 1343|       |
 1344|       |	/*
 1345|       |	 * After chasing a compression pointer, these variables refer to the
 1346|       |	 * source buffer as follows:
 1347|       |	 *
 1348|       |	 * sb --- mr --- cr --- st --- cd --- sm
 1349|       |	 *
 1350|       |	 * sb = source_buf (const)
 1351|       |	 * mr = marker
 1352|       |	 * cr = cursor
 1353|       |	 * st = start (const)
 1354|       |	 * cd = consumed
 1355|       |	 * sm = source_max (const)
 1356|       |	 *
 1357|       |	 * The marker hops backwards for each pointer.
 1358|       |	 * The cursor steps forwards for each label.
 1359|       |	 * The amount of the source we consumed is set once.
 1360|       |	 */
 1361|  1.80M|	const uint8_t *const source_buf = isc_buffer_base(source);
  ------------------
  |  |  143|  1.80M|#define isc_buffer_base(b) ((void *)(b)->base) /*a*/
  ------------------
 1362|  1.80M|	const uint8_t *const source_max = isc_buffer_active(source);
  ------------------
  |  |  147|  1.80M|	((void *)((unsigned char *)(b)->base + (b)->active)) /*c*/
  ------------------
 1363|  1.80M|	const uint8_t *const start = isc_buffer_current(source);
  ------------------
  |  |  145|  1.80M|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 1364|  1.80M|	const uint8_t *marker = start;
 1365|  1.80M|	const uint8_t *cursor = start;
 1366|  1.80M|	const uint8_t *consumed = NULL;
 1367|       |
 1368|       |	/*
 1369|       |	 * One iteration per label.
 1370|       |	 */
 1371|  14.6M|	while (cursor < source_max) {
  ------------------
  |  Branch (1371:9): [True: 14.6M, False: 2.11k]
  ------------------
 1372|  14.6M|		const uint8_t label_len = *cursor++;
 1373|  14.6M|		if (label_len <= DNS_NAME_LABELLEN) {
  ------------------
  |  |  192|  14.6M|#define DNS_NAME_LABELLEN  63
  ------------------
  |  Branch (1373:7): [True: 13.0M, False: 1.56M]
  ------------------
 1374|       |			/*
 1375|       |			 * Normal label: record its offset, and check bounds on
 1376|       |			 * the name length, which also ensures we don't overrun
 1377|       |			 * the offsets array. Don't touch any source bytes yet!
 1378|       |			 * The source bounds check will happen when we loop.
 1379|       |			 */
 1380|       |			/* and then a step to the ri-i-i-i-i-ight */
 1381|  13.0M|			cursor += label_len;
 1382|  13.0M|			name_len += label_len + 1;
 1383|  13.0M|			if (name_len > name_max) {
  ------------------
  |  Branch (1383:8): [True: 61.2k, False: 13.0M]
  ------------------
 1384|  61.2k|				return name_max == DNS_NAME_MAXWIRE
  ------------------
  |  |  190|  61.2k|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (1384:12): [True: 2, False: 61.2k]
  ------------------
 1385|  61.2k|					       ? DNS_R_NAMETOOLONG
 1386|  61.2k|					       : ISC_R_NOSPACE;
 1387|  13.0M|			} else if (label_len == 0) {
  ------------------
  |  Branch (1387:15): [True: 1.74M, False: 11.2M]
  ------------------
 1388|  1.74M|				goto root_label;
 1389|  1.74M|			}
 1390|  13.0M|		} else if (label_len < 192) {
  ------------------
  |  Branch (1390:14): [True: 536, False: 1.56M]
  ------------------
 1391|    536|			return DNS_R_BADLABELTYPE;
 1392|  1.56M|		} else if (!dns_decompress_getpermitted(dctx)) {
  ------------------
  |  Branch (1392:14): [True: 196, False: 1.56M]
  ------------------
 1393|    196|			return DNS_R_DISALLOWED;
 1394|  1.56M|		} else if (cursor < source_max) {
  ------------------
  |  Branch (1394:14): [True: 1.56M, False: 31]
  ------------------
 1395|       |			/*
 1396|       |			 * Compression pointer. Ensure it does not loop.
 1397|       |			 *
 1398|       |			 * Copy multiple labels in one go, to make the most of
 1399|       |			 * memmove() performance. Start at the marker and finish
 1400|       |			 * just before the pointer's hi+lo bytes, before the
 1401|       |			 * cursor. Bounds were already checked.
 1402|       |			 */
 1403|  1.56M|			const uint32_t hi = label_len & 0x3F;
 1404|  1.56M|			const uint32_t lo = *cursor++;
 1405|  1.56M|			const uint8_t *pointer = source_buf + (256 * hi + lo);
 1406|  1.56M|			if (pointer >= marker) {
  ------------------
  |  Branch (1406:8): [True: 48, False: 1.56M]
  ------------------
 1407|     48|				return DNS_R_BADPOINTER;
 1408|     48|			}
 1409|  1.56M|			const uint32_t copy_len = (cursor - 2) - marker;
 1410|  1.56M|			uint8_t *const dest = name_buf + name_len - copy_len;
 1411|  1.56M|			memmove(dest, marker, copy_len);
 1412|  1.56M|			consumed = consumed != NULL ? consumed : cursor;
  ------------------
  |  Branch (1412:15): [True: 578k, False: 986k]
  ------------------
 1413|       |			/* it's just a jump to the left */
 1414|  1.56M|			cursor = marker = pointer;
 1415|  1.56M|		}
 1416|  14.6M|	}
 1417|  2.11k|	return ISC_R_UNEXPECTEDEND;
 1418|  1.74M|root_label:;
 1419|       |	/*
 1420|       |	 * Copy labels almost like we do for compression pointers,
 1421|       |	 * from the marker up to and including the root label.
 1422|       |	 */
 1423|  1.74M|	const uint32_t copy_len = cursor - marker;
 1424|  1.74M|	memmove(name_buf + name_len - copy_len, marker, copy_len);
 1425|  1.74M|	consumed = consumed != NULL ? consumed : cursor;
  ------------------
  |  Branch (1425:13): [True: 932k, False: 811k]
  ------------------
 1426|  1.74M|	isc_buffer_forward(source, consumed - start);
 1427|       |
 1428|  1.74M|	name->attributes.absolute = true;
 1429|  1.74M|	name->ndata = name_buf;
 1430|  1.74M|	name->length = name_len;
 1431|  1.74M|	isc_buffer_add(target, name_len);
 1432|       |
 1433|  1.74M|	return ISC_R_SUCCESS;
 1434|  1.80M|}
dns_name_towire:
 1438|   301k|		isc_buffer_t *target) {
 1439|   301k|	bool compress, multi;
 1440|   301k|	unsigned int here;
 1441|   301k|	unsigned int prefix_length;
 1442|   301k|	unsigned int suffix_coff;
 1443|       |
 1444|       |	/*
 1445|       |	 * Convert 'name' into wire format, compressing it as specified by the
 1446|       |	 * compression context 'cctx' (or without compressing if 'cctx'
 1447|       |	 * is NULL), and storing the result in 'target'.
 1448|       |	 */
 1449|       |
 1450|   301k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   602k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1451|   301k|	REQUIRE(ISC_BUFFER_VALID(target));
  ------------------
  |  |  198|   301k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   602k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 301k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   301k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1452|       |
 1453|   301k|	if (cctx == NULL) {
  ------------------
  |  Branch (1453:6): [True: 0, False: 301k]
  ------------------
 1454|      0|		if (isc_buffer_availablelength(target) < name->length) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1454:7): [True: 0, False: 0]
  ------------------
 1455|      0|			return ISC_R_NOSPACE;
 1456|      0|		}
 1457|      0|		memmove(isc_buffer_used(target), name->ndata, name->length);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1458|      0|		isc_buffer_add(target, name->length);
 1459|      0|		return ISC_R_SUCCESS;
 1460|      0|	}
 1461|       |
 1462|   301k|	compress = !name->attributes.nocompress &&
  ------------------
  |  Branch (1462:13): [True: 301k, False: 0]
  ------------------
 1463|   301k|		   dns_compress_getpermitted(cctx);
  ------------------
  |  Branch (1463:6): [True: 279k, False: 21.5k]
  ------------------
 1464|   301k|	multi = compress && dns_compress_getmultiuse(cctx);
  ------------------
  |  Branch (1464:10): [True: 279k, False: 21.5k]
  |  Branch (1464:22): [True: 0, False: 279k]
  ------------------
 1465|       |
 1466|       |	/*
 1467|       |	 * Write a compression pointer directly if the caller passed us
 1468|       |	 * a pointer to this name's offset that we saved previously.
 1469|       |	 */
 1470|   301k|	if (multi && cctx->coff < 0x4000) {
  ------------------
  |  Branch (1470:6): [True: 0, False: 301k]
  |  Branch (1470:15): [True: 0, False: 0]
  ------------------
 1471|      0|		if (isc_buffer_availablelength(target) < 2) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1471:7): [True: 0, False: 0]
  ------------------
 1472|      0|			return ISC_R_NOSPACE;
 1473|      0|		}
 1474|      0|		isc_buffer_putuint16(target, cctx->coff | 0xc000);
 1475|      0|		return ISC_R_SUCCESS;
 1476|      0|	}
 1477|       |
 1478|       |	/*
 1479|       |	 * Always add the name to the compression context; if compression
 1480|       |	 * is off, reset the return values before writing the name.
 1481|       |	 */
 1482|   301k|	prefix_length = name->length;
 1483|   301k|	suffix_coff = 0;
 1484|   301k|	dns_compress_name(cctx, target, name, &prefix_length, &suffix_coff);
 1485|   301k|	if (!compress) {
  ------------------
  |  Branch (1485:6): [True: 21.5k, False: 279k]
  ------------------
 1486|  21.5k|		prefix_length = name->length;
 1487|  21.5k|		suffix_coff = 0;
 1488|  21.5k|	}
 1489|       |
 1490|       |	/*
 1491|       |	 * Return this name's compression offset for use next time, provided
 1492|       |	 * it isn't too short for compression to help (i.e. it's the root)
 1493|       |	 */
 1494|   301k|	here = isc_buffer_usedlength(target);
  ------------------
  |  |  157|   301k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1495|   301k|	if (multi && here < 0x4000 && prefix_length > 1) {
  ------------------
  |  Branch (1495:6): [True: 0, False: 301k]
  |  Branch (1495:15): [True: 0, False: 0]
  |  Branch (1495:32): [True: 0, False: 0]
  ------------------
 1496|      0|		cctx->coff = (uint16_t)here;
 1497|      0|	}
 1498|       |
 1499|   301k|	if (prefix_length > 0) {
  ------------------
  |  Branch (1499:6): [True: 279k, False: 21.4k]
  ------------------
 1500|   279k|		if (isc_buffer_availablelength(target) < prefix_length) {
  ------------------
  |  |  161|   279k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1500:7): [True: 107k, False: 172k]
  ------------------
 1501|   107k|			return ISC_R_NOSPACE;
 1502|   107k|		}
 1503|   172k|		memmove(isc_buffer_used(target), name->ndata, prefix_length);
  ------------------
  |  |  149|   172k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1504|   172k|		isc_buffer_add(target, prefix_length);
 1505|   172k|	}
 1506|       |
 1507|   193k|	if (suffix_coff > 0) {
  ------------------
  |  Branch (1507:6): [True: 32.3k, False: 161k]
  ------------------
 1508|  32.3k|		if (multi && prefix_length == 0) {
  ------------------
  |  Branch (1508:7): [True: 0, False: 32.3k]
  |  Branch (1508:16): [True: 0, False: 0]
  ------------------
 1509|      0|			cctx->coff = suffix_coff;
 1510|      0|		}
 1511|  32.3k|		if (isc_buffer_availablelength(target) < 2) {
  ------------------
  |  |  161|  32.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1511:7): [True: 92, False: 32.2k]
  ------------------
 1512|     92|			return ISC_R_NOSPACE;
 1513|     92|		}
 1514|  32.2k|		isc_buffer_putuint16(target, suffix_coff | 0xc000);
 1515|  32.2k|	}
 1516|       |
 1517|   193k|	return ISC_R_SUCCESS;
 1518|   193k|}
dns_name_dynamic:
 1677|   467k|dns_name_dynamic(const dns_name_t *name) {
 1678|   467k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   467k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   934k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 467k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   467k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1679|       |
 1680|       |	/*
 1681|       |	 * Returns whether there is dynamic memory associated with this name.
 1682|       |	 */
 1683|       |
 1684|   467k|	return name->attributes.dynamic;
 1685|   467k|}
dns_name_format:
 1728|  2.45k|dns_name_format(const dns_name_t *name, char *cp, unsigned int size) {
 1729|  2.45k|	isc_result_t result;
 1730|  2.45k|	isc_buffer_t buf;
 1731|       |
 1732|  2.45k|	REQUIRE(size > 0);
  ------------------
  |  |  198|  2.45k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.45k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.45k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.45k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1733|       |
 1734|       |	/*
 1735|       |	 * Leave room for null termination after buffer.
 1736|       |	 */
 1737|  2.45k|	isc_buffer_init(&buf, cp, size - 1);
 1738|  2.45k|	result = dns_name_totext(name, DNS_NAME_OMITFINALDOT, &buf);
  ------------------
  |  |  883|  2.45k|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
 1739|  2.45k|	if (result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (1739:6): [True: 2.45k, False: 0]
  ------------------
 1740|  2.45k|		isc_buffer_putuint8(&buf, (uint8_t)'\0');
 1741|  2.45k|	} else {
 1742|      0|		snprintf(cp, size, "<unknown>");
 1743|      0|	}
 1744|  2.45k|}
dns_name_copy:
 1799|   316k|dns_name_copy(const dns_name_t *source, dns_name_t *dest) {
 1800|   316k|	isc_buffer_t *target = NULL;
 1801|   316k|	unsigned char *ndata = NULL;
 1802|       |
 1803|   316k|	REQUIRE(DNS_NAME_VALID(source));
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   633k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1804|   316k|	REQUIRE(DNS_NAME_VALID(dest));
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   633k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1805|   316k|	REQUIRE(DNS_NAME_BINDABLE(dest));
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   633k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1806|       |
 1807|   316k|	target = dest->buffer;
 1808|       |
 1809|   316k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   316k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1810|   316k|	REQUIRE(target->length >= source->length);
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   316k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1811|       |
 1812|   316k|	isc_buffer_clear(target);
 1813|       |
 1814|   316k|	ndata = (unsigned char *)target->base;
 1815|   316k|	dest->ndata = target->base;
 1816|       |
 1817|   316k|	if (source->length != 0) {
  ------------------
  |  Branch (1817:6): [True: 316k, False: 0]
  ------------------
 1818|   316k|		memmove(ndata, source->ndata, source->length);
 1819|   316k|	}
 1820|       |
 1821|   316k|	dest->ndata = ndata;
 1822|   316k|	dest->length = source->length;
 1823|   316k|	dest->attributes.absolute = source->attributes.absolute;
 1824|       |
 1825|   316k|	isc_buffer_add(target, dest->length);
 1826|   316k|}
dns_name_offsets:
 2098|  1.15M|dns_name_offsets(const dns_name_t *name, dns_offsets_t offsets) {
 2099|  1.15M|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  1.15M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.31M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.15M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.15M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2100|  1.15M|	unsigned int offset, count, length, nlabels;
 2101|  1.15M|	unsigned char *ndata;
 2102|       |
 2103|  1.15M|	ndata = name->ndata;
 2104|  1.15M|	length = name->length;
 2105|  1.15M|	offset = 0;
 2106|  1.15M|	nlabels = 0;
 2107|  9.15M|	while (offset != length) {
  ------------------
  |  Branch (2107:9): [True: 9.15M, False: 0]
  ------------------
 2108|  9.15M|		INSIST(nlabels < DNS_NAME_MAXLABELS);
  ------------------
  |  |  202|  9.15M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  9.15M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 9.15M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  9.15M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2109|  9.15M|		if (offsets != NULL) {
  ------------------
  |  Branch (2109:7): [True: 2.89M, False: 6.25M]
  ------------------
 2110|  2.89M|			offsets[nlabels] = offset;
 2111|  2.89M|		}
 2112|  9.15M|		nlabels++;
 2113|  9.15M|		count = *ndata;
 2114|  9.15M|		INSIST(count <= DNS_NAME_LABELLEN);
  ------------------
  |  |  202|  9.15M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  9.15M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 9.15M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  9.15M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2115|  9.15M|		offset += count + 1;
 2116|  9.15M|		ndata += count + 1;
 2117|  9.15M|		INSIST(offset <= length);
  ------------------
  |  |  202|  9.15M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  9.15M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 9.15M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  9.15M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2118|  9.15M|		if (count == 0) {
  ------------------
  |  Branch (2118:7): [True: 1.15M, False: 7.99M]
  ------------------
 2119|       |			/* Final root label */
 2120|  1.15M|			break;
 2121|  1.15M|		}
 2122|  9.15M|	}
 2123|  1.15M|	INSIST(offset == name->length);
  ------------------
  |  |  202|  1.15M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.15M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.15M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.15M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2124|       |
 2125|  1.15M|	return nlabels;
 2126|  1.15M|}

dst__opensslecdsa_init:
  671|      4|dst__opensslecdsa_init(dst_func_t **funcp) {
  672|      4|	REQUIRE(funcp != NULL);
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  673|       |
  674|      4|	if (*funcp == NULL) {
  ------------------
  |  Branch (674:6): [True: 4, False: 0]
  ------------------
  675|      4|		*funcp = &opensslecdsa_functions;
  676|      4|	}
  677|      4|}

dst__openssleddsa_init:
  647|      4|dst__openssleddsa_init(dst_func_t **funcp, unsigned char algorithm) {
  648|      4|	REQUIRE(funcp != NULL);
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  649|       |
  650|      4|	if (*funcp == NULL) {
  ------------------
  |  Branch (650:6): [True: 4, False: 0]
  ------------------
  651|      4|		if (check_algorithm(algorithm) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (651:7): [True: 4, False: 0]
  ------------------
  652|      4|			*funcp = &openssleddsa_functions;
  653|      4|		}
  654|      4|	}
  655|      4|}
openssleddsa_link.c:check_algorithm:
  587|      4|check_algorithm(unsigned char algorithm) {
  588|      4|	EVP_MD_CTX *evp_md_ctx = EVP_MD_CTX_create();
  589|      4|	EVP_PKEY *pkey = NULL;
  590|      4|	const eddsa_alginfo_t *alginfo = NULL;
  591|      4|	const unsigned char *key = NULL;
  592|      4|	const unsigned char *sig = NULL;
  593|      4|	const unsigned char test[] = "test";
  594|      4|	isc_result_t result = ISC_R_SUCCESS;
  595|      4|	size_t key_len, sig_len;
  596|       |
  597|      4|	if (evp_md_ctx == NULL) {
  ------------------
  |  Branch (597:6): [True: 0, False: 4]
  ------------------
  598|      0|		CLEANUP(ISC_R_NOMEMORY);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  599|      0|	}
  600|       |
  601|      4|	switch (algorithm) {
  602|      0|#if HAVE_OPENSSL_ED448
  603|      2|	case DST_ALG_ED448:
  ------------------
  |  Branch (603:2): [True: 2, False: 2]
  ------------------
  604|      2|		sig = ed448_sig;
  605|      2|		sig_len = sizeof(ed448_sig) - 1;
  606|      2|		key = ed448_pub;
  607|      2|		key_len = sizeof(ed448_pub) - 1;
  608|      2|		alginfo = openssleddsa_alg_info(algorithm);
  609|      2|		break;
  610|      0|#endif /* HAVE_OPENSSL_ED448 */
  611|      2|	case DST_ALG_ED25519:
  ------------------
  |  Branch (611:2): [True: 2, False: 2]
  ------------------
  612|      2|		sig = ed25519_sig;
  613|      2|		sig_len = sizeof(ed25519_sig) - 1;
  614|      2|		key = ed25519_pub;
  615|      2|		key_len = sizeof(ed25519_pub) - 1;
  616|      2|		alginfo = openssleddsa_alg_info(algorithm);
  617|      2|		break;
  618|      0|	default:
  ------------------
  |  Branch (618:2): [True: 0, False: 4]
  ------------------
  619|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  620|      4|	}
  621|       |
  622|      4|	INSIST(alginfo != NULL);
  ------------------
  |  |  202|      4|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      4|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      4|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  623|      4|	CHECK(raw_key_to_ossl(alginfo, 0, key, &key_len, &pkey));
  ------------------
  |  |  255|      4|	{                                      \
  |  |  256|      4|		result = (r);                  \
  |  |  257|      4|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 4]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      4|	}
  ------------------
  624|       |
  625|       |	/*
  626|       |	 * Check that we can verify the signature.
  627|       |	 */
  628|      4|	if (EVP_DigestVerifyInit(evp_md_ctx, NULL, NULL, NULL, pkey) != 1 ||
  ------------------
  |  Branch (628:6): [True: 0, False: 4]
  ------------------
  629|      4|	    EVP_DigestVerify(evp_md_ctx, sig, sig_len, test,
  ------------------
  |  Branch (629:6): [True: 0, False: 4]
  ------------------
  630|      4|			     sizeof(test) - 1) != 1)
  631|      0|	{
  632|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  633|      0|	}
  634|       |
  635|      4|cleanup:
  636|      4|	if (pkey != NULL) {
  ------------------
  |  Branch (636:6): [True: 4, False: 0]
  ------------------
  637|      4|		EVP_PKEY_free(pkey);
  638|      4|	}
  639|      4|	if (evp_md_ctx != NULL) {
  ------------------
  |  Branch (639:6): [True: 4, False: 0]
  ------------------
  640|       |		EVP_MD_CTX_destroy(evp_md_ctx);
  641|      4|	}
  642|      4|	ERR_clear_error();
  643|      4|	return result;
  644|      4|}
openssleddsa_link.c:openssleddsa_alg_info:
   54|      4|openssleddsa_alg_info(unsigned int key_alg) {
   55|      4|	if (key_alg == DST_ALG_ED25519) {
  ------------------
  |  Branch (55:6): [True: 2, False: 2]
  ------------------
   56|      2|		static const eddsa_alginfo_t ed25519_alginfo = {
   57|      2|			.pkey_type = EVP_PKEY_ED25519,
   58|      2|			.nid = NID_ED25519,
   59|      2|			.key_size = DNS_KEY_ED25519SIZE,
  ------------------
  |  |   74|      2|#define DNS_KEY_ED25519SIZE 32
  ------------------
   60|      2|			.sig_size = DNS_SIG_ED25519SIZE,
  ------------------
  |  |   75|      2|#define DNS_SIG_ED25519SIZE 64
  ------------------
   61|      2|		};
   62|      2|		return &ed25519_alginfo;
   63|      2|	}
   64|      2|#if HAVE_OPENSSL_ED448
   65|      2|	if (key_alg == DST_ALG_ED448) {
  ------------------
  |  Branch (65:6): [True: 2, False: 0]
  ------------------
   66|      2|		static const eddsa_alginfo_t ed448_alginfo = {
   67|      2|			.pkey_type = EVP_PKEY_ED448,
   68|      2|			.nid = NID_ED448,
   69|      2|			.key_size = DNS_KEY_ED448SIZE,
  ------------------
  |  |   77|      2|#define DNS_KEY_ED448SIZE 57
  ------------------
   70|      2|			.sig_size = DNS_SIG_ED448SIZE,
  ------------------
  |  |   78|      2|#define DNS_SIG_ED448SIZE 114
  ------------------
   71|      2|		};
   72|      2|		return &ed448_alginfo;
   73|      2|	}
   74|      0|#endif /* HAVE_OPENSSL_ED448 */
   75|      0|	return NULL;
   76|      2|}
openssleddsa_link.c:raw_key_to_ossl:
   80|      4|		const unsigned char *key, size_t *key_len, EVP_PKEY **pkey) {
   81|      4|	isc_result_t result;
   82|      4|	int pkey_type = alginfo->pkey_type;
   83|      4|	size_t len = alginfo->key_size;
   84|       |
   85|      4|	result = (private ? DST_R_INVALIDPRIVATEKEY : DST_R_INVALIDPUBLICKEY);
  ------------------
  |  Branch (85:12): [True: 0, False: 4]
  ------------------
   86|      4|	if (*key_len < len) {
  ------------------
  |  Branch (86:6): [True: 0, False: 4]
  ------------------
   87|      0|		return result;
   88|      0|	}
   89|       |
   90|      4|	if (private) {
  ------------------
  |  Branch (90:6): [True: 0, False: 4]
  ------------------
   91|      0|		*pkey = EVP_PKEY_new_raw_private_key(pkey_type, NULL, key, len);
   92|      4|	} else {
   93|      4|		*pkey = EVP_PKEY_new_raw_public_key(pkey_type, NULL, key, len);
   94|      4|	}
   95|      4|	if (*pkey == NULL) {
  ------------------
  |  Branch (95:6): [True: 0, False: 4]
  ------------------
   96|      0|		return dst__openssl_toresult(result);
  ------------------
  |  |   28|      0|	isc__ossl_wrap_logged_toresult(ISC_LOGCATEGORY_INVALID,               \
  |  |   29|      0|				       ISC_LOGMODULE_INVALID, NULL, fallback, \
  |  |   30|      0|				       __FILE__, __LINE__)
  ------------------
   97|      0|	}
   98|       |
   99|      4|	*key_len = len;
  100|      4|	return ISC_R_SUCCESS;
  101|      4|}

dst__opensslrsa_init:
  958|     12|dst__opensslrsa_init(dst_func_t **funcp, unsigned short algorithm) {
  959|     12|	REQUIRE(funcp != NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     12|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  960|       |
  961|     12|	if (*funcp == NULL) {
  ------------------
  |  Branch (961:6): [True: 12, False: 0]
  ------------------
  962|     12|		if (check_algorithm(algorithm) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (962:7): [True: 12, False: 0]
  ------------------
  963|     12|			*funcp = &opensslrsa_functions;
  964|     12|		}
  965|     12|	}
  966|       |
  967|     12|	if (rsa_exponent_min == NULL) {
  ------------------
  |  Branch (967:6): [True: 2, False: 10]
  ------------------
  968|      2|		rsa_exponent_min = BN_new();
  969|      2|		INSIST(rsa_exponent_min != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  970|       |
  971|      2|		RUNTIME_CHECK(BN_set_word(rsa_exponent_min, 3) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  972|      2|	}
  973|       |
  974|     12|	if (rsa_exponent_max == NULL) {
  ------------------
  |  Branch (974:6): [True: 2, False: 10]
  ------------------
  975|      2|		rsa_exponent_max = BN_new();
  976|      2|		INSIST(rsa_exponent_max != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  977|       |
  978|      2|		RUNTIME_CHECK(BN_set_bit(rsa_exponent_max, 0) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  979|      2|		RUNTIME_CHECK(BN_set_bit(rsa_exponent_max, 32) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  980|      2|	}
  981|     12|}
opensslrsa_link.c:check_algorithm:
  898|     12|check_algorithm(unsigned short algorithm) {
  899|     12|	isc_ossl_wrap_rsa_components_t c = { .needs_cleanup = true };
  900|     12|	EVP_MD_CTX *evp_md_ctx = EVP_MD_CTX_create();
  901|     12|	EVP_PKEY *pkey = NULL;
  902|     12|	const EVP_MD *type = NULL;
  903|     12|	const unsigned char *sig = NULL;
  904|     12|	isc_result_t result = ISC_R_SUCCESS;
  905|     12|	size_t len;
  906|       |
  907|     12|	switch (algorithm) {
  908|      2|	case DST_ALG_RSASHA1:
  ------------------
  |  Branch (908:2): [True: 2, False: 10]
  ------------------
  909|      4|	case DST_ALG_NSEC3RSASHA1:
  ------------------
  |  Branch (909:2): [True: 2, False: 10]
  ------------------
  910|      4|		type = isc__crypto_md[ISC_MD_SHA1]; /* SHA1 + RSA */
  911|      4|		sig = sha1_sig;
  912|      4|		len = sizeof(sha1_sig) - 1;
  913|      4|		break;
  914|      2|	case DST_ALG_RSASHA256:
  ------------------
  |  Branch (914:2): [True: 2, False: 10]
  ------------------
  915|      4|	case DST_ALG_RSASHA256PRIVATEOID:
  ------------------
  |  Branch (915:2): [True: 2, False: 10]
  ------------------
  916|      4|		type = isc__crypto_md[ISC_MD_SHA256]; /* SHA256 + RSA */
  917|      4|		sig = sha256_sig;
  918|      4|		len = sizeof(sha256_sig) - 1;
  919|      4|		break;
  920|      2|	case DST_ALG_RSASHA512:
  ------------------
  |  Branch (920:2): [True: 2, False: 10]
  ------------------
  921|      4|	case DST_ALG_RSASHA512PRIVATEOID:
  ------------------
  |  Branch (921:2): [True: 2, False: 10]
  ------------------
  922|      4|		type = isc__crypto_md[ISC_MD_SHA512];
  923|      4|		sig = sha512_sig;
  924|      4|		len = sizeof(sha512_sig) - 1;
  925|      4|		break;
  926|      0|	default:
  ------------------
  |  Branch (926:2): [True: 0, False: 12]
  ------------------
  927|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  928|     12|	}
  929|       |
  930|       |	/*
  931|       |	 * Construct pkey.
  932|       |	 */
  933|     12|	c.e = BN_bin2bn(e_bytes, sizeof(e_bytes) - 1, NULL);
  934|     12|	c.n = BN_bin2bn(n_bytes, sizeof(n_bytes) - 1, NULL);
  935|       |
  936|     12|	result = isc_ossl_wrap_load_rsa_public_from_components(&c, &pkey);
  937|     12|	INSIST(result == ISC_R_SUCCESS);
  ------------------
  |  |  202|     12|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|     12|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|     12|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  938|       |
  939|       |	/*
  940|       |	 * Check that we can verify the signature.
  941|       |	 */
  942|     12|	if (EVP_DigestInit_ex(evp_md_ctx, type, NULL) != 1 ||
  ------------------
  |  Branch (942:6): [True: 0, False: 12]
  ------------------
  943|     12|	    EVP_DigestUpdate(evp_md_ctx, "test", 4) != 1 ||
  ------------------
  |  Branch (943:6): [True: 0, False: 12]
  ------------------
  944|     12|	    EVP_VerifyFinal(evp_md_ctx, sig, len, pkey) != 1)
  ------------------
  |  Branch (944:6): [True: 0, False: 12]
  ------------------
  945|      0|	{
  946|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  947|      0|	}
  948|       |
  949|     12|cleanup:
  950|     12|	isc_ossl_wrap_rsa_components_cleanup(&c);
  951|     12|	EVP_PKEY_free(pkey);
  952|       |	EVP_MD_CTX_destroy(evp_md_ctx);
  953|     12|	ERR_clear_error();
  954|     12|	return result;
  955|     12|}

dns__qp_initialize:
  180|      2|dns__qp_initialize(void) {
  181|       |	/* zero common character marker not a valid shift position */
  182|      2|	INSIST(0 < SHIFT_BITMAP);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, Folded]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  183|       |	/* first bit is common byte or escape byte */
  184|      2|	dns_qpshift_t bit_one = SHIFT_BITMAP;
  185|       |	/* second bit is position in escaped range */
  186|      2|	dns_qpshift_t bit_two = SHIFT_BITMAP;
  187|      2|	bool escaping = true;
  188|       |
  189|    514|	for (unsigned int byte = 0; byte < BYTE_VALUES; byte++) {
  ------------------
  |  |  132|    514|#define BYTE_VALUES (UINT8_MAX + 1)
  ------------------
  |  Branch (189:30): [True: 512, False: 2]
  ------------------
  190|    512|		if (qp_common_character(byte)) {
  ------------------
  |  Branch (190:7): [True: 82, False: 430]
  ------------------
  191|     82|			escaping = false;
  192|     82|			bit_one++;
  193|     82|			dns_qp_byte_for_bit[bit_one] = byte;
  194|     82|			dns_qp_bits_for_byte[byte] = bit_one;
  195|    430|		} else if ('A' <= byte && byte <= 'Z') {
  ------------------
  |  Branch (195:14): [True: 326, False: 104]
  |  Branch (195:29): [True: 52, False: 274]
  ------------------
  196|       |			/* map upper case to lower case */
  197|     52|			dns_qpshift_t after_esc = bit_one + 1;
  198|     52|			dns_qpshift_t skip_punct = 'a' - '_';
  199|     52|			dns_qpshift_t letter = byte - 'A';
  200|     52|			dns_qpshift_t bit = after_esc + skip_punct + letter;
  201|     52|			dns_qp_bits_for_byte[byte] = bit;
  202|       |			/* to simplify reverse conversion */
  203|     52|			bit_two++;
  204|    378|		} else {
  205|       |			/* non-hostname characters need to be escaped */
  206|    378|			if (!escaping || bit_two >= SHIFT_OFFSET) {
  ------------------
  |  Branch (206:8): [True: 4, False: 374]
  |  Branch (206:21): [True: 4, False: 370]
  ------------------
  207|      8|				escaping = true;
  208|      8|				bit_one++;
  209|      8|				dns_qp_byte_for_bit[bit_one] = byte;
  210|      8|				bit_two = SHIFT_BITMAP;
  211|      8|			}
  212|    378|			dns_qp_bits_for_byte[byte] = bit_two << 8 | bit_one;
  213|    378|			bit_two++;
  214|    378|		}
  215|    512|	}
  216|      2|	ENSURE(bit_one < SHIFT_OFFSET);
  ------------------
  |  |  200|      2|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  217|      2|}

qp.c:qp_common_character:
  930|    512|qp_common_character(uint8_t byte) {
  931|    512|	return ('-' <= byte && byte <= '9') || ('_' <= byte && byte <= 'z');
  ------------------
  |  Branch (931:10): [True: 422, False: 90]
  |  Branch (931:25): [True: 26, False: 396]
  |  Branch (931:42): [True: 322, False: 164]
  |  Branch (931:57): [True: 56, False: 266]
  ------------------
  932|    512|}

dns__qpzone_initialize:
  471|      2|dns__qpzone_initialize(void) {
  472|  2.05k|	for (size_t idx = 0; idx < ARRAY_SIZE(qpzone_buckets_g); ++idx) {
  ------------------
  |  |   98|  2.05k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (472:23): [True: 2.04k, False: 2]
  ------------------
  473|  2.04k|		NODE_INITLOCK(&qpzone_buckets_g[idx].lock);
  ------------------
  |  |   28|  2.04k|#define NODE_INITLOCK(l)    isc_rwlock_init((l))
  ------------------
  474|  2.04k|	}
  475|      2|}

dns_rcode_totext:
  326|  17.5k|dns_rcode_totext(dns_rcode_t rcode, isc_buffer_t *target) {
  327|  17.5k|	return dns_mnemonic_totext(rcode, target, rcodes);
  328|  17.5k|}
dns_tsigrcode_totext:
  339|  3.09k|dns_tsigrcode_totext(dns_rcode_t rcode, isc_buffer_t *target) {
  340|  3.09k|	return dns_mnemonic_totext(rcode, target, tsigrcodes);
  341|  3.09k|}
dns_cert_totext:
  352|  2.62k|dns_cert_totext(dns_cert_t cert, isc_buffer_t *target) {
  353|  2.62k|	return dns_mnemonic_totext(cert, target, certs);
  354|  2.62k|}
dns_secalg_totext:
  365|  8.89k|dns_secalg_totext(dns_secalg_t secalg, isc_buffer_t *target) {
  366|  8.89k|	return dns_mnemonic_totext(secalg, target, secalgs);
  367|  8.89k|}
dns_secalg_format:
  370|  6.27k|dns_secalg_format(dns_secalg_t alg, char *cp, unsigned int size) {
  371|  6.27k|	isc_buffer_t b;
  372|  6.27k|	isc_region_t r;
  373|  6.27k|	isc_result_t result;
  374|       |
  375|  6.27k|	REQUIRE(cp != NULL && size > 0);
  ------------------
  |  |  198|  6.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 6.27k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 6.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  376|  6.27k|	isc_buffer_init(&b, cp, size - 1);
  377|  6.27k|	result = dns_secalg_totext(alg, &b);
  378|  6.27k|	isc_buffer_usedregion(&b, &r);
  379|  6.27k|	r.base[r.length] = 0;
  380|  6.27k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (380:6): [True: 0, False: 6.27k]
  ------------------
  381|      0|		r.base[0] = 0;
  382|      0|	}
  383|  6.27k|}
dns_dsyncscheme_totext:
  562|  1.02k|dns_dsyncscheme_totext(dns_dsyncscheme_t scheme, isc_buffer_t *target) {
  563|  1.02k|	return dns_mnemonic_totext(scheme, target, dsyncschemes);
  564|  1.02k|}
dns_rdataclass_totext:
  651|   415k|dns_rdataclass_totext(dns_rdataclass_t rdclass, isc_buffer_t *target) {
  652|   415k|	switch (rdclass) {
  653|  7.11k|	case dns_rdataclass_any:
  ------------------
  |  |   34|  7.11k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (653:2): [True: 7.11k, False: 408k]
  ------------------
  654|  7.11k|		return str_totext("ANY", target);
  655|  4.83k|	case dns_rdataclass_chaos:
  ------------------
  |  |   26|  4.83k|#define dns_rdataclass_chaos	((dns_rdataclass_t)dns_rdataclass_chaos)
  ------------------
  |  Branch (655:2): [True: 4.83k, False: 410k]
  ------------------
  656|  4.83k|		return str_totext("CH", target);
  657|  2.63k|	case dns_rdataclass_hs:
  ------------------
  |  |   30|  2.63k|#define dns_rdataclass_hs	((dns_rdataclass_t)dns_rdataclass_hs)
  ------------------
  |  Branch (657:2): [True: 2.63k, False: 412k]
  ------------------
  658|  2.63k|		return str_totext("HS", target);
  659|  43.8k|	case dns_rdataclass_in:
  ------------------
  |  |   24|  43.8k|#define dns_rdataclass_in	((dns_rdataclass_t)dns_rdataclass_in)
  ------------------
  |  Branch (659:2): [True: 43.8k, False: 371k]
  ------------------
  660|  43.8k|		return str_totext("IN", target);
  661|  5.36k|	case dns_rdataclass_none:
  ------------------
  |  |   32|  5.36k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (661:2): [True: 5.36k, False: 410k]
  ------------------
  662|  5.36k|		return str_totext("NONE", target);
  663|  49.6k|	case dns_rdataclass_reserved0:
  ------------------
  |  |   22|  49.6k|				((dns_rdataclass_t)dns_rdataclass_reserved0)
  ------------------
  |  Branch (663:2): [True: 49.6k, False: 365k]
  ------------------
  664|  49.6k|		return str_totext("RESERVED0", target);
  665|   301k|	default:
  ------------------
  |  Branch (665:2): [True: 301k, False: 113k]
  ------------------
  666|   301k|		return dns_rdataclass_tounknowntext(rdclass, target);
  667|   415k|	}
  668|   415k|}
dns_rdataclass_tounknowntext:
  671|   301k|dns_rdataclass_tounknowntext(dns_rdataclass_t rdclass, isc_buffer_t *target) {
  672|   301k|	char buf[sizeof("CLASS65535")];
  673|       |
  674|   301k|	snprintf(buf, sizeof(buf), "CLASS%u", rdclass);
  675|   301k|	return str_totext(buf, target);
  676|   301k|}
rcode.c:dns_mnemonic_totext:
  304|  33.1k|		    struct tbl *table) {
  305|  33.1k|	int i = 0;
  306|  33.1k|	char buf[sizeof("4294967296")];
  307|   323k|	while (table[i].name != NULL) {
  ------------------
  |  Branch (307:9): [True: 312k, False: 10.7k]
  ------------------
  308|   312k|		if (table[i].value == value) {
  ------------------
  |  Branch (308:7): [True: 22.3k, False: 290k]
  ------------------
  309|  22.3k|			return str_totext(table[i].name, target);
  310|  22.3k|		}
  311|   290k|		i++;
  312|   290k|	}
  313|  10.7k|	snprintf(buf, sizeof(buf), "%u", value);
  314|  10.7k|	return str_totext(buf, target);
  315|  33.1k|}
rcode.c:str_totext:
  222|   448k|str_totext(const char *source, isc_buffer_t *target) {
  223|   448k|	unsigned int l;
  224|   448k|	isc_region_t region;
  225|       |
  226|   448k|	isc_buffer_availableregion(target, &region);
  227|   448k|	l = strlen(source);
  228|       |
  229|   448k|	if (l > region.length) {
  ------------------
  |  Branch (229:6): [True: 1, False: 448k]
  ------------------
  230|      1|		return ISC_R_NOSPACE;
  231|      1|	}
  232|       |
  233|   448k|	memmove(region.base, source, l);
  234|   448k|	isc_buffer_add(target, l);
  235|   448k|	return ISC_R_SUCCESS;
  236|   448k|}

dns_rdata_init:
  800|   298k|dns_rdata_init(dns_rdata_t *rdata) {
  801|   298k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   298k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   298k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 298k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   298k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  802|       |
  803|   298k|	rdata->data = NULL;
  804|   298k|	rdata->length = 0;
  805|   298k|	rdata->rdclass = 0;
  806|   298k|	rdata->type = dns_rdatatype_none;
  ------------------
  |  |  114|   298k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  807|   298k|	rdata->flags = 0;
  808|   298k|	ISC_LINK_INIT(rdata, link);
  ------------------
  |  |   57|   298k|#define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
  |  |  ------------------
  |  |  |  |   53|   298k|	do {                                                 \
  |  |  |  |   54|   298k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   298k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   55|   298k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   298k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   56|   298k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (56:11): [Folded, False: 298k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  809|       |	/* ISC_LIST_INIT(rdata->list); */
  810|   298k|}
dns_rdata_clone:
  831|   376k|dns_rdata_clone(const dns_rdata_t *src, dns_rdata_t *target) {
  832|   376k|	REQUIRE(src != NULL);
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   376k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  833|   376k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   376k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  834|       |
  835|   376k|	REQUIRE(DNS_RDATA_INITIALIZED(target));
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.76M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  836|       |
  837|   376k|	REQUIRE(DNS_RDATA_VALIDFLAGS(src));
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   376k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  838|   376k|	REQUIRE(DNS_RDATA_VALIDFLAGS(target));
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   376k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  839|       |
  840|   376k|	target->data = src->data;
  841|   376k|	target->length = src->length;
  842|   376k|	target->rdclass = src->rdclass;
  843|   376k|	target->type = src->type;
  844|   376k|	target->flags = src->flags;
  845|   376k|}
dns_rdata_compare:
  852|  12.0k|dns_rdata_compare(const dns_rdata_t *rdata1, const dns_rdata_t *rdata2) {
  853|  12.0k|	int result = 0;
  854|  12.0k|	bool use_default = false;
  855|       |
  856|  12.0k|	REQUIRE(rdata1 != NULL);
  ------------------
  |  |  198|  12.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  857|  12.0k|	REQUIRE(rdata2 != NULL);
  ------------------
  |  |  198|  12.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  858|  12.0k|	REQUIRE(rdata1->length == 0 || rdata1->data != NULL);
  ------------------
  |  |  198|  12.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.61k, False: 9.47k]
  |  |  |  |  |  Branch (42:11): [True: 9.47k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  859|  12.0k|	REQUIRE(rdata2->length == 0 || rdata2->data != NULL);
  ------------------
  |  |  198|  12.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.45k, False: 9.62k]
  |  |  |  |  |  Branch (42:11): [True: 9.62k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  860|  12.0k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata1));
  ------------------
  |  |  198|  12.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  861|  12.0k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata2));
  ------------------
  |  |  198|  12.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  862|       |
  863|  12.0k|	if (rdata1->rdclass != rdata2->rdclass) {
  ------------------
  |  Branch (863:6): [True: 0, False: 12.0k]
  ------------------
  864|      0|		return rdata1->rdclass < rdata2->rdclass ? -1 : 1;
  ------------------
  |  Branch (864:10): [True: 0, False: 0]
  ------------------
  865|      0|	}
  866|       |
  867|  12.0k|	if (rdata1->type != rdata2->type) {
  ------------------
  |  Branch (867:6): [True: 0, False: 12.0k]
  ------------------
  868|      0|		return rdata1->type < rdata2->type ? -1 : 1;
  ------------------
  |  Branch (868:10): [True: 0, False: 0]
  ------------------
  869|      0|	}
  870|       |
  871|  12.0k|	COMPARESWITCH
  ------------------
  |  |  760|  12.0k|	switch (rdata1->type) { \
  |  |  761|      0|	case 1: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (761:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  762|      0|		case 1: result = compare_in_a(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (762:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  763|      0|		case 3: result = compare_ch_a(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (763:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  764|      0|		case 4: result = compare_hs_a(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (764:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  765|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (765:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  766|      0|		} \
  |  |  767|      0|		break; \
  |  |  768|      0|	case 2: result = compare_ns(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (768:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  769|      0|	case 3: result = compare_md(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (769:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  770|      0|	case 4: result = compare_mf(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (770:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  771|  2.13k|	case 5: result = compare_cname(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (771:2): [True: 2.13k, False: 9.95k]
  |  |  ------------------
  |  |  772|  3.18k|	case 6: result = compare_soa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (772:2): [True: 3.18k, False: 8.90k]
  |  |  ------------------
  |  |  773|      0|	case 7: result = compare_mb(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (773:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  774|      0|	case 8: result = compare_mg(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (774:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  775|      0|	case 9: result = compare_mr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (775:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  776|      0|	case 10: result = compare_null(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (776:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  777|      0|	case 11: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (777:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  778|      0|		case 1: result = compare_in_wks(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (778:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  779|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (779:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  780|      0|		} \
  |  |  781|      0|		break; \
  |  |  782|      0|	case 12: result = compare_ptr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (782:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  783|      0|	case 13: result = compare_hinfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (783:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  784|      0|	case 14: result = compare_minfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (784:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  785|      0|	case 15: result = compare_mx(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (785:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  786|      0|	case 16: result = compare_txt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (786:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  787|      0|	case 17: result = compare_rp(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (787:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  788|      0|	case 18: result = compare_afsdb(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (788:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  789|      0|	case 19: result = compare_x25(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (789:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  790|      0|	case 20: result = compare_isdn(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (790:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  791|      0|	case 21: result = compare_rt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (791:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  792|      0|	case 22: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (792:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  793|      0|		case 1: result = compare_in_nsap(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (793:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  794|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (794:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  795|      0|		} \
  |  |  796|      0|		break; \
  |  |  797|      0|	case 23: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (797:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  798|      0|		case 1: result = compare_in_nsap_ptr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (798:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  799|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (799:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  800|      0|		} \
  |  |  801|      0|		break; \
  |  |  802|      0|	case 24: result = compare_sig(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (802:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  803|      0|	case 25: result = compare_key(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (803:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  804|      0|	case 26: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (804:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  805|      0|		case 1: result = compare_in_px(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (805:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  806|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (806:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  807|      0|		} \
  |  |  808|      0|		break; \
  |  |  809|      0|	case 27: result = compare_gpos(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (809:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  810|      0|	case 28: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (810:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  811|      0|		case 1: result = compare_in_aaaa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (811:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  812|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (812:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  813|      0|		} \
  |  |  814|      0|		break; \
  |  |  815|      0|	case 29: result = compare_loc(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (815:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  816|      0|	case 30: result = compare_nxt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (816:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  817|      0|	case 31: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (817:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  818|      0|		case 1: result = compare_in_eid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (818:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  819|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (819:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  820|      0|		} \
  |  |  821|      0|		break; \
  |  |  822|      0|	case 32: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (822:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  823|      0|		case 1: result = compare_in_nimloc(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (823:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  824|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (824:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  825|      0|		} \
  |  |  826|      0|		break; \
  |  |  827|      0|	case 33: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (827:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  828|      0|		case 1: result = compare_in_srv(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (828:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  829|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (829:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  830|      0|		} \
  |  |  831|      0|		break; \
  |  |  832|      0|	case 34: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (832:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  833|      0|		case 1: result = compare_in_atma(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (833:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  834|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (834:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  835|      0|		} \
  |  |  836|      0|		break; \
  |  |  837|      0|	case 35: result = compare_naptr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (837:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  838|      0|	case 36: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (838:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  839|      0|		case 1: result = compare_in_kx(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (839:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  840|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (840:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  841|      0|		} \
  |  |  842|      0|		break; \
  |  |  843|      0|	case 37: result = compare_cert(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (843:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  844|      0|	case 38: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (844:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  845|      0|		case 1: result = compare_in_a6(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (845:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  846|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (846:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  847|      0|		} \
  |  |  848|      0|		break; \
  |  |  849|  2.11k|	case 39: result = compare_dname(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (849:2): [True: 2.11k, False: 9.96k]
  |  |  ------------------
  |  |  850|      0|	case 40: result = compare_sink(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (850:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  851|  3.84k|	case 41: result = compare_opt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (851:2): [True: 3.84k, False: 8.23k]
  |  |  ------------------
  |  |  852|      0|	case 42: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (852:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  853|      0|		case 1: result = compare_in_apl(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (853:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  854|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (854:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  855|      0|		} \
  |  |  856|      0|		break; \
  |  |  857|      0|	case 43: result = compare_ds(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (857:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  858|      0|	case 44: result = compare_sshfp(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (858:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  859|      0|	case 45: result = compare_ipseckey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (859:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  860|      0|	case 46: result = compare_rrsig(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (860:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  861|      0|	case 47: result = compare_nsec(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (861:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  862|      0|	case 48: result = compare_dnskey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (862:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  863|      0|	case 49: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (863:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  864|      0|		case 1: result = compare_in_dhcid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (864:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  865|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (865:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  866|      0|		} \
  |  |  867|      0|		break; \
  |  |  868|      0|	case 50: result = compare_nsec3(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (868:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  869|      0|	case 51: result = compare_nsec3param(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (869:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  870|      0|	case 52: result = compare_tlsa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (870:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  871|      0|	case 53: result = compare_smimea(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (871:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  872|      0|	case 55: result = compare_hip(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (872:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  873|      0|	case 56: result = compare_ninfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (873:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  874|      0|	case 57: result = compare_rkey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (874:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  875|      0|	case 58: result = compare_talink(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (875:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  876|      0|	case 59: result = compare_cds(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (876:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  877|      0|	case 60: result = compare_cdnskey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (877:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  878|      0|	case 61: result = compare_openpgpkey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (878:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  879|      0|	case 62: result = compare_csync(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (879:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  880|      0|	case 63: result = compare_zonemd(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (880:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  881|      0|	case 64: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (881:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  882|      0|		case 1: result = compare_in_svcb(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (882:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  883|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (883:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  884|      0|		} \
  |  |  885|      0|		break; \
  |  |  886|      0|	case 65: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (886:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  887|      0|		case 1: result = compare_in_https(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (887:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  888|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (888:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  889|      0|		} \
  |  |  890|      0|		break; \
  |  |  891|      0|	case 66: result = compare_dsync(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (891:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  892|      0|	case 67: result = compare_hhit(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (892:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  893|      0|	case 68: result = compare_brid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (893:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  894|      0|	case 99: result = compare_spf(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (894:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  895|      0|	case 104: result = compare_nid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (895:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  896|      0|	case 105: result = compare_l32(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (896:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  897|      0|	case 106: result = compare_l64(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (897:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  898|      0|	case 107: result = compare_lp(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (898:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  899|      0|	case 108: result = compare_eui48(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (899:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  900|      0|	case 109: result = compare_eui64(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (900:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  901|      0|	case 249: result = compare_tkey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (901:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  902|      0|	case 250: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (902:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  903|      0|		case 255: result = compare_any_tsig(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (903:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  904|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (904:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  905|      0|		} \
  |  |  906|      0|		break; \
  |  |  907|      0|	case 256: result = compare_uri(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (907:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  908|      0|	case 257: result = compare_caa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (908:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  909|      0|	case 258: result = compare_avc(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (909:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  910|      0|	case 259: result = compare_doa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (910:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  911|      0|	case 260: result = compare_amtrelay(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (911:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  912|    809|	case 261: result = compare_resinfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (912:2): [True: 809, False: 11.2k]
  |  |  ------------------
  |  |  913|      0|	case 262: result = compare_wallet(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (913:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  914|      0|	case 32768: result = compare_ta(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (914:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  915|      0|	case 32769: result = compare_dlv(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (915:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  916|      0|	case 65533: result = compare_keydata(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (916:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  917|      0|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (917:2): [True: 0, False: 12.0k]
  |  |  ------------------
  |  |  918|  12.0k|	}
  ------------------
  872|       |
  873|  12.0k|	if (use_default) {
  ------------------
  |  Branch (873:6): [True: 0, False: 12.0k]
  ------------------
  874|      0|		isc_region_t r1;
  875|      0|		isc_region_t r2;
  876|       |
  877|      0|		dns_rdata_toregion(rdata1, &r1);
  878|      0|		dns_rdata_toregion(rdata2, &r2);
  879|      0|		result = isc_region_compare(&r1, &r2);
  880|      0|	}
  881|  12.0k|	return result;
  882|  12.0k|}
dns_rdata_fromregion:
  923|   289k|		     dns_rdatatype_t type, isc_region_t *r) {
  924|   289k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   289k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   289k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 289k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   289k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  925|   289k|	REQUIRE(DNS_RDATA_INITIALIZED(rdata));
  ------------------
  |  |  198|   289k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.89M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 289k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 289k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 289k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 289k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 289k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 289k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   289k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  926|   289k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   289k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   289k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 289k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   289k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  927|       |
  928|   289k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   289k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   289k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 289k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   289k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  929|       |
  930|   289k|	rdata->data = r->base;
  931|   289k|	rdata->length = r->length;
  932|   289k|	rdata->rdclass = rdclass;
  933|   289k|	rdata->type = type;
  934|   289k|	rdata->flags = 0;
  935|   289k|}
dns_rdata_toregion:
  938|   327k|dns_rdata_toregion(const dns_rdata_t *rdata, isc_region_t *r) {
  939|   327k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   327k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   327k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 327k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   327k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  940|   327k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   327k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   327k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 327k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   327k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  941|   327k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   327k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   327k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 327k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   327k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  942|       |
  943|   327k|	r->base = rdata->data;
  944|   327k|	r->length = rdata->length;
  945|   327k|}
dns_rdata_fromwire:
  950|   338k|		   dns_decompress_t dctx, isc_buffer_t *target) {
  951|   338k|	isc_result_t result = ISC_R_NOTIMPLEMENTED;
  952|   338k|	isc_region_t region;
  953|   338k|	isc_buffer_t ss;
  954|   338k|	isc_buffer_t st;
  955|   338k|	bool use_default = false;
  956|   338k|	uint32_t activelength;
  957|   338k|	unsigned int length;
  958|       |
  959|   338k|	if (rdata != NULL) {
  ------------------
  |  Branch (959:6): [True: 338k, False: 0]
  ------------------
  960|   338k|		REQUIRE(DNS_RDATA_INITIALIZED(rdata));
  ------------------
  |  |  198|   338k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.38M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 338k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 338k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 338k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 338k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 338k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 338k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   338k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  961|   338k|		REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   338k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   338k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 338k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   338k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  962|   338k|	}
  963|   338k|	REQUIRE(source != NULL);
  ------------------
  |  |  198|   338k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   338k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 338k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   338k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  964|   338k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|   338k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   338k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 338k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   338k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  965|       |
  966|   338k|	if (type == dns_rdatatype_none) {
  ------------------
  |  |  114|   338k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  |  Branch (966:6): [True: 13, False: 338k]
  ------------------
  967|     13|		return DNS_R_FORMERR;
  968|     13|	}
  969|       |
  970|   338k|	ss = *source;
  971|   338k|	st = *target;
  972|       |
  973|   338k|	activelength = isc_buffer_activelength(source);
  ------------------
  |  |  160|   338k|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  974|   338k|	INSIST(activelength < 65536);
  ------------------
  |  |  202|   338k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   338k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 338k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   338k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  975|       |
  976|   338k|	FROMWIRESWITCH
  ------------------
  |  |  438|   338k|	switch (type) { \
  |  |  439|  8.65k|	case 1: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (439:2): [True: 8.65k, False: 329k]
  |  |  ------------------
  |  |  440|  1.72k|		case 1: result = fromwire_in_a(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (440:3): [True: 1.72k, False: 6.92k]
  |  |  ------------------
  |  |  441|  1.73k|		case 3: result = fromwire_ch_a(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (441:3): [True: 1.73k, False: 6.91k]
  |  |  ------------------
  |  |  442|  1.22k|		case 4: result = fromwire_hs_a(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (442:3): [True: 1.22k, False: 7.42k]
  |  |  ------------------
  |  |  443|  3.96k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (443:3): [True: 3.96k, False: 4.68k]
  |  |  ------------------
  |  |  444|  8.65k|		} \
  |  |  445|  8.65k|		break; \
  |  |  446|  8.65k|	case 2: result = fromwire_ns(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (446:2): [True: 3.33k, False: 334k]
  |  |  ------------------
  |  |  447|  8.65k|	case 3: result = fromwire_md(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (447:2): [True: 1.59k, False: 336k]
  |  |  ------------------
  |  |  448|  8.65k|	case 4: result = fromwire_mf(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (448:2): [True: 921, False: 337k]
  |  |  ------------------
  |  |  449|  8.65k|	case 5: result = fromwire_cname(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (449:2): [True: 2.70k, False: 335k]
  |  |  ------------------
  |  |  450|  8.65k|	case 6: result = fromwire_soa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (450:2): [True: 5.72k, False: 332k]
  |  |  ------------------
  |  |  451|  8.65k|	case 7: result = fromwire_mb(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (451:2): [True: 1.16k, False: 336k]
  |  |  ------------------
  |  |  452|  8.65k|	case 8: result = fromwire_mg(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (452:2): [True: 981, False: 337k]
  |  |  ------------------
  |  |  453|  8.65k|	case 9: result = fromwire_mr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (453:2): [True: 1.35k, False: 336k]
  |  |  ------------------
  |  |  454|  8.65k|	case 10: result = fromwire_null(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (454:2): [True: 4.68k, False: 333k]
  |  |  ------------------
  |  |  455|  8.65k|	case 11: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (455:2): [True: 3.85k, False: 334k]
  |  |  ------------------
  |  |  456|  1.91k|		case 1: result = fromwire_in_wks(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (456:3): [True: 1.91k, False: 1.93k]
  |  |  ------------------
  |  |  457|  1.93k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (457:3): [True: 1.93k, False: 1.91k]
  |  |  ------------------
  |  |  458|  3.85k|		} \
  |  |  459|  3.85k|		break; \
  |  |  460|  3.85k|	case 12: result = fromwire_ptr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (460:2): [True: 817, False: 337k]
  |  |  ------------------
  |  |  461|  3.85k|	case 13: result = fromwire_hinfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (461:2): [True: 1.04k, False: 337k]
  |  |  ------------------
  |  |  462|  3.85k|	case 14: result = fromwire_minfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (462:2): [True: 1.39k, False: 336k]
  |  |  ------------------
  |  |  463|  3.85k|	case 15: result = fromwire_mx(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (463:2): [True: 1.09k, False: 337k]
  |  |  ------------------
  |  |  464|  3.85k|	case 16: result = fromwire_txt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (464:2): [True: 1.36k, False: 336k]
  |  |  ------------------
  |  |  465|  3.85k|	case 17: result = fromwire_rp(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (465:2): [True: 1.25k, False: 336k]
  |  |  ------------------
  |  |  466|  3.85k|	case 18: result = fromwire_afsdb(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (466:2): [True: 1.04k, False: 337k]
  |  |  ------------------
  |  |  467|  3.85k|	case 19: result = fromwire_x25(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (467:2): [True: 696, False: 337k]
  |  |  ------------------
  |  |  468|  3.85k|	case 20: result = fromwire_isdn(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (468:2): [True: 1.35k, False: 336k]
  |  |  ------------------
  |  |  469|  3.85k|	case 21: result = fromwire_rt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (469:2): [True: 1.24k, False: 336k]
  |  |  ------------------
  |  |  470|  3.85k|	case 22: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (470:2): [True: 3.06k, False: 335k]
  |  |  ------------------
  |  |  471|  1.44k|		case 1: result = fromwire_in_nsap(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (471:3): [True: 1.44k, False: 1.61k]
  |  |  ------------------
  |  |  472|  1.61k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (472:3): [True: 1.61k, False: 1.44k]
  |  |  ------------------
  |  |  473|  3.06k|		} \
  |  |  474|  3.06k|		break; \
  |  |  475|  3.06k|	case 23: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (475:2): [True: 2.00k, False: 336k]
  |  |  ------------------
  |  |  476|    947|		case 1: result = fromwire_in_nsap_ptr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (476:3): [True: 947, False: 1.06k]
  |  |  ------------------
  |  |  477|  1.06k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (477:3): [True: 1.06k, False: 947]
  |  |  ------------------
  |  |  478|  2.00k|		} \
  |  |  479|  2.00k|		break; \
  |  |  480|  4.94k|	case 24: result = fromwire_sig(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (480:2): [True: 4.94k, False: 333k]
  |  |  ------------------
  |  |  481|  2.00k|	case 25: result = fromwire_key(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (481:2): [True: 1.62k, False: 336k]
  |  |  ------------------
  |  |  482|  2.68k|	case 26: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (482:2): [True: 2.68k, False: 335k]
  |  |  ------------------
  |  |  483|  1.54k|		case 1: result = fromwire_in_px(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (483:3): [True: 1.54k, False: 1.13k]
  |  |  ------------------
  |  |  484|  1.13k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (484:3): [True: 1.13k, False: 1.54k]
  |  |  ------------------
  |  |  485|  2.68k|		} \
  |  |  486|  2.68k|		break; \
  |  |  487|  2.68k|	case 27: result = fromwire_gpos(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (487:2): [True: 1.26k, False: 336k]
  |  |  ------------------
  |  |  488|  2.95k|	case 28: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (488:2): [True: 2.95k, False: 335k]
  |  |  ------------------
  |  |  489|  1.39k|		case 1: result = fromwire_in_aaaa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (489:3): [True: 1.39k, False: 1.56k]
  |  |  ------------------
  |  |  490|  1.56k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (490:3): [True: 1.56k, False: 1.39k]
  |  |  ------------------
  |  |  491|  2.95k|		} \
  |  |  492|  2.95k|		break; \
  |  |  493|  5.51k|	case 29: result = fromwire_loc(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (493:2): [True: 5.51k, False: 332k]
  |  |  ------------------
  |  |  494|  2.95k|	case 30: result = fromwire_nxt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (494:2): [True: 2.65k, False: 335k]
  |  |  ------------------
  |  |  495|  5.92k|	case 31: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (495:2): [True: 5.92k, False: 332k]
  |  |  ------------------
  |  |  496|  3.31k|		case 1: result = fromwire_in_eid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (496:3): [True: 3.31k, False: 2.60k]
  |  |  ------------------
  |  |  497|  2.60k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (497:3): [True: 2.60k, False: 3.31k]
  |  |  ------------------
  |  |  498|  5.92k|		} \
  |  |  499|  5.92k|		break; \
  |  |  500|  5.92k|	case 32: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (500:2): [True: 2.84k, False: 335k]
  |  |  ------------------
  |  |  501|  1.27k|		case 1: result = fromwire_in_nimloc(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (501:3): [True: 1.27k, False: 1.57k]
  |  |  ------------------
  |  |  502|  1.57k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (502:3): [True: 1.57k, False: 1.27k]
  |  |  ------------------
  |  |  503|  2.84k|		} \
  |  |  504|  2.84k|		break; \
  |  |  505|  3.41k|	case 33: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (505:2): [True: 3.41k, False: 334k]
  |  |  ------------------
  |  |  506|  1.26k|		case 1: result = fromwire_in_srv(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (506:3): [True: 1.26k, False: 2.14k]
  |  |  ------------------
  |  |  507|  2.14k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (507:3): [True: 2.14k, False: 1.26k]
  |  |  ------------------
  |  |  508|  3.41k|		} \
  |  |  509|  3.41k|		break; \
  |  |  510|  5.00k|	case 34: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (510:2): [True: 5.00k, False: 333k]
  |  |  ------------------
  |  |  511|  3.28k|		case 1: result = fromwire_in_atma(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (511:3): [True: 3.28k, False: 1.72k]
  |  |  ------------------
  |  |  512|  1.72k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (512:3): [True: 1.72k, False: 3.28k]
  |  |  ------------------
  |  |  513|  5.00k|		} \
  |  |  514|  5.00k|		break; \
  |  |  515|  7.03k|	case 35: result = fromwire_naptr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (515:2): [True: 7.03k, False: 331k]
  |  |  ------------------
  |  |  516|  5.00k|	case 36: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (516:2): [True: 3.49k, False: 334k]
  |  |  ------------------
  |  |  517|  1.58k|		case 1: result = fromwire_in_kx(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (517:3): [True: 1.58k, False: 1.91k]
  |  |  ------------------
  |  |  518|  1.91k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (518:3): [True: 1.91k, False: 1.58k]
  |  |  ------------------
  |  |  519|  3.49k|		} \
  |  |  520|  3.49k|		break; \
  |  |  521|  3.49k|	case 37: result = fromwire_cert(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (521:2): [True: 2.99k, False: 335k]
  |  |  ------------------
  |  |  522|  3.62k|	case 38: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (522:2): [True: 3.62k, False: 334k]
  |  |  ------------------
  |  |  523|  1.88k|		case 1: result = fromwire_in_a6(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (523:3): [True: 1.88k, False: 1.73k]
  |  |  ------------------
  |  |  524|  1.73k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (524:3): [True: 1.73k, False: 1.88k]
  |  |  ------------------
  |  |  525|  3.62k|		} \
  |  |  526|  3.62k|		break; \
  |  |  527|  3.62k|	case 39: result = fromwire_dname(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (527:2): [True: 2.82k, False: 335k]
  |  |  ------------------
  |  |  528|  3.62k|	case 40: result = fromwire_sink(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (528:2): [True: 2.13k, False: 336k]
  |  |  ------------------
  |  |  529|  10.8k|	case 41: result = fromwire_opt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (529:2): [True: 10.8k, False: 327k]
  |  |  ------------------
  |  |  530|  4.00k|	case 42: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (530:2): [True: 4.00k, False: 334k]
  |  |  ------------------
  |  |  531|  2.72k|		case 1: result = fromwire_in_apl(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (531:3): [True: 2.72k, False: 1.28k]
  |  |  ------------------
  |  |  532|  1.28k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (532:3): [True: 1.28k, False: 2.72k]
  |  |  ------------------
  |  |  533|  4.00k|		} \
  |  |  534|  4.00k|		break; \
  |  |  535|  4.00k|	case 43: result = fromwire_ds(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (535:2): [True: 1.34k, False: 336k]
  |  |  ------------------
  |  |  536|  4.00k|	case 44: result = fromwire_sshfp(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (536:2): [True: 2.27k, False: 335k]
  |  |  ------------------
  |  |  537|  4.00k|	case 45: result = fromwire_ipseckey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (537:2): [True: 3.73k, False: 334k]
  |  |  ------------------
  |  |  538|  4.27k|	case 46: result = fromwire_rrsig(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (538:2): [True: 4.27k, False: 333k]
  |  |  ------------------
  |  |  539|  4.00k|	case 47: result = fromwire_nsec(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (539:2): [True: 2.59k, False: 335k]
  |  |  ------------------
  |  |  540|  4.00k|	case 48: result = fromwire_dnskey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (540:2): [True: 2.64k, False: 335k]
  |  |  ------------------
  |  |  541|  4.09k|	case 49: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (541:2): [True: 4.09k, False: 334k]
  |  |  ------------------
  |  |  542|  1.16k|		case 1: result = fromwire_in_dhcid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (542:3): [True: 1.16k, False: 2.92k]
  |  |  ------------------
  |  |  543|  2.92k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (543:3): [True: 2.92k, False: 1.16k]
  |  |  ------------------
  |  |  544|  4.09k|		} \
  |  |  545|  4.09k|		break; \
  |  |  546|  4.14k|	case 50: result = fromwire_nsec3(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (546:2): [True: 4.14k, False: 334k]
  |  |  ------------------
  |  |  547|  4.09k|	case 51: result = fromwire_nsec3param(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (547:2): [True: 1.31k, False: 336k]
  |  |  ------------------
  |  |  548|  4.09k|	case 52: result = fromwire_tlsa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (548:2): [True: 1.95k, False: 336k]
  |  |  ------------------
  |  |  549|  4.09k|	case 53: result = fromwire_smimea(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (549:2): [True: 1.02k, False: 337k]
  |  |  ------------------
  |  |  550|  48.4k|	case 55: result = fromwire_hip(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (550:2): [True: 48.4k, False: 289k]
  |  |  ------------------
  |  |  551|  4.09k|	case 56: result = fromwire_ninfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (551:2): [True: 1.10k, False: 337k]
  |  |  ------------------
  |  |  552|  4.09k|	case 57: result = fromwire_rkey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (552:2): [True: 1.36k, False: 336k]
  |  |  ------------------
  |  |  553|  4.09k|	case 58: result = fromwire_talink(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (553:2): [True: 2.77k, False: 335k]
  |  |  ------------------
  |  |  554|  4.09k|	case 59: result = fromwire_cds(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (554:2): [True: 1.44k, False: 336k]
  |  |  ------------------
  |  |  555|  4.09k|	case 60: result = fromwire_cdnskey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (555:2): [True: 1.30k, False: 336k]
  |  |  ------------------
  |  |  556|  4.09k|	case 61: result = fromwire_openpgpkey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (556:2): [True: 1.49k, False: 336k]
  |  |  ------------------
  |  |  557|  4.09k|	case 62: result = fromwire_csync(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (557:2): [True: 2.28k, False: 335k]
  |  |  ------------------
  |  |  558|  4.09k|	case 63: result = fromwire_zonemd(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (558:2): [True: 1.68k, False: 336k]
  |  |  ------------------
  |  |  559|  8.00k|	case 64: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (559:2): [True: 8.00k, False: 330k]
  |  |  ------------------
  |  |  560|  6.00k|		case 1: result = fromwire_in_svcb(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (560:3): [True: 6.00k, False: 1.99k]
  |  |  ------------------
  |  |  561|  1.99k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (561:3): [True: 1.99k, False: 6.00k]
  |  |  ------------------
  |  |  562|  8.00k|		} \
  |  |  563|  8.00k|		break; \
  |  |  564|  8.00k|	case 65: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (564:2): [True: 4.89k, False: 333k]
  |  |  ------------------
  |  |  565|  2.83k|		case 1: result = fromwire_in_https(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (565:3): [True: 2.83k, False: 2.05k]
  |  |  ------------------
  |  |  566|  2.05k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (566:3): [True: 2.05k, False: 2.83k]
  |  |  ------------------
  |  |  567|  4.89k|		} \
  |  |  568|  4.89k|		break; \
  |  |  569|  4.89k|	case 66: result = fromwire_dsync(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (569:2): [True: 1.48k, False: 336k]
  |  |  ------------------
  |  |  570|  4.89k|	case 67: result = fromwire_hhit(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (570:2): [True: 1.16k, False: 336k]
  |  |  ------------------
  |  |  571|  4.89k|	case 68: result = fromwire_brid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (571:2): [True: 1.25k, False: 336k]
  |  |  ------------------
  |  |  572|  4.89k|	case 99: result = fromwire_spf(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (572:2): [True: 1.04k, False: 337k]
  |  |  ------------------
  |  |  573|  4.89k|	case 104: result = fromwire_nid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (573:2): [True: 1.20k, False: 336k]
  |  |  ------------------
  |  |  574|  4.89k|	case 105: result = fromwire_l32(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (574:2): [True: 1.89k, False: 336k]
  |  |  ------------------
  |  |  575|  4.89k|	case 106: result = fromwire_l64(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (575:2): [True: 1.13k, False: 337k]
  |  |  ------------------
  |  |  576|  4.89k|	case 107: result = fromwire_lp(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (576:2): [True: 964, False: 337k]
  |  |  ------------------
  |  |  577|  4.89k|	case 108: result = fromwire_eui48(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (577:2): [True: 1.14k, False: 337k]
  |  |  ------------------
  |  |  578|  4.89k|	case 109: result = fromwire_eui64(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (578:2): [True: 1.59k, False: 336k]
  |  |  ------------------
  |  |  579|  4.89k|	case 249: result = fromwire_tkey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (579:2): [True: 3.42k, False: 334k]
  |  |  ------------------
  |  |  580|  6.03k|	case 250: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (580:2): [True: 6.03k, False: 332k]
  |  |  ------------------
  |  |  581|  2.89k|		case 255: result = fromwire_any_tsig(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (581:3): [True: 2.89k, False: 3.13k]
  |  |  ------------------
  |  |  582|  3.13k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (582:3): [True: 3.13k, False: 2.89k]
  |  |  ------------------
  |  |  583|  6.03k|		} \
  |  |  584|  6.03k|		break; \
  |  |  585|  6.03k|	case 256: result = fromwire_uri(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (585:2): [True: 1.71k, False: 336k]
  |  |  ------------------
  |  |  586|  6.03k|	case 257: result = fromwire_caa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (586:2): [True: 1.93k, False: 336k]
  |  |  ------------------
  |  |  587|  6.03k|	case 258: result = fromwire_avc(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (587:2): [True: 1.38k, False: 336k]
  |  |  ------------------
  |  |  588|  6.03k|	case 259: result = fromwire_doa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (588:2): [True: 1.73k, False: 336k]
  |  |  ------------------
  |  |  589|  6.03k|	case 260: result = fromwire_amtrelay(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (589:2): [True: 4.92k, False: 333k]
  |  |  ------------------
  |  |  590|  6.03k|	case 261: result = fromwire_resinfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (590:2): [True: 1.60k, False: 336k]
  |  |  ------------------
  |  |  591|  6.03k|	case 262: result = fromwire_wallet(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (591:2): [True: 1.35k, False: 336k]
  |  |  ------------------
  |  |  592|  6.03k|	case 32768: result = fromwire_ta(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (592:2): [True: 852, False: 337k]
  |  |  ------------------
  |  |  593|  6.03k|	case 32769: result = fromwire_dlv(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (593:2): [True: 786, False: 337k]
  |  |  ------------------
  |  |  594|  6.03k|	case 65533: result = fromwire_keydata(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (594:2): [True: 1.79k, False: 336k]
  |  |  ------------------
  |  |  595|  66.4k|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (595:2): [True: 66.4k, False: 271k]
  |  |  ------------------
  |  |  596|   338k|	}
  ------------------
  977|       |
  978|   338k|	if (use_default) {
  ------------------
  |  Branch (978:6): [True: 100k, False: 237k]
  ------------------
  979|   100k|		if (activelength > isc_buffer_availablelength(target)) {
  ------------------
  |  |  161|   100k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (979:7): [True: 556, False: 100k]
  ------------------
  980|    556|			result = ISC_R_NOSPACE;
  981|   100k|		} else {
  982|   100k|			isc_buffer_putmem(target, isc_buffer_current(source),
  ------------------
  |  |  145|   100k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  983|   100k|					  activelength);
  984|   100k|			isc_buffer_forward(source, activelength);
  985|   100k|			result = ISC_R_SUCCESS;
  986|   100k|		}
  987|   100k|	}
  988|       |
  989|       |	/*
  990|       |	 * Reject any rdata that expands out to more than DNS_RDATA_MAXLENGTH
  991|       |	 * as we cannot transmit it.
  992|       |	 */
  993|   338k|	length = isc_buffer_usedlength(target) - isc_buffer_usedlength(&st);
  ------------------
  |  |  157|   338k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
              	length = isc_buffer_usedlength(target) - isc_buffer_usedlength(&st);
  ------------------
  |  |  157|   338k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
  994|   338k|	if (result == ISC_R_SUCCESS && length > DNS_RDATA_MAXLENGTH) {
  ------------------
  |  |  181|   289k|#define DNS_RDATA_MAXLENGTH 65512U
  ------------------
  |  Branch (994:6): [True: 289k, False: 48.9k]
  |  Branch (994:33): [True: 1, False: 289k]
  ------------------
  995|      1|		result = DNS_R_FORMERR;
  996|      1|	}
  997|       |
  998|       |	/*
  999|       |	 * We should have consumed all of our buffer.
 1000|       |	 */
 1001|   338k|	if (result == ISC_R_SUCCESS && !buffer_empty(source)) {
  ------------------
  |  Branch (1001:6): [True: 289k, False: 48.9k]
  |  Branch (1001:33): [True: 92, False: 289k]
  ------------------
 1002|     92|		result = DNS_R_EXTRADATA;
 1003|     92|	}
 1004|       |
 1005|   338k|	if (rdata != NULL && result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (1005:6): [True: 338k, False: 0]
  |  Branch (1005:23): [True: 289k, False: 49.0k]
  ------------------
 1006|   289k|		region.base = isc_buffer_used(&st);
  ------------------
  |  |  149|   289k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1007|   289k|		region.length = length;
 1008|   289k|		dns_rdata_fromregion(rdata, rdclass, type, &region);
 1009|   289k|	}
 1010|       |
 1011|   338k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1011:6): [True: 49.0k, False: 289k]
  ------------------
 1012|  49.0k|		*source = ss;
 1013|  49.0k|		*target = st;
 1014|  49.0k|	}
 1015|   338k|	return result;
 1016|   338k|}
dns_rdata_towire:
 1020|   126k|		 isc_buffer_t *target) {
 1021|   126k|	isc_result_t result = ISC_R_NOTIMPLEMENTED;
 1022|   126k|	bool use_default = false;
 1023|   126k|	isc_region_t tr;
 1024|   126k|	isc_buffer_t st;
 1025|       |
 1026|   126k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   126k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   126k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 126k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1027|   126k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   126k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   126k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 126k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1028|       |
 1029|       |	/*
 1030|       |	 * Some DynDNS meta-RRs have empty rdata.
 1031|       |	 */
 1032|   126k|	if ((rdata->flags & DNS_RDATA_UPDATE) != 0) {
  ------------------
  |  |  166|   126k|#define DNS_RDATA_UPDATE  0x0001 /*%< update pseudo record. */
  ------------------
  |  Branch (1032:6): [True: 1.34k, False: 125k]
  ------------------
 1033|  1.34k|		INSIST(rdata->length == 0);
  ------------------
  |  |  202|  1.34k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.34k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.34k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1034|  1.34k|		return ISC_R_SUCCESS;
 1035|  1.34k|	}
 1036|       |
 1037|   125k|	st = *target;
 1038|       |
 1039|   125k|	TOWIRESWITCH
  ------------------
  |  |  599|   125k|	switch (rdata->type) { \
  |  |  600|  3.39k|	case 1: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (600:2): [True: 3.39k, False: 121k]
  |  |  ------------------
  |  |  601|    707|		case 1: result = towire_in_a(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (601:3): [True: 707, False: 2.68k]
  |  |  ------------------
  |  |  602|    460|		case 3: result = towire_ch_a(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (602:3): [True: 460, False: 2.93k]
  |  |  ------------------
  |  |  603|    339|		case 4: result = towire_hs_a(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (603:3): [True: 339, False: 3.05k]
  |  |  ------------------
  |  |  604|  1.88k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (604:3): [True: 1.88k, False: 1.50k]
  |  |  ------------------
  |  |  605|  3.39k|		} \
  |  |  606|  3.39k|		break; \
  |  |  607|  3.39k|	case 2: result = towire_ns(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (607:2): [True: 1.35k, False: 123k]
  |  |  ------------------
  |  |  608|  3.39k|	case 3: result = towire_md(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (608:2): [True: 798, False: 124k]
  |  |  ------------------
  |  |  609|  3.39k|	case 4: result = towire_mf(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (609:2): [True: 459, False: 124k]
  |  |  ------------------
  |  |  610|  3.39k|	case 5: result = towire_cname(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (610:2): [True: 1.32k, False: 123k]
  |  |  ------------------
  |  |  611|  3.39k|	case 6: result = towire_soa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (611:2): [True: 2.40k, False: 122k]
  |  |  ------------------
  |  |  612|  3.39k|	case 7: result = towire_mb(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (612:2): [True: 572, False: 124k]
  |  |  ------------------
  |  |  613|  3.39k|	case 8: result = towire_mg(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (613:2): [True: 453, False: 124k]
  |  |  ------------------
  |  |  614|  3.39k|	case 9: result = towire_mr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (614:2): [True: 666, False: 124k]
  |  |  ------------------
  |  |  615|  3.39k|	case 10: result = towire_null(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (615:2): [True: 2.16k, False: 123k]
  |  |  ------------------
  |  |  616|  3.39k|	case 11: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (616:2): [True: 1.91k, False: 123k]
  |  |  ------------------
  |  |  617|    882|		case 1: result = towire_in_wks(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (617:3): [True: 882, False: 1.03k]
  |  |  ------------------
  |  |  618|  1.03k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (618:3): [True: 1.03k, False: 882]
  |  |  ------------------
  |  |  619|  1.91k|		} \
  |  |  620|  1.91k|		break; \
  |  |  621|  1.91k|	case 12: result = towire_ptr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (621:2): [True: 406, False: 124k]
  |  |  ------------------
  |  |  622|  1.91k|	case 13: result = towire_hinfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (622:2): [True: 312, False: 124k]
  |  |  ------------------
  |  |  623|  1.91k|	case 14: result = towire_minfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (623:2): [True: 563, False: 124k]
  |  |  ------------------
  |  |  624|  1.91k|	case 15: result = towire_mx(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (624:2): [True: 456, False: 124k]
  |  |  ------------------
  |  |  625|  1.91k|	case 16: result = towire_txt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (625:2): [True: 586, False: 124k]
  |  |  ------------------
  |  |  626|  1.91k|	case 17: result = towire_rp(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (626:2): [True: 543, False: 124k]
  |  |  ------------------
  |  |  627|  1.91k|	case 18: result = towire_afsdb(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (627:2): [True: 436, False: 124k]
  |  |  ------------------
  |  |  628|  1.91k|	case 19: result = towire_x25(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (628:2): [True: 344, False: 124k]
  |  |  ------------------
  |  |  629|  1.91k|	case 20: result = towire_isdn(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (629:2): [True: 605, False: 124k]
  |  |  ------------------
  |  |  630|  1.91k|	case 21: result = towire_rt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (630:2): [True: 402, False: 124k]
  |  |  ------------------
  |  |  631|  1.91k|	case 22: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (631:2): [True: 1.47k, False: 123k]
  |  |  ------------------
  |  |  632|    673|		case 1: result = towire_in_nsap(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (632:3): [True: 673, False: 805]
  |  |  ------------------
  |  |  633|    805|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (633:3): [True: 805, False: 673]
  |  |  ------------------
  |  |  634|  1.47k|		} \
  |  |  635|  1.47k|		break; \
  |  |  636|  1.47k|	case 23: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (636:2): [True: 1.00k, False: 124k]
  |  |  ------------------
  |  |  637|    473|		case 1: result = towire_in_nsap_ptr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (637:3): [True: 473, False: 527]
  |  |  ------------------
  |  |  638|    527|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (638:3): [True: 527, False: 473]
  |  |  ------------------
  |  |  639|  1.00k|		} \
  |  |  640|  1.00k|		break; \
  |  |  641|  1.77k|	case 24: result = towire_sig(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (641:2): [True: 1.77k, False: 123k]
  |  |  ------------------
  |  |  642|  1.00k|	case 25: result = towire_key(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (642:2): [True: 783, False: 124k]
  |  |  ------------------
  |  |  643|  1.00k|	case 26: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (643:2): [True: 1.00k, False: 124k]
  |  |  ------------------
  |  |  644|    442|		case 1: result = towire_in_px(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (644:3): [True: 442, False: 563]
  |  |  ------------------
  |  |  645|    563|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (645:3): [True: 563, False: 442]
  |  |  ------------------
  |  |  646|  1.00k|		} \
  |  |  647|  1.00k|		break; \
  |  |  648|  1.00k|	case 27: result = towire_gpos(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (648:2): [True: 583, False: 124k]
  |  |  ------------------
  |  |  649|  1.21k|	case 28: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (649:2): [True: 1.21k, False: 124k]
  |  |  ------------------
  |  |  650|    453|		case 1: result = towire_in_aaaa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (650:3): [True: 453, False: 760]
  |  |  ------------------
  |  |  651|    760|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (651:3): [True: 760, False: 453]
  |  |  ------------------
  |  |  652|  1.21k|		} \
  |  |  653|  1.21k|		break; \
  |  |  654|  2.52k|	case 29: result = towire_loc(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (654:2): [True: 2.52k, False: 122k]
  |  |  ------------------
  |  |  655|  1.21k|	case 30: result = towire_nxt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (655:2): [True: 1.21k, False: 123k]
  |  |  ------------------
  |  |  656|  2.40k|	case 31: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (656:2): [True: 2.40k, False: 122k]
  |  |  ------------------
  |  |  657|  1.23k|		case 1: result = towire_in_eid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (657:3): [True: 1.23k, False: 1.17k]
  |  |  ------------------
  |  |  658|  1.17k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (658:3): [True: 1.17k, False: 1.23k]
  |  |  ------------------
  |  |  659|  2.40k|		} \
  |  |  660|  2.40k|		break; \
  |  |  661|  2.40k|	case 32: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (661:2): [True: 1.13k, False: 124k]
  |  |  ------------------
  |  |  662|    343|		case 1: result = towire_in_nimloc(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (662:3): [True: 343, False: 793]
  |  |  ------------------
  |  |  663|    793|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (663:3): [True: 793, False: 343]
  |  |  ------------------
  |  |  664|  1.13k|		} \
  |  |  665|  1.13k|		break; \
  |  |  666|  1.40k|	case 33: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (666:2): [True: 1.40k, False: 123k]
  |  |  ------------------
  |  |  667|    384|		case 1: result = towire_in_srv(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (667:3): [True: 384, False: 1.01k]
  |  |  ------------------
  |  |  668|  1.01k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (668:3): [True: 1.01k, False: 384]
  |  |  ------------------
  |  |  669|  1.40k|		} \
  |  |  670|  1.40k|		break; \
  |  |  671|  2.36k|	case 34: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (671:2): [True: 2.36k, False: 122k]
  |  |  ------------------
  |  |  672|  1.52k|		case 1: result = towire_in_atma(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (672:3): [True: 1.52k, False: 849]
  |  |  ------------------
  |  |  673|    849|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (673:3): [True: 849, False: 1.52k]
  |  |  ------------------
  |  |  674|  2.36k|		} \
  |  |  675|  2.36k|		break; \
  |  |  676|  2.36k|	case 35: result = towire_naptr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (676:2): [True: 2.25k, False: 122k]
  |  |  ------------------
  |  |  677|  2.36k|	case 36: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (677:2): [True: 1.52k, False: 123k]
  |  |  ------------------
  |  |  678|    574|		case 1: result = towire_in_kx(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (678:3): [True: 574, False: 947]
  |  |  ------------------
  |  |  679|    947|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (679:3): [True: 947, False: 574]
  |  |  ------------------
  |  |  680|  1.52k|		} \
  |  |  681|  1.52k|		break; \
  |  |  682|  1.52k|	case 37: result = towire_cert(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (682:2): [True: 1.33k, False: 123k]
  |  |  ------------------
  |  |  683|  1.60k|	case 38: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (683:2): [True: 1.60k, False: 123k]
  |  |  ------------------
  |  |  684|    767|		case 1: result = towire_in_a6(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (684:3): [True: 767, False: 839]
  |  |  ------------------
  |  |  685|    839|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (685:3): [True: 839, False: 767]
  |  |  ------------------
  |  |  686|  1.60k|		} \
  |  |  687|  1.60k|		break; \
  |  |  688|  1.60k|	case 39: result = towire_dname(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (688:2): [True: 1.20k, False: 124k]
  |  |  ------------------
  |  |  689|  1.60k|	case 40: result = towire_sink(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (689:2): [True: 837, False: 124k]
  |  |  ------------------
  |  |  690|  4.79k|	case 41: result = towire_opt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (690:2): [True: 4.79k, False: 120k]
  |  |  ------------------
  |  |  691|  1.86k|	case 42: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (691:2): [True: 1.86k, False: 123k]
  |  |  ------------------
  |  |  692|  1.23k|		case 1: result = towire_in_apl(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (692:3): [True: 1.23k, False: 634]
  |  |  ------------------
  |  |  693|    634|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (693:3): [True: 634, False: 1.23k]
  |  |  ------------------
  |  |  694|  1.86k|		} \
  |  |  695|  1.86k|		break; \
  |  |  696|  1.86k|	case 43: result = towire_ds(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (696:2): [True: 473, False: 124k]
  |  |  ------------------
  |  |  697|  1.86k|	case 44: result = towire_sshfp(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (697:2): [True: 893, False: 124k]
  |  |  ------------------
  |  |  698|  1.86k|	case 45: result = towire_ipseckey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (698:2): [True: 1.06k, False: 124k]
  |  |  ------------------
  |  |  699|  1.86k|	case 46: result = towire_rrsig(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (699:2): [True: 1.68k, False: 123k]
  |  |  ------------------
  |  |  700|  1.86k|	case 47: result = towire_nsec(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (700:2): [True: 1.16k, False: 124k]
  |  |  ------------------
  |  |  701|  1.86k|	case 48: result = towire_dnskey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (701:2): [True: 1.14k, False: 124k]
  |  |  ------------------
  |  |  702|  1.86k|	case 49: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (702:2): [True: 1.80k, False: 123k]
  |  |  ------------------
  |  |  703|    370|		case 1: result = towire_in_dhcid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (703:3): [True: 370, False: 1.43k]
  |  |  ------------------
  |  |  704|  1.43k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (704:3): [True: 1.43k, False: 370]
  |  |  ------------------
  |  |  705|  1.80k|		} \
  |  |  706|  1.80k|		break; \
  |  |  707|  1.80k|	case 50: result = towire_nsec3(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (707:2): [True: 1.80k, False: 123k]
  |  |  ------------------
  |  |  708|  1.80k|	case 51: result = towire_nsec3param(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (708:2): [True: 563, False: 124k]
  |  |  ------------------
  |  |  709|  1.80k|	case 52: result = towire_tlsa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (709:2): [True: 721, False: 124k]
  |  |  ------------------
  |  |  710|  1.80k|	case 53: result = towire_smimea(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (710:2): [True: 456, False: 124k]
  |  |  ------------------
  |  |  711|  2.85k|	case 55: result = towire_hip(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (711:2): [True: 2.85k, False: 122k]
  |  |  ------------------
  |  |  712|  1.80k|	case 56: result = towire_ninfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (712:2): [True: 481, False: 124k]
  |  |  ------------------
  |  |  713|  1.80k|	case 57: result = towire_rkey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (713:2): [True: 655, False: 124k]
  |  |  ------------------
  |  |  714|  1.80k|	case 58: result = towire_talink(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (714:2): [True: 1.21k, False: 124k]
  |  |  ------------------
  |  |  715|  1.80k|	case 59: result = towire_cds(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (715:2): [True: 683, False: 124k]
  |  |  ------------------
  |  |  716|  1.80k|	case 60: result = towire_cdnskey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (716:2): [True: 592, False: 124k]
  |  |  ------------------
  |  |  717|  1.80k|	case 61: result = towire_openpgpkey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (717:2): [True: 544, False: 124k]
  |  |  ------------------
  |  |  718|  1.80k|	case 62: result = towire_csync(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (718:2): [True: 736, False: 124k]
  |  |  ------------------
  |  |  719|  1.80k|	case 63: result = towire_zonemd(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (719:2): [True: 604, False: 124k]
  |  |  ------------------
  |  |  720|  2.77k|	case 64: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (720:2): [True: 2.77k, False: 122k]
  |  |  ------------------
  |  |  721|  1.77k|		case 1: result = towire_in_svcb(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (721:3): [True: 1.77k, False: 998]
  |  |  ------------------
  |  |  722|    998|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (722:3): [True: 998, False: 1.77k]
  |  |  ------------------
  |  |  723|  2.77k|		} \
  |  |  724|  2.77k|		break; \
  |  |  725|  2.77k|	case 65: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (725:2): [True: 2.33k, False: 122k]
  |  |  ------------------
  |  |  726|  1.31k|		case 1: result = towire_in_https(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (726:3): [True: 1.31k, False: 1.02k]
  |  |  ------------------
  |  |  727|  1.02k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (727:3): [True: 1.02k, False: 1.31k]
  |  |  ------------------
  |  |  728|  2.33k|		} \
  |  |  729|  2.33k|		break; \
  |  |  730|  2.33k|	case 66: result = towire_dsync(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (730:2): [True: 521, False: 124k]
  |  |  ------------------
  |  |  731|  2.33k|	case 67: result = towire_hhit(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (731:2): [True: 457, False: 124k]
  |  |  ------------------
  |  |  732|  2.33k|	case 68: result = towire_brid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (732:2): [True: 399, False: 124k]
  |  |  ------------------
  |  |  733|  2.33k|	case 99: result = towire_spf(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (733:2): [True: 453, False: 124k]
  |  |  ------------------
  |  |  734|  2.33k|	case 104: result = towire_nid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (734:2): [True: 401, False: 124k]
  |  |  ------------------
  |  |  735|  2.33k|	case 105: result = towire_l32(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (735:2): [True: 686, False: 124k]
  |  |  ------------------
  |  |  736|  2.33k|	case 106: result = towire_l64(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (736:2): [True: 366, False: 124k]
  |  |  ------------------
  |  |  737|  2.33k|	case 107: result = towire_lp(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (737:2): [True: 422, False: 124k]
  |  |  ------------------
  |  |  738|  2.33k|	case 108: result = towire_eui48(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (738:2): [True: 378, False: 124k]
  |  |  ------------------
  |  |  739|  2.33k|	case 109: result = towire_eui64(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (739:2): [True: 347, False: 124k]
  |  |  ------------------
  |  |  740|  2.33k|	case 249: result = towire_tkey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (740:2): [True: 961, False: 124k]
  |  |  ------------------
  |  |  741|  2.33k|	case 250: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (741:2): [True: 1.90k, False: 123k]
  |  |  ------------------
  |  |  742|    575|		case 255: result = towire_any_tsig(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (742:3): [True: 575, False: 1.32k]
  |  |  ------------------
  |  |  743|  1.32k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (743:3): [True: 1.32k, False: 575]
  |  |  ------------------
  |  |  744|  1.90k|		} \
  |  |  745|  1.90k|		break; \
  |  |  746|  1.90k|	case 256: result = towire_uri(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (746:2): [True: 740, False: 124k]
  |  |  ------------------
  |  |  747|  1.90k|	case 257: result = towire_caa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (747:2): [True: 533, False: 124k]
  |  |  ------------------
  |  |  748|  1.90k|	case 258: result = towire_avc(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (748:2): [True: 503, False: 124k]
  |  |  ------------------
  |  |  749|  1.90k|	case 259: result = towire_doa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (749:2): [True: 662, False: 124k]
  |  |  ------------------
  |  |  750|  1.90k|	case 260: result = towire_amtrelay(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (750:2): [True: 1.60k, False: 123k]
  |  |  ------------------
  |  |  751|  1.90k|	case 261: result = towire_resinfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (751:2): [True: 455, False: 124k]
  |  |  ------------------
  |  |  752|  1.90k|	case 262: result = towire_wallet(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (752:2): [True: 485, False: 124k]
  |  |  ------------------
  |  |  753|  1.90k|	case 32768: result = towire_ta(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (753:2): [True: 390, False: 124k]
  |  |  ------------------
  |  |  754|  1.90k|	case 32769: result = towire_dlv(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (754:2): [True: 391, False: 124k]
  |  |  ------------------
  |  |  755|  1.90k|	case 65533: result = towire_keydata(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (755:2): [True: 804, False: 124k]
  |  |  ------------------
  |  |  756|  31.6k|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (756:2): [True: 31.6k, False: 93.5k]
  |  |  ------------------
  |  |  757|   125k|	}
  ------------------
 1040|       |
 1041|   125k|	if (use_default) {
  ------------------
  |  Branch (1041:6): [True: 48.2k, False: 76.9k]
  ------------------
 1042|  48.2k|		isc_buffer_availableregion(target, &tr);
 1043|  48.2k|		if (tr.length < rdata->length) {
  ------------------
  |  Branch (1043:7): [True: 1, False: 48.2k]
  ------------------
 1044|      1|			return ISC_R_NOSPACE;
 1045|      1|		}
 1046|  48.2k|		memmove(tr.base, rdata->data, rdata->length);
 1047|  48.2k|		isc_buffer_add(target, rdata->length);
 1048|  48.2k|		return ISC_R_SUCCESS;
 1049|  48.2k|	}
 1050|  76.9k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1050:6): [True: 141, False: 76.8k]
  ------------------
 1051|    141|		*target = st;
 1052|    141|		dns_compress_rollback(cctx, target->used);
 1053|    141|	}
 1054|  76.9k|	return result;
 1055|   125k|}
dns_rdata_tofmttext:
 1347|   245k|		    isc_buffer_t *target) {
 1348|   245k|	dns_rdata_textctx_t tctx;
 1349|       |
 1350|   245k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   245k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   245k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 245k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   245k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1351|       |
 1352|       |	/*
 1353|       |	 * Set up formatting options for formatted output.
 1354|       |	 */
 1355|   245k|	tctx.origin = origin;
 1356|   245k|	tctx.flags = flags;
 1357|   245k|	if (split_width == 0xffffffff) {
  ------------------
  |  Branch (1357:6): [True: 245k, False: 0]
  ------------------
 1358|   245k|		tctx.width = width;
 1359|   245k|	} else {
 1360|      0|		tctx.width = split_width;
 1361|      0|	}
 1362|       |
 1363|   245k|	if ((flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|   245k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (1363:6): [True: 0, False: 245k]
  ------------------
 1364|      0|		tctx.linebreak = linebreak;
 1365|   245k|	} else {
 1366|   245k|		if (split_width == 0xffffffff) {
  ------------------
  |  Branch (1366:7): [True: 245k, False: 0]
  ------------------
 1367|   245k|			tctx.width = 60; /* Used for hex word length only. */
 1368|   245k|		}
 1369|   245k|		tctx.linebreak = " ";
 1370|   245k|	}
 1371|   245k|	return rdata_totext(rdata, &tctx, target);
 1372|   245k|}
dns_rdata_checkowner:
 1490|  5.06k|		     dns_rdatatype_t type, bool wildcard) {
 1491|  5.06k|	bool result;
 1492|       |
 1493|  5.06k|	CHECKOWNERSWITCH
  ------------------
  |  | 1887|  5.06k|	switch (type) { \
  |  | 1888|      0|	case 1: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1888:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1889|      0|		case 1: result = checkowner_in_a(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1889:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1890|      0|		case 3: result = checkowner_ch_a(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1890:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1891|      0|		case 4: result = checkowner_hs_a(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1891:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1892|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1892:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1893|      0|		} \
  |  | 1894|      0|		break; \
  |  | 1895|      0|	case 2: result = checkowner_ns(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1895:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1896|      0|	case 3: result = checkowner_md(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1896:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1897|      0|	case 4: result = checkowner_mf(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1897:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1898|      0|	case 5: result = checkowner_cname(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1898:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1899|      0|	case 6: result = checkowner_soa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1899:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1900|      0|	case 7: result = checkowner_mb(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1900:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1901|      0|	case 8: result = checkowner_mg(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1901:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1902|      0|	case 9: result = checkowner_mr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1902:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1903|      0|	case 10: result = checkowner_null(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1903:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1904|      0|	case 11: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1904:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1905|      0|		case 1: result = checkowner_in_wks(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1905:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1906|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1906:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1907|      0|		} \
  |  | 1908|      0|		break; \
  |  | 1909|      0|	case 12: result = checkowner_ptr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1909:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1910|      0|	case 13: result = checkowner_hinfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1910:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1911|      0|	case 14: result = checkowner_minfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1911:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1912|      0|	case 15: result = checkowner_mx(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1912:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1913|      0|	case 16: result = checkowner_txt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1913:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1914|      0|	case 17: result = checkowner_rp(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1914:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1915|      0|	case 18: result = checkowner_afsdb(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1915:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1916|      0|	case 19: result = checkowner_x25(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1916:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1917|      0|	case 20: result = checkowner_isdn(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1917:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1918|      0|	case 21: result = checkowner_rt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1918:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1919|      0|	case 22: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1919:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1920|      0|		case 1: result = checkowner_in_nsap(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1920:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1921|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1921:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1922|      0|		} \
  |  | 1923|      0|		break; \
  |  | 1924|      0|	case 23: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1924:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1925|      0|		case 1: result = checkowner_in_nsap_ptr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1925:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1926|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1926:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1927|      0|		} \
  |  | 1928|      0|		break; \
  |  | 1929|      0|	case 24: result = checkowner_sig(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1929:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1930|      0|	case 25: result = checkowner_key(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1930:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1931|      0|	case 26: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1931:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1932|      0|		case 1: result = checkowner_in_px(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1932:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1933|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1933:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1934|      0|		} \
  |  | 1935|      0|		break; \
  |  | 1936|      0|	case 27: result = checkowner_gpos(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1936:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1937|      0|	case 28: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1937:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1938|      0|		case 1: result = checkowner_in_aaaa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1938:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1939|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1939:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1940|      0|		} \
  |  | 1941|      0|		break; \
  |  | 1942|      0|	case 29: result = checkowner_loc(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1942:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1943|      0|	case 30: result = checkowner_nxt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1943:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1944|      0|	case 31: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1944:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1945|      0|		case 1: result = checkowner_in_eid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1945:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1946|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1946:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1947|      0|		} \
  |  | 1948|      0|		break; \
  |  | 1949|      0|	case 32: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1949:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1950|      0|		case 1: result = checkowner_in_nimloc(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1950:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1951|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1951:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1952|      0|		} \
  |  | 1953|      0|		break; \
  |  | 1954|      0|	case 33: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1954:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1955|      0|		case 1: result = checkowner_in_srv(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1955:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1956|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1956:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1957|      0|		} \
  |  | 1958|      0|		break; \
  |  | 1959|      0|	case 34: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1959:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1960|      0|		case 1: result = checkowner_in_atma(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1960:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1961|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1961:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1962|      0|		} \
  |  | 1963|      0|		break; \
  |  | 1964|      0|	case 35: result = checkowner_naptr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1964:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1965|      0|	case 36: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1965:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1966|      0|		case 1: result = checkowner_in_kx(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1966:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1967|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1967:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1968|      0|		} \
  |  | 1969|      0|		break; \
  |  | 1970|      0|	case 37: result = checkowner_cert(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1970:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1971|      0|	case 38: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1971:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1972|      0|		case 1: result = checkowner_in_a6(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1972:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1973|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1973:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1974|      0|		} \
  |  | 1975|      0|		break; \
  |  | 1976|      0|	case 39: result = checkowner_dname(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1976:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1977|      0|	case 40: result = checkowner_sink(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1977:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1978|      0|	case 41: result = checkowner_opt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1978:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1979|      0|	case 42: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1979:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1980|      0|		case 1: result = checkowner_in_apl(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1980:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1981|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1981:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1982|      0|		} \
  |  | 1983|      0|		break; \
  |  | 1984|      0|	case 43: result = checkowner_ds(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1984:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1985|      0|	case 44: result = checkowner_sshfp(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1985:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1986|      0|	case 45: result = checkowner_ipseckey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1986:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1987|      0|	case 46: result = checkowner_rrsig(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1987:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1988|      0|	case 47: result = checkowner_nsec(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1988:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1989|      0|	case 48: result = checkowner_dnskey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1989:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1990|      0|	case 49: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1990:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1991|      0|		case 1: result = checkowner_in_dhcid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1991:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1992|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1992:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1993|      0|		} \
  |  | 1994|      0|		break; \
  |  | 1995|  5.06k|	case 50: result = checkowner_nsec3(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1995:2): [True: 5.06k, False: 0]
  |  |  ------------------
  |  | 1996|      0|	case 51: result = checkowner_nsec3param(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1996:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1997|      0|	case 52: result = checkowner_tlsa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1997:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1998|      0|	case 53: result = checkowner_smimea(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1998:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 1999|      0|	case 55: result = checkowner_hip(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1999:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2000|      0|	case 56: result = checkowner_ninfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2000:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2001|      0|	case 57: result = checkowner_rkey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2001:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2002|      0|	case 58: result = checkowner_talink(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2002:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2003|      0|	case 59: result = checkowner_cds(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2003:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2004|      0|	case 60: result = checkowner_cdnskey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2004:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2005|      0|	case 61: result = checkowner_openpgpkey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2005:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2006|      0|	case 62: result = checkowner_csync(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2006:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2007|      0|	case 63: result = checkowner_zonemd(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2007:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2008|      0|	case 64: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (2008:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2009|      0|		case 1: result = checkowner_in_svcb(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2009:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2010|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2010:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2011|      0|		} \
  |  | 2012|      0|		break; \
  |  | 2013|      0|	case 65: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (2013:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2014|      0|		case 1: result = checkowner_in_https(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2014:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2015|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2015:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2016|      0|		} \
  |  | 2017|      0|		break; \
  |  | 2018|      0|	case 66: result = checkowner_dsync(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2018:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2019|      0|	case 67: result = checkowner_hhit(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2019:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2020|      0|	case 68: result = checkowner_brid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2020:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2021|      0|	case 99: result = checkowner_spf(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2021:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2022|      0|	case 104: result = checkowner_nid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2022:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2023|      0|	case 105: result = checkowner_l32(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2023:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2024|      0|	case 106: result = checkowner_l64(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2024:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2025|      0|	case 107: result = checkowner_lp(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2025:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2026|      0|	case 108: result = checkowner_eui48(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2026:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2027|      0|	case 109: result = checkowner_eui64(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2027:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2028|      0|	case 249: result = checkowner_tkey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2028:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2029|      0|	case 250: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (2029:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2030|      0|		case 255: result = checkowner_any_tsig(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2030:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2031|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2031:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2032|      0|		} \
  |  | 2033|      0|		break; \
  |  | 2034|      0|	case 256: result = checkowner_uri(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2034:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2035|      0|	case 257: result = checkowner_caa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2035:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2036|      0|	case 258: result = checkowner_avc(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2036:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2037|      0|	case 259: result = checkowner_doa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2037:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2038|      0|	case 260: result = checkowner_amtrelay(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2038:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2039|      0|	case 261: result = checkowner_resinfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2039:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2040|      0|	case 262: result = checkowner_wallet(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2040:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2041|      0|	case 32768: result = checkowner_ta(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2041:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2042|      0|	case 32769: result = checkowner_dlv(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2042:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2043|      0|	case 65533: result = checkowner_keydata(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2043:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2044|      0|	default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2044:2): [True: 0, False: 5.06k]
  |  |  ------------------
  |  | 2045|  5.06k|	}
  ------------------
 1494|  5.06k|	return result;
 1495|  5.06k|}
dns_rdatatype_attributes:
 1507|   545k|dns_rdatatype_attributes(dns_rdatatype_t type) {
 1508|   545k|	RDATATYPE_ATTRIBUTE_SW
  ------------------
  |  | 2467|   545k|	switch (type) { \
  |  |  ------------------
  |  |  |  Branch (2467:10): [True: 406k, False: 138k]
  |  |  ------------------
  |  | 2468|  13.1k|	case 1: return (RRTYPE_A_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  13.1k|#define RRTYPE_A_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2468:2): [True: 13.1k, False: 532k]
  |  |  ------------------
  |  | 2469|  6.97k|	case 2: return (RRTYPE_NS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  6.97k|#define RRTYPE_NS_ATTRIBUTES (DNS_RDATATYPEATTR_ZONECUTAUTH)
  |  |  ------------------
  |  |  |  Branch (2469:2): [True: 6.97k, False: 538k]
  |  |  ------------------
  |  | 2470|  3.89k|	case 3: return (RRTYPE_MD_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.89k|#define RRTYPE_MD_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2470:2): [True: 3.89k, False: 541k]
  |  |  ------------------
  |  | 2471|  2.93k|	case 4: return (RRTYPE_MF_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.93k|#define RRTYPE_MF_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2471:2): [True: 2.93k, False: 542k]
  |  |  ------------------
  |  | 2472|  6.30k|	case 5: return (RRTYPE_CNAME_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  6.30k|	(DNS_RDATATYPEATTR_EXCLUSIVE | DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2472:2): [True: 6.30k, False: 539k]
  |  |  ------------------
  |  | 2473|  8.78k|	case 6: return (RRTYPE_SOA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  8.78k|#define RRTYPE_SOA_ATTRIBUTES (DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2473:2): [True: 8.78k, False: 536k]
  |  |  ------------------
  |  | 2474|  3.69k|	case 7: return (RRTYPE_MB_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.69k|#define RRTYPE_MB_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2474:2): [True: 3.69k, False: 541k]
  |  |  ------------------
  |  | 2475|  2.14k|	case 8: return (RRTYPE_MG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.14k|#define RRTYPE_MG_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2475:2): [True: 2.14k, False: 543k]
  |  |  ------------------
  |  | 2476|  3.35k|	case 9: return (RRTYPE_MR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.35k|#define RRTYPE_MR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2476:2): [True: 3.35k, False: 542k]
  |  |  ------------------
  |  | 2477|  7.81k|	case 10: return (RRTYPE_NULL_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  7.81k|#define RRTYPE_NULL_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2477:2): [True: 7.81k, False: 537k]
  |  |  ------------------
  |  | 2478|  7.37k|	case 11: return (RRTYPE_WKS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   24|  7.37k|#define RRTYPE_WKS_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2478:2): [True: 7.37k, False: 538k]
  |  |  ------------------
  |  | 2479|  2.43k|	case 12: return (RRTYPE_PTR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.43k|#define RRTYPE_PTR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2479:2): [True: 2.43k, False: 543k]
  |  |  ------------------
  |  | 2480|  2.64k|	case 13: return (RRTYPE_HINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   16|  2.64k|#define RRTYPE_HINFO_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2480:2): [True: 2.64k, False: 543k]
  |  |  ------------------
  |  | 2481|  3.38k|	case 14: return (RRTYPE_MINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.38k|#define RRTYPE_MINFO_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2481:2): [True: 3.38k, False: 542k]
  |  |  ------------------
  |  | 2482|  3.35k|	case 15: return (RRTYPE_MX_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   23|  3.35k|#define RRTYPE_MX_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2482:2): [True: 3.35k, False: 542k]
  |  |  ------------------
  |  | 2483|  2.68k|	case 16: return (RRTYPE_TXT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.68k|#define RRTYPE_TXT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2483:2): [True: 2.68k, False: 543k]
  |  |  ------------------
  |  | 2484|  2.42k|	case 17: return (RRTYPE_RP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.42k|#define RRTYPE_RP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2484:2): [True: 2.42k, False: 543k]
  |  |  ------------------
  |  | 2485|  1.68k|	case 18: return (RRTYPE_AFSDB_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.68k|#define RRTYPE_AFSDB_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2485:2): [True: 1.68k, False: 544k]
  |  |  ------------------
  |  | 2486|  1.74k|	case 19: return (RRTYPE_X25_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.74k|#define RRTYPE_X25_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2486:2): [True: 1.74k, False: 543k]
  |  |  ------------------
  |  | 2487|  2.54k|	case 20: return (RRTYPE_ISDN_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.54k|#define RRTYPE_ISDN_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2487:2): [True: 2.54k, False: 543k]
  |  |  ------------------
  |  | 2488|  2.22k|	case 21: return (RRTYPE_RT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.22k|#define RRTYPE_RT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2488:2): [True: 2.22k, False: 543k]
  |  |  ------------------
  |  | 2489|  3.20k|	case 22: return (RRTYPE_NSAP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.20k|#define RRTYPE_NSAP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2489:2): [True: 3.20k, False: 542k]
  |  |  ------------------
  |  | 2490|  2.54k|	case 23: return (RRTYPE_NSAP_PTR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.54k|#define RRTYPE_NSAP_PTR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2490:2): [True: 2.54k, False: 543k]
  |  |  ------------------
  |  | 2491|  6.63k|	case 24: return (RRTYPE_SIG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.63k|#define RRTYPE_SIG_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2491:2): [True: 6.63k, False: 539k]
  |  |  ------------------
  |  | 2492|  3.53k|	case 25: return (RRTYPE_KEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  3.53k|#define RRTYPE_KEY_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2492:2): [True: 3.53k, False: 542k]
  |  |  ------------------
  |  | 2493|  4.14k|	case 26: return (RRTYPE_PX_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  4.14k|#define RRTYPE_PX_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2493:2): [True: 4.14k, False: 541k]
  |  |  ------------------
  |  | 2494|  2.50k|	case 27: return (RRTYPE_GPOS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.50k|#define RRTYPE_GPOS_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2494:2): [True: 2.50k, False: 543k]
  |  |  ------------------
  |  | 2495|  4.60k|	case 28: return (RRTYPE_AAAA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  4.60k|#define RRTYPE_AAAA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2495:2): [True: 4.60k, False: 541k]
  |  |  ------------------
  |  | 2496|  8.48k|	case 29: return (RRTYPE_LOC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  8.48k|#define RRTYPE_LOC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2496:2): [True: 8.48k, False: 537k]
  |  |  ------------------
  |  | 2497|  3.42k|	case 30: return (RRTYPE_NXT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   23|  3.42k|#define RRTYPE_NXT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2497:2): [True: 3.42k, False: 542k]
  |  |  ------------------
  |  | 2498|  9.17k|	case 31: return (RRTYPE_EID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  9.17k|#define RRTYPE_EID_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2498:2): [True: 9.17k, False: 536k]
  |  |  ------------------
  |  | 2499|  3.94k|	case 32: return (RRTYPE_NIMLOC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.94k|#define RRTYPE_NIMLOC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2499:2): [True: 3.94k, False: 541k]
  |  |  ------------------
  |  | 2500|  6.09k|	case 33: return (RRTYPE_SRV_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.09k|#define RRTYPE_SRV_ATTRIBUTES (DNS_RDATATYPEATTR_FOLLOWADDITIONAL)
  |  |  ------------------
  |  |  |  Branch (2500:2): [True: 6.09k, False: 539k]
  |  |  ------------------
  |  | 2501|  7.34k|	case 34: return (RRTYPE_ATMA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  7.34k|#define RRTYPE_ATMA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2501:2): [True: 7.34k, False: 538k]
  |  |  ------------------
  |  | 2502|  9.39k|	case 35: return (RRTYPE_NAPTR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  9.39k|#define RRTYPE_NAPTR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2502:2): [True: 9.39k, False: 536k]
  |  |  ------------------
  |  | 2503|  6.08k|	case 36: return (RRTYPE_KX_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.08k|#define RRTYPE_KX_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2503:2): [True: 6.08k, False: 539k]
  |  |  ------------------
  |  | 2504|  5.45k|	case 37: return (RRTYPE_CERT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  5.45k|#define RRTYPE_CERT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2504:2): [True: 5.45k, False: 540k]
  |  |  ------------------
  |  | 2505|  6.00k|	case 38: return (RRTYPE_A6_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  6.00k|#define RRTYPE_A6_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2505:2): [True: 6.00k, False: 539k]
  |  |  ------------------
  |  | 2506|  5.63k|	case 39: return (RRTYPE_DNAME_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  5.63k|#define RRTYPE_DNAME_ATTRIBUTES (DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2506:2): [True: 5.63k, False: 540k]
  |  |  ------------------
  |  | 2507|  3.81k|	case 40: return (RRTYPE_SINK_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.81k|#define RRTYPE_SINK_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2507:2): [True: 3.81k, False: 541k]
  |  |  ------------------
  |  | 2508|  10.0k|	case 41: return (RRTYPE_OPT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   20|  10.0k|	(DNS_RDATATYPEATTR_SINGLETON | DNS_RDATATYPEATTR_META | \
  |  |  |  |   21|  10.0k|	 DNS_RDATATYPEATTR_NOTQUESTION)
  |  |  ------------------
  |  |  |  Branch (2508:2): [True: 10.0k, False: 535k]
  |  |  ------------------
  |  | 2509|  6.40k|	case 42: return (RRTYPE_APL_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.40k|#define RRTYPE_APL_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2509:2): [True: 6.40k, False: 539k]
  |  |  ------------------
  |  | 2510|  2.60k|	case 43: return (RRTYPE_DS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   20|  2.60k|	(DNS_RDATATYPEATTR_DNSSEC | DNS_RDATATYPEATTR_ZONECUTAUTH | \
  |  |  |  |   21|  2.60k|	 DNS_RDATATYPEATTR_ATPARENT)
  |  |  ------------------
  |  |  |  Branch (2510:2): [True: 2.60k, False: 543k]
  |  |  ------------------
  |  | 2511|  3.77k|	case 44: return (RRTYPE_SSHFP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.77k|#define RRTYPE_SSHFP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2511:2): [True: 3.77k, False: 541k]
  |  |  ------------------
  |  | 2512|  5.50k|	case 45: return (RRTYPE_IPSECKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  5.50k|#define RRTYPE_IPSECKEY_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2512:2): [True: 5.50k, False: 540k]
  |  |  ------------------
  |  | 2513|  6.00k|	case 46: return (RRTYPE_RRSIG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   20|  6.00k|	(DNS_RDATATYPEATTR_DNSSEC | DNS_RDATATYPEATTR_ZONECUTAUTH | \
  |  |  |  |   21|  6.00k|	 DNS_RDATATYPEATTR_ATCNAME)
  |  |  ------------------
  |  |  |  Branch (2513:2): [True: 6.00k, False: 539k]
  |  |  ------------------
  |  | 2514|  5.99k|	case 47: return (RRTYPE_NSEC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   24|  5.99k|	(DNS_RDATATYPEATTR_DNSSEC | DNS_RDATATYPEATTR_ZONECUTAUTH | \
  |  |  |  |   25|  5.99k|	 DNS_RDATATYPEATTR_ATCNAME)
  |  |  ------------------
  |  |  |  Branch (2514:2): [True: 5.99k, False: 539k]
  |  |  ------------------
  |  | 2515|  3.94k|	case 48: return (RRTYPE_DNSKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  3.94k|#define RRTYPE_DNSKEY_ATTRIBUTES (DNS_RDATATYPEATTR_DNSSEC)
  |  |  ------------------
  |  |  |  Branch (2515:2): [True: 3.94k, False: 541k]
  |  |  ------------------
  |  | 2516|  6.31k|	case 49: return (RRTYPE_DHCID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.31k|#define RRTYPE_DHCID_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2516:2): [True: 6.31k, False: 539k]
  |  |  ------------------
  |  | 2517|  5.67k|	case 50: return (RRTYPE_NSEC3_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   40|  5.67k|#define RRTYPE_NSEC3_ATTRIBUTES DNS_RDATATYPEATTR_DNSSEC
  |  |  ------------------
  |  |  |  Branch (2517:2): [True: 5.67k, False: 540k]
  |  |  ------------------
  |  | 2518|  2.64k|	case 51: return (RRTYPE_NSEC3PARAM_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   38|  2.64k|#define RRTYPE_NSEC3PARAM_ATTRIBUTES (DNS_RDATATYPEATTR_DNSSEC)
  |  |  ------------------
  |  |  |  Branch (2518:2): [True: 2.64k, False: 543k]
  |  |  ------------------
  |  | 2519|  3.34k|	case 52: return (RRTYPE_TLSA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.34k|#define RRTYPE_TLSA_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2519:2): [True: 3.34k, False: 542k]
  |  |  ------------------
  |  | 2520|  2.40k|	case 53: return (RRTYPE_SMIMEA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.40k|#define RRTYPE_SMIMEA_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2520:2): [True: 2.40k, False: 543k]
  |  |  ------------------
  |  | 2521|  33.4k|	case 55: return (RRTYPE_HIP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  33.4k|#define RRTYPE_HIP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2521:2): [True: 33.4k, False: 512k]
  |  |  ------------------
  |  | 2522|  2.63k|	case 56: return (RRTYPE_NINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.63k|#define RRTYPE_NINFO_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2522:2): [True: 2.63k, False: 543k]
  |  |  ------------------
  |  | 2523|  3.43k|	case 57: return (RRTYPE_RKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.43k|#define RRTYPE_RKEY_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2523:2): [True: 3.43k, False: 542k]
  |  |  ------------------
  |  | 2524|  4.85k|	case 58: return (RRTYPE_TALINK_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  4.85k|#define RRTYPE_TALINK_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2524:2): [True: 4.85k, False: 540k]
  |  |  ------------------
  |  | 2525|  3.45k|	case 59: return (RRTYPE_CDS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.45k|#define RRTYPE_CDS_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2525:2): [True: 3.45k, False: 542k]
  |  |  ------------------
  |  | 2526|  2.81k|	case 60: return (RRTYPE_CDNSKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  2.81k|#define RRTYPE_CDNSKEY_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2526:2): [True: 2.81k, False: 542k]
  |  |  ------------------
  |  | 2527|  2.49k|	case 61: return (RRTYPE_OPENPGPKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.49k|#define RRTYPE_OPENPGPKEY_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2527:2): [True: 2.49k, False: 543k]
  |  |  ------------------
  |  | 2528|  3.54k|	case 62: return (RRTYPE_CSYNC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.54k|#define RRTYPE_CSYNC_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2528:2): [True: 3.54k, False: 542k]
  |  |  ------------------
  |  | 2529|  3.57k|	case 63: return (RRTYPE_ZONEMD_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.57k|#define RRTYPE_ZONEMD_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2529:2): [True: 3.57k, False: 542k]
  |  |  ------------------
  |  | 2530|  10.1k|	case 64: return (RRTYPE_SVCB_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  10.1k|#define RRTYPE_SVCB_ATTRIBUTES (DNS_RDATATYPEATTR_FOLLOWADDITIONAL)
  |  |  ------------------
  |  |  |  Branch (2530:2): [True: 10.1k, False: 535k]
  |  |  ------------------
  |  | 2531|  7.76k|	case 65: return (RRTYPE_HTTPS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  7.76k|#define RRTYPE_HTTPS_ATTRIBUTES (DNS_RDATATYPEATTR_FOLLOWADDITIONAL)
  |  |  ------------------
  |  |  |  Branch (2531:2): [True: 7.76k, False: 537k]
  |  |  ------------------
  |  | 2532|  2.60k|	case 66: return (RRTYPE_DSYNC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   24|  2.60k|#define RRTYPE_DSYNC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2532:2): [True: 2.60k, False: 543k]
  |  |  ------------------
  |  | 2533|  1.60k|	case 67: return (RRTYPE_HHIT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.60k|#define RRTYPE_HHIT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2533:2): [True: 1.60k, False: 544k]
  |  |  ------------------
  |  | 2534|  2.17k|	case 68: return (RRTYPE_BRID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.17k|#define RRTYPE_BRID_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2534:2): [True: 2.17k, False: 543k]
  |  |  ------------------
  |  | 2535|  1.98k|	case 99: return (RRTYPE_SPF_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  1.98k|#define RRTYPE_SPF_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2535:2): [True: 1.98k, False: 543k]
  |  |  ------------------
  |  | 2536|    889|	case 100: return (0); \
  |  |  ------------------
  |  |  |  Branch (2536:2): [True: 889, False: 544k]
  |  |  ------------------
  |  | 2537|  1.22k|	case 101: return (0); \
  |  |  ------------------
  |  |  |  Branch (2537:2): [True: 1.22k, False: 544k]
  |  |  ------------------
  |  | 2538|  1.05k|	case 102: return (0); \
  |  |  ------------------
  |  |  |  Branch (2538:2): [True: 1.05k, False: 544k]
  |  |  ------------------
  |  | 2539|    992|	case 103: return (0); \
  |  |  ------------------
  |  |  |  Branch (2539:2): [True: 992, False: 544k]
  |  |  ------------------
  |  | 2540|  1.80k|	case 104: return (RRTYPE_NID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  1.80k|#define RRTYPE_NID_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2540:2): [True: 1.80k, False: 543k]
  |  |  ------------------
  |  | 2541|  2.88k|	case 105: return (RRTYPE_L32_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  2.88k|#define RRTYPE_L32_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2541:2): [True: 2.88k, False: 542k]
  |  |  ------------------
  |  | 2542|  1.64k|	case 106: return (RRTYPE_L64_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  1.64k|#define RRTYPE_L64_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2542:2): [True: 1.64k, False: 544k]
  |  |  ------------------
  |  | 2543|  1.61k|	case 107: return (RRTYPE_LP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  1.61k|#define RRTYPE_LP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2543:2): [True: 1.61k, False: 544k]
  |  |  ------------------
  |  | 2544|  1.70k|	case 108: return (RRTYPE_EUI48_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.70k|#define RRTYPE_EUI48_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2544:2): [True: 1.70k, False: 543k]
  |  |  ------------------
  |  | 2545|  2.11k|	case 109: return (RRTYPE_EUI64_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.11k|#define RRTYPE_EUI64_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2545:2): [True: 2.11k, False: 543k]
  |  |  ------------------
  |  | 2546|  4.91k|	case 249: return (RRTYPE_TKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  4.91k|#define RRTYPE_TKEY_ATTRIBUTES (DNS_RDATATYPEATTR_META)
  |  |  ------------------
  |  |  |  Branch (2546:2): [True: 4.91k, False: 540k]
  |  |  ------------------
  |  | 2547|  6.91k|	case 250: return (RRTYPE_TSIG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  6.91k|	(DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_NOTQUESTION)
  |  |  ------------------
  |  |  |  Branch (2547:2): [True: 6.91k, False: 538k]
  |  |  ------------------
  |  | 2548|  1.13k|	case 251: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2548:2): [True: 1.13k, False: 544k]
  |  |  ------------------
  |  | 2549|  1.56k|	case 252: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2549:2): [True: 1.56k, False: 544k]
  |  |  ------------------
  |  | 2550|  1.75k|	case 253: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2550:2): [True: 1.75k, False: 543k]
  |  |  ------------------
  |  | 2551|  2.01k|	case 254: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2551:2): [True: 2.01k, False: 543k]
  |  |  ------------------
  |  | 2552|  1.81k|	case 255: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2552:2): [True: 1.81k, False: 543k]
  |  |  ------------------
  |  | 2553|  2.41k|	case 256: return (RRTYPE_URI_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.41k|#define RRTYPE_URI_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2553:2): [True: 2.41k, False: 543k]
  |  |  ------------------
  |  | 2554|  2.41k|	case 257: return (RRTYPE_CAA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.41k|#define RRTYPE_CAA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2554:2): [True: 2.41k, False: 543k]
  |  |  ------------------
  |  | 2555|  1.87k|	case 258: return (RRTYPE_AVC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  1.87k|#define RRTYPE_AVC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2555:2): [True: 1.87k, False: 543k]
  |  |  ------------------
  |  | 2556|  2.62k|	case 259: return (RRTYPE_DOA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.62k|#define RRTYPE_DOA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2556:2): [True: 2.62k, False: 543k]
  |  |  ------------------
  |  | 2557|  6.33k|	case 260: return (RRTYPE_AMTRELAY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  6.33k|#define RRTYPE_AMTRELAY_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2557:2): [True: 6.33k, False: 539k]
  |  |  ------------------
  |  | 2558|  2.18k|	case 261: return (RRTYPE_RESINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.18k|#define RRTYPE_RESINFO_ATTRIBUTES (DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2558:2): [True: 2.18k, False: 543k]
  |  |  ------------------
  |  | 2559|  2.15k|	case 262: return (RRTYPE_WALLET_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.15k|#define RRTYPE_WALLET_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2559:2): [True: 2.15k, False: 543k]
  |  |  ------------------
  |  | 2560|  1.89k|	case 32768: return (RRTYPE_TA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.89k|#define RRTYPE_TA_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2560:2): [True: 1.89k, False: 543k]
  |  |  ------------------
  |  | 2561|  1.39k|	case 32769: return (RRTYPE_DLV_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.39k|#define RRTYPE_DLV_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2561:2): [True: 1.39k, False: 544k]
  |  |  ------------------
  |  | 2562|  2.74k|	case 65533: return (RRTYPE_KEYDATA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   22|  2.74k|#define RRTYPE_KEYDATA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2562:2): [True: 2.74k, False: 542k]
  |  |  ------------------
  |  | 2563|   545k|	}
  ------------------
 1509|   138k|	if (type >= (dns_rdatatype_t)128 && type <= (dns_rdatatype_t)255) {
  ------------------
  |  Branch (1509:6): [True: 120k, False: 18.1k]
  |  Branch (1509:38): [True: 6.88k, False: 113k]
  ------------------
 1510|  6.88k|		return DNS_RDATATYPEATTR_UNKNOWN | DNS_RDATATYPEATTR_META;
 1511|  6.88k|	}
 1512|   131k|	return DNS_RDATATYPEATTR_UNKNOWN;
 1513|   138k|}
dns_rdatatype_totext:
 1563|   478k|dns_rdatatype_totext(dns_rdatatype_t type, isc_buffer_t *target) {
 1564|   478k|	RDATATYPE_TOTEXT_SW
  ------------------
  |  | 2565|   478k|	switch (type) { \
  |  |  ------------------
  |  |  |  Branch (2565:10): [True: 262k, False: 216k]
  |  |  ------------------
  |  | 2566|  8.97k|	case 1: return (str_totext("A", target)); \
  |  |  ------------------
  |  |  |  Branch (2566:2): [True: 8.97k, False: 469k]
  |  |  ------------------
  |  | 2567|  4.24k|	case 2: return (str_totext("NS", target)); \
  |  |  ------------------
  |  |  |  Branch (2567:2): [True: 4.24k, False: 474k]
  |  |  ------------------
  |  | 2568|  3.23k|	case 3: return (str_totext("MD", target)); \
  |  |  ------------------
  |  |  |  Branch (2568:2): [True: 3.23k, False: 475k]
  |  |  ------------------
  |  | 2569|  2.81k|	case 4: return (str_totext("MF", target)); \
  |  |  ------------------
  |  |  |  Branch (2569:2): [True: 2.81k, False: 475k]
  |  |  ------------------
  |  | 2570|  4.26k|	case 5: return (str_totext("CNAME", target)); \
  |  |  ------------------
  |  |  |  Branch (2570:2): [True: 4.26k, False: 474k]
  |  |  ------------------
  |  | 2571|  6.50k|	case 6: return (str_totext("SOA", target)); \
  |  |  ------------------
  |  |  |  Branch (2571:2): [True: 6.50k, False: 472k]
  |  |  ------------------
  |  | 2572|  3.12k|	case 7: return (str_totext("MB", target)); \
  |  |  ------------------
  |  |  |  Branch (2572:2): [True: 3.12k, False: 475k]
  |  |  ------------------
  |  | 2573|  1.70k|	case 8: return (str_totext("MG", target)); \
  |  |  ------------------
  |  |  |  Branch (2573:2): [True: 1.70k, False: 476k]
  |  |  ------------------
  |  | 2574|  2.63k|	case 9: return (str_totext("MR", target)); \
  |  |  ------------------
  |  |  |  Branch (2574:2): [True: 2.63k, False: 475k]
  |  |  ------------------
  |  | 2575|  5.38k|	case 10: return (str_totext("NULL", target)); \
  |  |  ------------------
  |  |  |  Branch (2575:2): [True: 5.38k, False: 473k]
  |  |  ------------------
  |  | 2576|  4.54k|	case 11: return (str_totext("WKS", target)); \
  |  |  ------------------
  |  |  |  Branch (2576:2): [True: 4.54k, False: 474k]
  |  |  ------------------
  |  | 2577|  2.51k|	case 12: return (str_totext("PTR", target)); \
  |  |  ------------------
  |  |  |  Branch (2577:2): [True: 2.51k, False: 476k]
  |  |  ------------------
  |  | 2578|  2.02k|	case 13: return (str_totext("HINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2578:2): [True: 2.02k, False: 476k]
  |  |  ------------------
  |  | 2579|  2.69k|	case 14: return (str_totext("MINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2579:2): [True: 2.69k, False: 475k]
  |  |  ------------------
  |  | 2580|  2.60k|	case 15: return (str_totext("MX", target)); \
  |  |  ------------------
  |  |  |  Branch (2580:2): [True: 2.60k, False: 475k]
  |  |  ------------------
  |  | 2581|  1.98k|	case 16: return (str_totext("TXT", target)); \
  |  |  ------------------
  |  |  |  Branch (2581:2): [True: 1.98k, False: 476k]
  |  |  ------------------
  |  | 2582|  1.84k|	case 17: return (str_totext("RP", target)); \
  |  |  ------------------
  |  |  |  Branch (2582:2): [True: 1.84k, False: 476k]
  |  |  ------------------
  |  | 2583|  1.44k|	case 18: return (str_totext("AFSDB", target)); \
  |  |  ------------------
  |  |  |  Branch (2583:2): [True: 1.44k, False: 477k]
  |  |  ------------------
  |  | 2584|  1.31k|	case 19: return (str_totext("X25", target)); \
  |  |  ------------------
  |  |  |  Branch (2584:2): [True: 1.31k, False: 477k]
  |  |  ------------------
  |  | 2585|  1.70k|	case 20: return (str_totext("ISDN", target)); \
  |  |  ------------------
  |  |  |  Branch (2585:2): [True: 1.70k, False: 476k]
  |  |  ------------------
  |  | 2586|  1.29k|	case 21: return (str_totext("RT", target)); \
  |  |  ------------------
  |  |  |  Branch (2586:2): [True: 1.29k, False: 477k]
  |  |  ------------------
  |  | 2587|  3.65k|	case 22: return (str_totext("NSAP", target)); \
  |  |  ------------------
  |  |  |  Branch (2587:2): [True: 3.65k, False: 474k]
  |  |  ------------------
  |  | 2588|  2.79k|	case 23: return (str_totext("NSAP-PTR", target)); \
  |  |  ------------------
  |  |  |  Branch (2588:2): [True: 2.79k, False: 475k]
  |  |  ------------------
  |  | 2589|  4.91k|	case 24: return (str_totext("SIG", target)); \
  |  |  ------------------
  |  |  |  Branch (2589:2): [True: 4.91k, False: 473k]
  |  |  ------------------
  |  | 2590|  2.34k|	case 25: return (str_totext("KEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2590:2): [True: 2.34k, False: 476k]
  |  |  ------------------
  |  | 2591|  2.79k|	case 26: return (str_totext("PX", target)); \
  |  |  ------------------
  |  |  |  Branch (2591:2): [True: 2.79k, False: 475k]
  |  |  ------------------
  |  | 2592|  1.65k|	case 27: return (str_totext("GPOS", target)); \
  |  |  ------------------
  |  |  |  Branch (2592:2): [True: 1.65k, False: 476k]
  |  |  ------------------
  |  | 2593|  3.21k|	case 28: return (str_totext("AAAA", target)); \
  |  |  ------------------
  |  |  |  Branch (2593:2): [True: 3.21k, False: 475k]
  |  |  ------------------
  |  | 2594|  5.66k|	case 29: return (str_totext("LOC", target)); \
  |  |  ------------------
  |  |  |  Branch (2594:2): [True: 5.66k, False: 472k]
  |  |  ------------------
  |  | 2595|  2.88k|	case 30: return (str_totext("NXT", target)); \
  |  |  ------------------
  |  |  |  Branch (2595:2): [True: 2.88k, False: 475k]
  |  |  ------------------
  |  | 2596|  5.49k|	case 31: return (str_totext("EID", target)); \
  |  |  ------------------
  |  |  |  Branch (2596:2): [True: 5.49k, False: 473k]
  |  |  ------------------
  |  | 2597|  3.04k|	case 32: return (str_totext("NIMLOC", target)); \
  |  |  ------------------
  |  |  |  Branch (2597:2): [True: 3.04k, False: 475k]
  |  |  ------------------
  |  | 2598|  3.76k|	case 33: return (str_totext("SRV", target)); \
  |  |  ------------------
  |  |  |  Branch (2598:2): [True: 3.76k, False: 474k]
  |  |  ------------------
  |  | 2599|  5.59k|	case 34: return (str_totext("ATMA", target)); \
  |  |  ------------------
  |  |  |  Branch (2599:2): [True: 5.59k, False: 472k]
  |  |  ------------------
  |  | 2600|  5.35k|	case 35: return (str_totext("NAPTR", target)); \
  |  |  ------------------
  |  |  |  Branch (2600:2): [True: 5.35k, False: 473k]
  |  |  ------------------
  |  | 2601|  4.07k|	case 36: return (str_totext("KX", target)); \
  |  |  ------------------
  |  |  |  Branch (2601:2): [True: 4.07k, False: 474k]
  |  |  ------------------
  |  | 2602|  3.74k|	case 37: return (str_totext("CERT", target)); \
  |  |  ------------------
  |  |  |  Branch (2602:2): [True: 3.74k, False: 474k]
  |  |  ------------------
  |  | 2603|  4.15k|	case 38: return (str_totext("A6", target)); \
  |  |  ------------------
  |  |  |  Branch (2603:2): [True: 4.15k, False: 474k]
  |  |  ------------------
  |  | 2604|  3.14k|	case 39: return (str_totext("DNAME", target)); \
  |  |  ------------------
  |  |  |  Branch (2604:2): [True: 3.14k, False: 475k]
  |  |  ------------------
  |  | 2605|  2.41k|	case 40: return (str_totext("SINK", target)); \
  |  |  ------------------
  |  |  |  Branch (2605:2): [True: 2.41k, False: 476k]
  |  |  ------------------
  |  | 2606|  5.89k|	case 41: return (str_totext("OPT", target)); \
  |  |  ------------------
  |  |  |  Branch (2606:2): [True: 5.89k, False: 472k]
  |  |  ------------------
  |  | 2607|  4.51k|	case 42: return (str_totext("APL", target)); \
  |  |  ------------------
  |  |  |  Branch (2607:2): [True: 4.51k, False: 474k]
  |  |  ------------------
  |  | 2608|  1.85k|	case 43: return (str_totext("DS", target)); \
  |  |  ------------------
  |  |  |  Branch (2608:2): [True: 1.85k, False: 476k]
  |  |  ------------------
  |  | 2609|  2.72k|	case 44: return (str_totext("SSHFP", target)); \
  |  |  ------------------
  |  |  |  Branch (2609:2): [True: 2.72k, False: 475k]
  |  |  ------------------
  |  | 2610|  3.04k|	case 45: return (str_totext("IPSECKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2610:2): [True: 3.04k, False: 475k]
  |  |  ------------------
  |  | 2611|  5.34k|	case 46: return (str_totext("RRSIG", target)); \
  |  |  ------------------
  |  |  |  Branch (2611:2): [True: 5.34k, False: 473k]
  |  |  ------------------
  |  | 2612|  3.89k|	case 47: return (str_totext("NSEC", target)); \
  |  |  ------------------
  |  |  |  Branch (2612:2): [True: 3.89k, False: 474k]
  |  |  ------------------
  |  | 2613|  3.23k|	case 48: return (str_totext("DNSKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2613:2): [True: 3.23k, False: 475k]
  |  |  ------------------
  |  | 2614|  4.40k|	case 49: return (str_totext("DHCID", target)); \
  |  |  ------------------
  |  |  |  Branch (2614:2): [True: 4.40k, False: 474k]
  |  |  ------------------
  |  | 2615|  5.39k|	case 50: return (str_totext("NSEC3", target)); \
  |  |  ------------------
  |  |  |  Branch (2615:2): [True: 5.39k, False: 473k]
  |  |  ------------------
  |  | 2616|  1.96k|	case 51: return (str_totext("NSEC3PARAM", target)); \
  |  |  ------------------
  |  |  |  Branch (2616:2): [True: 1.96k, False: 476k]
  |  |  ------------------
  |  | 2617|  2.21k|	case 52: return (str_totext("TLSA", target)); \
  |  |  ------------------
  |  |  |  Branch (2617:2): [True: 2.21k, False: 476k]
  |  |  ------------------
  |  | 2618|  1.77k|	case 53: return (str_totext("SMIMEA", target)); \
  |  |  ------------------
  |  |  |  Branch (2618:2): [True: 1.77k, False: 476k]
  |  |  ------------------
  |  | 2619|  6.77k|	case 55: return (str_totext("HIP", target)); \
  |  |  ------------------
  |  |  |  Branch (2619:2): [True: 6.77k, False: 471k]
  |  |  ------------------
  |  | 2620|  1.94k|	case 56: return (str_totext("NINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2620:2): [True: 1.94k, False: 476k]
  |  |  ------------------
  |  | 2621|  2.36k|	case 57: return (str_totext("RKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2621:2): [True: 2.36k, False: 476k]
  |  |  ------------------
  |  | 2622|  3.66k|	case 58: return (str_totext("TALINK", target)); \
  |  |  ------------------
  |  |  |  Branch (2622:2): [True: 3.66k, False: 474k]
  |  |  ------------------
  |  | 2623|  2.41k|	case 59: return (str_totext("CDS", target)); \
  |  |  ------------------
  |  |  |  Branch (2623:2): [True: 2.41k, False: 476k]
  |  |  ------------------
  |  | 2624|  1.79k|	case 60: return (str_totext("CDNSKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2624:2): [True: 1.79k, False: 476k]
  |  |  ------------------
  |  | 2625|  1.97k|	case 61: return (str_totext("OPENPGPKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2625:2): [True: 1.97k, False: 476k]
  |  |  ------------------
  |  | 2626|  1.93k|	case 62: return (str_totext("CSYNC", target)); \
  |  |  ------------------
  |  |  |  Branch (2626:2): [True: 1.93k, False: 476k]
  |  |  ------------------
  |  | 2627|  2.62k|	case 63: return (str_totext("ZONEMD", target)); \
  |  |  ------------------
  |  |  |  Branch (2627:2): [True: 2.62k, False: 475k]
  |  |  ------------------
  |  | 2628|  5.76k|	case 64: return (str_totext("SVCB", target)); \
  |  |  ------------------
  |  |  |  Branch (2628:2): [True: 5.76k, False: 472k]
  |  |  ------------------
  |  | 2629|  5.04k|	case 65: return (str_totext("HTTPS", target)); \
  |  |  ------------------
  |  |  |  Branch (2629:2): [True: 5.04k, False: 473k]
  |  |  ------------------
  |  | 2630|  1.36k|	case 66: return (str_totext("DSYNC", target)); \
  |  |  ------------------
  |  |  |  Branch (2630:2): [True: 1.36k, False: 477k]
  |  |  ------------------
  |  | 2631|  1.03k|	case 67: return (str_totext("HHIT", target)); \
  |  |  ------------------
  |  |  |  Branch (2631:2): [True: 1.03k, False: 477k]
  |  |  ------------------
  |  | 2632|  1.33k|	case 68: return (str_totext("BRID", target)); \
  |  |  ------------------
  |  |  |  Branch (2632:2): [True: 1.33k, False: 477k]
  |  |  ------------------
  |  | 2633|  1.29k|	case 99: return (str_totext("SPF", target)); \
  |  |  ------------------
  |  |  |  Branch (2633:2): [True: 1.29k, False: 477k]
  |  |  ------------------
  |  | 2634|    681|	case 100: return (str_totext("UINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2634:2): [True: 681, False: 477k]
  |  |  ------------------
  |  | 2635|    982|	case 101: return (str_totext("UID", target)); \
  |  |  ------------------
  |  |  |  Branch (2635:2): [True: 982, False: 477k]
  |  |  ------------------
  |  | 2636|    874|	case 102: return (str_totext("GID", target)); \
  |  |  ------------------
  |  |  |  Branch (2636:2): [True: 874, False: 477k]
  |  |  ------------------
  |  | 2637|    861|	case 103: return (str_totext("UNSPEC", target)); \
  |  |  ------------------
  |  |  |  Branch (2637:2): [True: 861, False: 477k]
  |  |  ------------------
  |  | 2638|    935|	case 104: return (str_totext("NID", target)); \
  |  |  ------------------
  |  |  |  Branch (2638:2): [True: 935, False: 477k]
  |  |  ------------------
  |  | 2639|  1.46k|	case 105: return (str_totext("L32", target)); \
  |  |  ------------------
  |  |  |  Branch (2639:2): [True: 1.46k, False: 477k]
  |  |  ------------------
  |  | 2640|    852|	case 106: return (str_totext("L64", target)); \
  |  |  ------------------
  |  |  |  Branch (2640:2): [True: 852, False: 477k]
  |  |  ------------------
  |  | 2641|    962|	case 107: return (str_totext("LP", target)); \
  |  |  ------------------
  |  |  |  Branch (2641:2): [True: 962, False: 477k]
  |  |  ------------------
  |  | 2642|    871|	case 108: return (str_totext("EUI48", target)); \
  |  |  ------------------
  |  |  |  Branch (2642:2): [True: 871, False: 477k]
  |  |  ------------------
  |  | 2643|    857|	case 109: return (str_totext("EUI64", target)); \
  |  |  ------------------
  |  |  |  Branch (2643:2): [True: 857, False: 477k]
  |  |  ------------------
  |  | 2644|  2.63k|	case 249: return (str_totext("TKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2644:2): [True: 2.63k, False: 475k]
  |  |  ------------------
  |  | 2645|  3.87k|	case 250: return (str_totext("TSIG", target)); \
  |  |  ------------------
  |  |  |  Branch (2645:2): [True: 3.87k, False: 474k]
  |  |  ------------------
  |  | 2646|    740|	case 251: return (str_totext("IXFR", target)); \
  |  |  ------------------
  |  |  |  Branch (2646:2): [True: 740, False: 477k]
  |  |  ------------------
  |  | 2647|  1.14k|	case 252: return (str_totext("AXFR", target)); \
  |  |  ------------------
  |  |  |  Branch (2647:2): [True: 1.14k, False: 477k]
  |  |  ------------------
  |  | 2648|  1.16k|	case 253: return (str_totext("MAILB", target)); \
  |  |  ------------------
  |  |  |  Branch (2648:2): [True: 1.16k, False: 477k]
  |  |  ------------------
  |  | 2649|  1.57k|	case 254: return (str_totext("MAILA", target)); \
  |  |  ------------------
  |  |  |  Branch (2649:2): [True: 1.57k, False: 476k]
  |  |  ------------------
  |  | 2650|  1.77k|	case 255: return (str_totext("ANY", target)); \
  |  |  ------------------
  |  |  |  Branch (2650:2): [True: 1.77k, False: 476k]
  |  |  ------------------
  |  | 2651|  2.85k|	case 256: return (str_totext("URI", target)); \
  |  |  ------------------
  |  |  |  Branch (2651:2): [True: 2.85k, False: 475k]
  |  |  ------------------
  |  | 2652|  1.59k|	case 257: return (str_totext("CAA", target)); \
  |  |  ------------------
  |  |  |  Branch (2652:2): [True: 1.59k, False: 476k]
  |  |  ------------------
  |  | 2653|  1.29k|	case 258: return (str_totext("AVC", target)); \
  |  |  ------------------
  |  |  |  Branch (2653:2): [True: 1.29k, False: 477k]
  |  |  ------------------
  |  | 2654|  1.50k|	case 259: return (str_totext("DOA", target)); \
  |  |  ------------------
  |  |  |  Branch (2654:2): [True: 1.50k, False: 477k]
  |  |  ------------------
  |  | 2655|  3.25k|	case 260: return (str_totext("AMTRELAY", target)); \
  |  |  ------------------
  |  |  |  Branch (2655:2): [True: 3.25k, False: 475k]
  |  |  ------------------
  |  | 2656|  1.16k|	case 261: return (str_totext("RESINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2656:2): [True: 1.16k, False: 477k]
  |  |  ------------------
  |  | 2657|  1.19k|	case 262: return (str_totext("WALLET", target)); \
  |  |  ------------------
  |  |  |  Branch (2657:2): [True: 1.19k, False: 477k]
  |  |  ------------------
  |  | 2658|  1.39k|	case 32768: return (str_totext("TA", target)); \
  |  |  ------------------
  |  |  |  Branch (2658:2): [True: 1.39k, False: 477k]
  |  |  ------------------
  |  | 2659|    868|	case 32769: return (str_totext("DLV", target)); \
  |  |  ------------------
  |  |  |  Branch (2659:2): [True: 868, False: 477k]
  |  |  ------------------
  |  | 2660|   478k|	}
  ------------------
 1565|       |
 1566|   216k|	return dns_rdatatype_tounknowntext(type, target);
 1567|   478k|}
dns_rdatatype_tounknowntext:
 1570|   216k|dns_rdatatype_tounknowntext(dns_rdatatype_t type, isc_buffer_t *target) {
 1571|   216k|	char buf[sizeof("TYPE65535")];
 1572|       |
 1573|   216k|	snprintf(buf, sizeof(buf), "TYPE%u", type);
 1574|   216k|	return str_totext(buf, target);
 1575|   216k|}
dns_rdata_covers:
 2327|  8.03k|dns_rdata_covers(dns_rdata_t *rdata) {
 2328|  8.03k|	if (rdata->type == dns_rdatatype_rrsig) {
  ------------------
  |  |  160|  8.03k|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (2328:6): [True: 3.80k, False: 4.23k]
  ------------------
 2329|  3.80k|		return covers_rrsig(rdata);
 2330|  3.80k|	}
 2331|  4.23k|	return covers_sig(rdata);
 2332|  8.03k|}
rdata.c:uint8_fromregion:
 2171|   168k|uint8_fromregion(isc_region_t *region) {
 2172|   168k|	REQUIRE(region->length >= 1);
  ------------------
  |  |  198|   168k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   168k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 168k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   168k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2173|       |
 2174|   168k|	return region->base[0];
 2175|   168k|}
rdata.c:name_length:
 1608|  64.3k|name_length(const dns_name_t *name) {
 1609|  64.3k|	return name->length;
 1610|  64.3k|}
rdata.c:mem_tobuffer:
 2186|   311k|mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) {
 2187|   311k|	isc_region_t tr;
 2188|       |
 2189|   311k|	if (length == 0U) {
  ------------------
  |  Branch (2189:6): [True: 12.0k, False: 299k]
  ------------------
 2190|  12.0k|		return ISC_R_SUCCESS;
 2191|  12.0k|	}
 2192|       |
 2193|   299k|	isc_buffer_availableregion(target, &tr);
 2194|   299k|	if (length > tr.length) {
  ------------------
  |  Branch (2194:6): [True: 12.4k, False: 287k]
  ------------------
 2195|  12.4k|		return ISC_R_NOSPACE;
 2196|  12.4k|	}
 2197|   287k|	if (tr.base != base) {
  ------------------
  |  Branch (2197:6): [True: 287k, False: 0]
  ------------------
 2198|   287k|		memmove(tr.base, base, length);
 2199|   287k|	}
 2200|   287k|	isc_buffer_add(target, length);
 2201|   287k|	return ISC_R_SUCCESS;
 2202|   299k|}
rdata.c:txt_fromwire:
 1837|  77.6k|txt_fromwire(isc_buffer_t *source, isc_buffer_t *target) {
 1838|  77.6k|	unsigned int n;
 1839|  77.6k|	isc_region_t sregion;
 1840|  77.6k|	isc_region_t tregion;
 1841|       |
 1842|  77.6k|	isc_buffer_activeregion(source, &sregion);
 1843|  77.6k|	if (sregion.length == 0) {
  ------------------
  |  Branch (1843:6): [True: 45, False: 77.6k]
  ------------------
 1844|     45|		return ISC_R_UNEXPECTEDEND;
 1845|     45|	}
 1846|  77.6k|	n = *sregion.base + 1;
 1847|  77.6k|	if (n > sregion.length) {
  ------------------
  |  Branch (1847:6): [True: 54, False: 77.5k]
  ------------------
 1848|     54|		return ISC_R_UNEXPECTEDEND;
 1849|     54|	}
 1850|       |
 1851|  77.5k|	isc_buffer_availableregion(target, &tregion);
 1852|  77.5k|	if (n > tregion.length) {
  ------------------
  |  Branch (1852:6): [True: 2.11k, False: 75.4k]
  ------------------
 1853|  2.11k|		return ISC_R_NOSPACE;
 1854|  2.11k|	}
 1855|       |
 1856|  75.4k|	if (tregion.base != sregion.base) {
  ------------------
  |  Branch (1856:6): [True: 75.4k, False: 0]
  ------------------
 1857|  75.4k|		memmove(tregion.base, sregion.base, n);
 1858|  75.4k|	}
 1859|  75.4k|	isc_buffer_forward(source, n);
 1860|  75.4k|	isc_buffer_add(target, n);
 1861|  75.4k|	return ISC_R_SUCCESS;
 1862|  77.5k|}
rdata.c:check_private:
  586|  1.30k|check_private(isc_buffer_t *source, dns_secalg_t alg) {
  587|  1.30k|	isc_region_t sr;
  588|  1.30k|	if (alg == DNS_KEYALG_PRIVATEDNS) {
  ------------------
  |  Branch (588:6): [True: 901, False: 407]
  ------------------
  589|    901|		dns_fixedname_t fixed;
  590|       |
  591|    901|		RETERR(dns_name_fromwire(dns_fixedname_initname(&fixed), source,
  ------------------
  |  |  276|    901|	{                                  \
  |  |  277|    901|		isc_result_t _r = (x);     \
  |  |  278|    901|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 898]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|    901|	}
  ------------------
  592|    901|					 DNS_DECOMPRESS_NEVER, NULL));
  593|    898|	} else if (alg == DNS_KEYALG_PRIVATEOID) {
  ------------------
  |  Branch (593:13): [True: 407, False: 0]
  ------------------
  594|       |		/*
  595|       |		 * Check that we can extract the OID from the start of the
  596|       |		 * key data. We have a length byte followed by the OID BER
  597|       |		 * encoded.
  598|       |		 */
  599|    407|		const unsigned char *in = NULL;
  600|    407|		ASN1_OBJECT *obj = NULL;
  601|       |
  602|    407|		isc_buffer_activeregion(source, &sr);
  603|    407|		if (sr.length < 1 || (unsigned int)*sr.base + 1 > sr.length) {
  ------------------
  |  Branch (603:7): [True: 0, False: 407]
  |  Branch (603:24): [True: 4, False: 403]
  ------------------
  604|      4|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      4|	{                                  \
  |  |  277|      4|		isc_result_t _r = (x);     \
  |  |  278|      4|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 4, False: 0]
  |  |  ------------------
  |  |  279|      4|			return ((_r));     \
  |  |  280|      4|		}                          \
  |  |  281|      4|	}
  ------------------
  605|      0|		}
  606|    403|		in = sr.base + 1;
  607|    403|		obj = d2i_ASN1_OBJECT(NULL, &in, *sr.base);
  608|    403|		if (obj == NULL) {
  ------------------
  |  Branch (608:7): [True: 17, False: 386]
  ------------------
  609|     17|			ERR_clear_error();
  610|     17|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     17|	{                                  \
  |  |  277|     17|		isc_result_t _r = (x);     \
  |  |  278|     17|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 17, False: 0]
  |  |  ------------------
  |  |  279|     17|			return ((_r));     \
  |  |  280|     17|		}                          \
  |  |  281|     17|	}
  ------------------
  611|      0|		}
  612|    386|		ASN1_OBJECT_free(obj);
  613|    386|		if ((in - sr.base) != (*sr.base + 1)) {
  ------------------
  |  Branch (613:7): [True: 1, False: 385]
  ------------------
  614|      1|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      1|	{                                  \
  |  |  277|      1|		isc_result_t _r = (x);     \
  |  |  278|      1|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 0]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|      1|	}
  ------------------
  615|      0|		}
  616|    386|	}
  617|  1.28k|	return ISC_R_SUCCESS;
  618|  1.30k|}
rdata.c:uint32_fromregion:
 2144|  72.1k|uint32_fromregion(isc_region_t *region) {
 2145|  72.1k|	uint32_t value;
 2146|       |
 2147|  72.1k|	REQUIRE(region->length >= 4);
  ------------------
  |  |  198|  72.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  72.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 72.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  72.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2148|  72.1k|	value = (uint32_t)region->base[0] << 24;
 2149|  72.1k|	value |= (uint32_t)region->base[1] << 16;
 2150|  72.1k|	value |= (uint32_t)region->base[2] << 8;
 2151|  72.1k|	value |= (uint32_t)region->base[3];
 2152|  72.1k|	return value;
 2153|  72.1k|}
rdata.c:typemap_test:
  533|  8.75k|typemap_test(isc_region_t *sr, bool allow_empty) {
  534|  8.75k|	unsigned int window, lastwindow = 0;
  535|  8.75k|	unsigned int len;
  536|  8.75k|	bool first = true;
  537|  8.75k|	unsigned int i;
  538|       |
  539|  15.1k|	for (i = 0; i < sr->length; i += len) {
  ------------------
  |  Branch (539:14): [True: 6.49k, False: 8.64k]
  ------------------
  540|       |		/*
  541|       |		 * Check for overflow.
  542|       |		 */
  543|  6.49k|		if (i + 2 > sr->length) {
  ------------------
  |  Branch (543:7): [True: 4, False: 6.49k]
  ------------------
  544|      4|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      4|	{                                  \
  |  |  277|      4|		isc_result_t _r = (x);     \
  |  |  278|      4|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 4, False: 0]
  |  |  ------------------
  |  |  279|      4|			return ((_r));     \
  |  |  280|      4|		}                          \
  |  |  281|      4|	}
  ------------------
  545|      0|		}
  546|  6.49k|		window = sr->base[i];
  547|  6.49k|		len = sr->base[i + 1];
  548|  6.49k|		i += 2;
  549|       |		/*
  550|       |		 * Check that bitmap windows are in the correct order.
  551|       |		 */
  552|  6.49k|		if (!first && window <= lastwindow) {
  ------------------
  |  Branch (552:7): [True: 1.40k, False: 5.08k]
  |  Branch (552:17): [True: 25, False: 1.38k]
  ------------------
  553|     25|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     25|	{                                  \
  |  |  277|     25|		isc_result_t _r = (x);     \
  |  |  278|     25|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 25, False: 0]
  |  |  ------------------
  |  |  279|     25|			return ((_r));     \
  |  |  280|     25|		}                          \
  |  |  281|     25|	}
  ------------------
  554|      0|		}
  555|       |		/*
  556|       |		 * Check for legal lengths.
  557|       |		 */
  558|  6.47k|		if (len < 1 || len > 32) {
  ------------------
  |  Branch (558:7): [True: 17, False: 6.45k]
  |  Branch (558:18): [True: 26, False: 6.42k]
  ------------------
  559|     43|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     43|	{                                  \
  |  |  277|     43|		isc_result_t _r = (x);     \
  |  |  278|     43|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 43, False: 0]
  |  |  ------------------
  |  |  279|     43|			return ((_r));     \
  |  |  280|     43|		}                          \
  |  |  281|     43|	}
  ------------------
  560|      0|		}
  561|       |		/*
  562|       |		 * Check for overflow.
  563|       |		 */
  564|  6.42k|		if (i + len > sr->length) {
  ------------------
  |  Branch (564:7): [True: 25, False: 6.40k]
  ------------------
  565|     25|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     25|	{                                  \
  |  |  277|     25|		isc_result_t _r = (x);     \
  |  |  278|     25|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 25, False: 0]
  |  |  ------------------
  |  |  279|     25|			return ((_r));     \
  |  |  280|     25|		}                          \
  |  |  281|     25|	}
  ------------------
  566|      0|		}
  567|       |		/*
  568|       |		 * The last octet of the bitmap must be non zero.
  569|       |		 */
  570|  6.40k|		if (sr->base[i + len - 1] == 0) {
  ------------------
  |  Branch (570:7): [True: 8, False: 6.39k]
  ------------------
  571|      8|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      8|	{                                  \
  |  |  277|      8|		isc_result_t _r = (x);     \
  |  |  278|      8|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 8, False: 0]
  |  |  ------------------
  |  |  279|      8|			return ((_r));     \
  |  |  280|      8|		}                          \
  |  |  281|      8|	}
  ------------------
  572|      0|		}
  573|  6.39k|		lastwindow = window;
  574|  6.39k|		first = false;
  575|  6.39k|	}
  576|  8.64k|	if (i != sr->length) {
  ------------------
  |  Branch (576:6): [True: 0, False: 8.64k]
  ------------------
  577|      0|		return DNS_R_EXTRADATA;
  578|      0|	}
  579|  8.64k|	if (!allow_empty && first) {
  ------------------
  |  Branch (579:6): [True: 2.52k, False: 6.12k]
  |  Branch (579:22): [True: 2, False: 2.52k]
  ------------------
  580|      2|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      2|	{                                  \
  |  |  277|      2|		isc_result_t _r = (x);     \
  |  |  278|      2|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 0]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|      2|	}
  ------------------
  581|      0|	}
  582|  8.64k|	return ISC_R_SUCCESS;
  583|  8.64k|}
rdata.c:validate_dohpath:
  624|  2.37k|validate_dohpath(isc_region_t *region) {
  625|  2.37k|	const unsigned char *p;
  626|  2.37k|	const unsigned char *v = NULL;
  627|  2.37k|	const unsigned char *n = NULL;
  628|  2.37k|	unsigned char c;
  629|  2.37k|	bool dns = false;
  630|  2.37k|	bool wasop = false;
  631|  2.37k|	enum {
  632|  2.37k|		path,
  633|  2.37k|		variable,
  634|  2.37k|		percent1,
  635|  2.37k|		percent2,
  636|  2.37k|		variable_percent1,
  637|  2.37k|		variable_percent2,
  638|  2.37k|		prefix,
  639|  2.37k|		explode
  640|  2.37k|	} state = path;
  641|       |
  642|  2.37k|	if (region->length == 0 || *region->base != '/' ||
  ------------------
  |  Branch (642:6): [True: 1, False: 2.37k]
  |  Branch (642:29): [True: 13, False: 2.35k]
  ------------------
  643|  2.35k|	    !isc_utf8_valid(region->base, region->length))
  ------------------
  |  Branch (643:6): [True: 4, False: 2.35k]
  ------------------
  644|     18|	{
  645|     18|		return false;
  646|     18|	}
  647|       |
  648|       |	/*
  649|       |	 * RFC 6570 URI Template check + "dns" variable.
  650|       |	 */
  651|  2.35k|	p = region->base;
  652|  79.2k|	while (p < region->base + region->length) {
  ------------------
  |  Branch (652:9): [True: 76.9k, False: 2.31k]
  ------------------
  653|  76.9k|		switch (state) {
  ------------------
  |  Branch (653:11): [True: 76.9k, False: 0]
  ------------------
  654|  29.6k|		case path:
  ------------------
  |  Branch (654:3): [True: 29.6k, False: 47.2k]
  ------------------
  655|  29.6k|			switch (*p++) {
  656|  5.12k|			case '{': /*}*/
  ------------------
  |  Branch (656:4): [True: 5.12k, False: 24.5k]
  ------------------
  657|  5.12k|				state = variable;
  658|  5.12k|				wasop = false;
  659|  5.12k|				v = p;
  660|  5.12k|				break;
  661|    335|			case '%':
  ------------------
  |  Branch (661:4): [True: 335, False: 29.3k]
  ------------------
  662|    335|				state = percent1;
  663|    335|				break;
  664|  24.2k|			default:
  ------------------
  |  Branch (664:4): [True: 24.2k, False: 5.45k]
  ------------------
  665|  24.2k|				break;
  666|  29.6k|			}
  667|  29.6k|			break;
  668|  36.8k|		case variable:
  ------------------
  |  Branch (668:3): [True: 36.8k, False: 40.1k]
  ------------------
  669|  36.8k|			c = *p++;
  670|  36.8k|			switch (c) {
  671|    555|			case '+':
  ------------------
  |  Branch (671:4): [True: 555, False: 36.2k]
  ------------------
  672|    836|			case '#':
  ------------------
  |  Branch (672:4): [True: 281, False: 36.5k]
  ------------------
  673|  3.01k|			case '.':
  ------------------
  |  Branch (673:4): [True: 2.18k, False: 34.6k]
  ------------------
  674|  5.02k|			case '/':
  ------------------
  |  Branch (674:4): [True: 2.00k, False: 34.8k]
  ------------------
  675|  5.35k|			case ';':
  ------------------
  |  Branch (675:4): [True: 327, False: 36.4k]
  ------------------
  676|  6.25k|			case '?':
  ------------------
  |  Branch (676:4): [True: 905, False: 35.9k]
  ------------------
  677|  6.89k|			case '&':
  ------------------
  |  Branch (677:4): [True: 639, False: 36.1k]
  ------------------
  678|       |				/* Operators. */
  679|  6.89k|				if (p != v + 1 || wasop) {
  ------------------
  |  Branch (679:9): [True: 1, False: 6.89k]
  |  Branch (679:23): [True: 15, False: 6.87k]
  ------------------
  680|     16|					return false;
  681|     16|				}
  682|  6.87k|				wasop = true;
  683|  6.87k|				v = p;
  684|  6.87k|				break;
  685|      1|			case '=':
  ------------------
  |  Branch (685:4): [True: 1, False: 36.8k]
  ------------------
  686|      2|			case '!':
  ------------------
  |  Branch (686:4): [True: 1, False: 36.8k]
  ------------------
  687|      3|			case '@':
  ------------------
  |  Branch (687:4): [True: 1, False: 36.8k]
  ------------------
  688|      4|			case '|':
  ------------------
  |  Branch (688:4): [True: 1, False: 36.8k]
  ------------------
  689|       |				/* Reserved operators. */
  690|      4|				return false;
  691|    811|			case '*':
  ------------------
  |  Branch (691:4): [True: 811, False: 36.0k]
  ------------------
  692|  3.38k|			case ':':
  ------------------
  |  Branch (692:4): [True: 2.57k, False: 34.2k]
  ------------------
  693|  6.00k|			case '}':
  ------------------
  |  Branch (693:4): [True: 2.62k, False: 34.1k]
  ------------------
  694|  9.23k|			case ',':
  ------------------
  |  Branch (694:4): [True: 3.23k, False: 33.5k]
  ------------------
  695|       |				/* Found the end of the variable name. */
  696|  9.23k|				if (p == (v + 1)) {
  ------------------
  |  Branch (696:9): [True: 10, False: 9.22k]
  ------------------
  697|     10|					return false;
  698|     10|				}
  699|       |				/* 'p' has been incremented so 4 not 3 */
  700|  9.22k|				if ((p - v) == 4 && memcmp(v, "dns", 3) == 0) {
  ------------------
  |  Branch (700:9): [True: 3.80k, False: 5.41k]
  |  Branch (700:25): [True: 2.47k, False: 1.33k]
  ------------------
  701|  2.47k|					dns = true;
  702|  2.47k|				}
  703|  9.22k|				switch (c) {
  ------------------
  |  Branch (703:13): [True: 9.22k, False: 0]
  ------------------
  704|  2.56k|				case ':':
  ------------------
  |  Branch (704:5): [True: 2.56k, False: 6.65k]
  ------------------
  705|  2.56k|					state = prefix;
  706|  2.56k|					n = p;
  707|  2.56k|					break;
  708|  2.61k|				case /*{*/ '}':
  ------------------
  |  Branch (708:5): [True: 2.61k, False: 6.60k]
  ------------------
  709|  2.61k|					state = path;
  710|  2.61k|					break;
  711|    809|				case '*':
  ------------------
  |  Branch (711:5): [True: 809, False: 8.41k]
  ------------------
  712|    809|					state = explode;
  713|    809|					break;
  714|  3.23k|				case ',':
  ------------------
  |  Branch (714:5): [True: 3.23k, False: 5.99k]
  ------------------
  715|  3.23k|					wasop = false;
  716|  3.23k|					v = p;
  717|  3.23k|					break;
  718|  9.22k|				}
  719|  9.22k|				break;
  720|  9.22k|			case '%':
  ------------------
  |  Branch (720:4): [True: 112, False: 36.7k]
  ------------------
  721|       |				/* Percent encoded variable name. */
  722|    112|				state = variable_percent1;
  723|    112|				break;
  724|  20.5k|			default:
  ------------------
  |  Branch (724:4): [True: 20.5k, False: 16.2k]
  ------------------
  725|       |				/* Valid variable name character? */
  726|  20.5k|				if (c != '_' && !isalnum(c)) {
  ------------------
  |  Branch (726:9): [True: 20.2k, False: 355]
  |  Branch (726:21): [True: 5, False: 20.2k]
  ------------------
  727|      5|					return false;
  728|      5|				}
  729|  20.5k|				break;
  730|  36.8k|			}
  731|  36.7k|			break;
  732|  36.7k|		case explode:
  ------------------
  |  Branch (732:3): [True: 806, False: 76.1k]
  ------------------
  733|    806|			switch (*p++) {
  734|    485|			case ',':
  ------------------
  |  Branch (734:4): [True: 485, False: 321]
  ------------------
  735|    485|				state = variable;
  736|    485|				wasop = false;
  737|    485|				v = p;
  738|    485|				break;
  739|    319|			case /*}*/ '}':
  ------------------
  |  Branch (739:4): [True: 319, False: 487]
  ------------------
  740|    319|				state = path;
  741|    319|				break;
  742|      2|			default:
  ------------------
  |  Branch (742:4): [True: 2, False: 804]
  ------------------
  743|      2|				return false;
  744|    806|			}
  745|    804|			break;
  746|       |		/* Check % encoding */
  747|    804|		case percent1:
  ------------------
  |  Branch (747:3): [True: 332, False: 76.6k]
  ------------------
  748|    660|		case percent2:
  ------------------
  |  Branch (748:3): [True: 328, False: 76.6k]
  ------------------
  749|    768|		case variable_percent1:
  ------------------
  |  Branch (749:3): [True: 108, False: 76.8k]
  ------------------
  750|    873|		case variable_percent2:
  ------------------
  |  Branch (750:3): [True: 105, False: 76.8k]
  ------------------
  751|       |			/* bad percent encoding? */
  752|    873|			if (!isxdigit(*p++)) {
  ------------------
  |  Branch (752:8): [True: 1, False: 872]
  ------------------
  753|      1|				return false;
  754|      1|			}
  755|    872|			if (state == percent1) {
  ------------------
  |  Branch (755:8): [True: 331, False: 541]
  ------------------
  756|    331|				state = percent2;
  757|    541|			} else if (state == percent2) {
  ------------------
  |  Branch (757:15): [True: 328, False: 213]
  ------------------
  758|    328|				state = path;
  759|    328|			} else if (state == variable_percent1) {
  ------------------
  |  Branch (759:15): [True: 108, False: 105]
  ------------------
  760|    108|				state = variable_percent2;
  761|    108|			} else {
  762|    105|				state = variable;
  763|    105|			}
  764|    872|			break;
  765|  8.77k|		case prefix:
  ------------------
  |  Branch (765:3): [True: 8.77k, False: 68.1k]
  ------------------
  766|  8.77k|			c = *p++;
  767|  8.77k|			if (!isdigit(c)) {
  ------------------
  |  Branch (767:8): [True: 2.56k, False: 6.21k]
  ------------------
  768|       |				/* valid number range [1..9999] */
  769|  2.56k|				if ((p == n + 1) || (p - n) > 5 || *n == '0') {
  ------------------
  |  Branch (769:9): [True: 1, False: 2.55k]
  |  Branch (769:25): [True: 3, False: 2.55k]
  |  Branch (769:40): [True: 1, False: 2.55k]
  ------------------
  770|      5|					return false;
  771|      5|				}
  772|  2.55k|				switch (c) {
  773|    466|				case ',':
  ------------------
  |  Branch (773:5): [True: 466, False: 2.08k]
  ------------------
  774|    466|					state = variable;
  775|    466|					wasop = false;
  776|    466|					break;
  777|  2.08k|				case /*{*/ '}':
  ------------------
  |  Branch (777:5): [True: 2.08k, False: 467]
  ------------------
  778|  2.08k|					state = path;
  779|  2.08k|					break;
  780|      1|				default:
  ------------------
  |  Branch (780:5): [True: 1, False: 2.55k]
  ------------------
  781|      1|					return false;
  782|  2.55k|				}
  783|  2.55k|			}
  784|  8.77k|			break;
  785|  76.9k|		}
  786|  76.9k|	}
  787|  2.31k|	return state == path && dns;
  ------------------
  |  Branch (787:9): [True: 2.25k, False: 60]
  |  Branch (787:26): [True: 2.22k, False: 23]
  ------------------
  788|  2.35k|}
rdata.c:rdata_totext:
 1291|   245k|	     isc_buffer_t *target) {
 1292|   245k|	isc_result_t result = ISC_R_NOTIMPLEMENTED;
 1293|   245k|	bool use_default = false;
 1294|   245k|	unsigned int cur;
 1295|       |
 1296|   245k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   245k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   245k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 245k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   245k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1297|   245k|	REQUIRE(tctx->origin == NULL || dns_name_isabsolute(tctx->origin));
  ------------------
  |  |  198|   245k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   245k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 245k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   245k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1298|       |
 1299|       |	/*
 1300|       |	 * Some DynDNS meta-RRs have empty rdata.
 1301|       |	 */
 1302|   245k|	if ((rdata->flags & DNS_RDATA_UPDATE) != 0) {
  ------------------
  |  |  166|   245k|#define DNS_RDATA_UPDATE  0x0001 /*%< update pseudo record. */
  ------------------
  |  Branch (1302:6): [True: 2.58k, False: 243k]
  ------------------
 1303|  2.58k|		INSIST(rdata->length == 0);
  ------------------
  |  |  202|  2.58k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.58k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.58k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.58k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1304|  2.58k|		return ISC_R_SUCCESS;
 1305|  2.58k|	}
 1306|       |
 1307|   243k|	if ((tctx->flags & DNS_STYLEFLAG_UNKNOWNFORMAT) != 0) {
  ------------------
  |  |  201|   243k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (1307:6): [True: 0, False: 243k]
  ------------------
 1308|      0|		return unknown_totext(rdata, tctx, target);
 1309|      0|	}
 1310|       |
 1311|   243k|	cur = isc_buffer_usedlength(target);
  ------------------
  |  |  157|   243k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1312|       |
 1313|   243k|	TOTEXTSWITCH
  ------------------
  |  |  277|   243k|	switch (rdata->type) { \
  |  |  278|  6.71k|	case 1: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (278:2): [True: 6.71k, False: 236k]
  |  |  ------------------
  |  |  279|  1.39k|		case 1: result = totext_in_a(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (279:3): [True: 1.39k, False: 5.32k]
  |  |  ------------------
  |  |  280|    913|		case 3: result = totext_ch_a(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (280:3): [True: 913, False: 5.80k]
  |  |  ------------------
  |  |  281|    672|		case 4: result = totext_hs_a(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (281:3): [True: 672, False: 6.04k]
  |  |  ------------------
  |  |  282|  3.73k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (282:3): [True: 3.73k, False: 2.98k]
  |  |  ------------------
  |  |  283|  6.71k|		} \
  |  |  284|  6.71k|		break; \
  |  |  285|  6.71k|	case 2: result = totext_ns(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (285:2): [True: 2.66k, False: 240k]
  |  |  ------------------
  |  |  286|  6.71k|	case 3: result = totext_md(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (286:2): [True: 1.57k, False: 241k]
  |  |  ------------------
  |  |  287|  6.71k|	case 4: result = totext_mf(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (287:2): [True: 908, False: 242k]
  |  |  ------------------
  |  |  288|  6.71k|	case 5: result = totext_cname(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (288:2): [True: 2.63k, False: 240k]
  |  |  ------------------
  |  |  289|  6.71k|	case 6: result = totext_soa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (289:2): [True: 4.47k, False: 238k]
  |  |  ------------------
  |  |  290|  6.71k|	case 7: result = totext_mb(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (290:2): [True: 1.13k, False: 242k]
  |  |  ------------------
  |  |  291|  6.71k|	case 8: result = totext_mg(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (291:2): [True: 902, False: 242k]
  |  |  ------------------
  |  |  292|  6.71k|	case 9: result = totext_mr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (292:2): [True: 1.31k, False: 241k]
  |  |  ------------------
  |  |  293|  6.71k|	case 10: result = totext_null(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (293:2): [True: 4.35k, False: 238k]
  |  |  ------------------
  |  |  294|  6.71k|	case 11: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (294:2): [True: 3.30k, False: 239k]
  |  |  ------------------
  |  |  295|  1.44k|		case 1: result = totext_in_wks(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (295:3): [True: 1.44k, False: 1.86k]
  |  |  ------------------
  |  |  296|  1.86k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (296:3): [True: 1.86k, False: 1.44k]
  |  |  ------------------
  |  |  297|  3.30k|		} \
  |  |  298|  3.30k|		break; \
  |  |  299|  3.30k|	case 12: result = totext_ptr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (299:2): [True: 808, False: 242k]
  |  |  ------------------
  |  |  300|  3.30k|	case 13: result = totext_hinfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (300:2): [True: 620, False: 242k]
  |  |  ------------------
  |  |  301|  3.30k|	case 14: result = totext_minfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (301:2): [True: 1.11k, False: 242k]
  |  |  ------------------
  |  |  302|  3.30k|	case 15: result = totext_mx(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (302:2): [True: 890, False: 242k]
  |  |  ------------------
  |  |  303|  3.30k|	case 16: result = totext_txt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (303:2): [True: 1.15k, False: 241k]
  |  |  ------------------
  |  |  304|  3.30k|	case 17: result = totext_rp(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (304:2): [True: 1.08k, False: 242k]
  |  |  ------------------
  |  |  305|  3.30k|	case 18: result = totext_afsdb(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (305:2): [True: 887, False: 242k]
  |  |  ------------------
  |  |  306|  3.30k|	case 19: result = totext_x25(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (306:2): [True: 650, False: 242k]
  |  |  ------------------
  |  |  307|  3.30k|	case 20: result = totext_isdn(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (307:2): [True: 1.19k, False: 241k]
  |  |  ------------------
  |  |  308|  3.30k|	case 21: result = totext_rt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (308:2): [True: 803, False: 242k]
  |  |  ------------------
  |  |  309|  3.30k|	case 22: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (309:2): [True: 2.92k, False: 240k]
  |  |  ------------------
  |  |  310|  1.33k|		case 1: result = totext_in_nsap(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (310:3): [True: 1.33k, False: 1.59k]
  |  |  ------------------
  |  |  311|  1.59k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (311:3): [True: 1.59k, False: 1.33k]
  |  |  ------------------
  |  |  312|  2.92k|		} \
  |  |  313|  2.92k|		break; \
  |  |  314|  2.92k|	case 23: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (314:2): [True: 1.98k, False: 241k]
  |  |  ------------------
  |  |  315|    942|		case 1: result = totext_in_nsap_ptr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (315:3): [True: 942, False: 1.03k]
  |  |  ------------------
  |  |  316|  1.03k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (316:3): [True: 1.03k, False: 942]
  |  |  ------------------
  |  |  317|  1.98k|		} \
  |  |  318|  1.98k|		break; \
  |  |  319|  3.61k|	case 24: result = totext_sig(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (319:2): [True: 3.61k, False: 239k]
  |  |  ------------------
  |  |  320|  1.98k|	case 25: result = totext_key(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (320:2): [True: 1.56k, False: 241k]
  |  |  ------------------
  |  |  321|  1.98k|	case 26: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (321:2): [True: 1.98k, False: 241k]
  |  |  ------------------
  |  |  322|    876|		case 1: result = totext_in_px(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (322:3): [True: 876, False: 1.11k]
  |  |  ------------------
  |  |  323|  1.11k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (323:3): [True: 1.11k, False: 876]
  |  |  ------------------
  |  |  324|  1.98k|		} \
  |  |  325|  1.98k|		break; \
  |  |  326|  1.98k|	case 27: result = totext_gpos(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (326:2): [True: 881, False: 242k]
  |  |  ------------------
  |  |  327|  2.42k|	case 28: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (327:2): [True: 2.42k, False: 240k]
  |  |  ------------------
  |  |  328|    898|		case 1: result = totext_in_aaaa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (328:3): [True: 898, False: 1.52k]
  |  |  ------------------
  |  |  329|  1.52k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (329:3): [True: 1.52k, False: 898]
  |  |  ------------------
  |  |  330|  2.42k|		} \
  |  |  331|  2.42k|		break; \
  |  |  332|  4.86k|	case 29: result = totext_loc(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (332:2): [True: 4.86k, False: 238k]
  |  |  ------------------
  |  |  333|  2.42k|	case 30: result = totext_nxt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (333:2): [True: 2.37k, False: 240k]
  |  |  ------------------
  |  |  334|  4.75k|	case 31: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (334:2): [True: 4.75k, False: 238k]
  |  |  ------------------
  |  |  335|  2.44k|		case 1: result = totext_in_eid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (335:3): [True: 2.44k, False: 2.31k]
  |  |  ------------------
  |  |  336|  2.31k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (336:3): [True: 2.31k, False: 2.44k]
  |  |  ------------------
  |  |  337|  4.75k|		} \
  |  |  338|  4.75k|		break; \
  |  |  339|  4.75k|	case 32: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (339:2): [True: 2.22k, False: 240k]
  |  |  ------------------
  |  |  340|    682|		case 1: result = totext_in_nimloc(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (340:3): [True: 682, False: 1.54k]
  |  |  ------------------
  |  |  341|  1.54k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (341:3): [True: 1.54k, False: 682]
  |  |  ------------------
  |  |  342|  2.22k|		} \
  |  |  343|  2.22k|		break; \
  |  |  344|  2.76k|	case 33: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (344:2): [True: 2.76k, False: 240k]
  |  |  ------------------
  |  |  345|    760|		case 1: result = totext_in_srv(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (345:3): [True: 760, False: 2.00k]
  |  |  ------------------
  |  |  346|  2.00k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (346:3): [True: 2.00k, False: 760]
  |  |  ------------------
  |  |  347|  2.76k|		} \
  |  |  348|  2.76k|		break; \
  |  |  349|  4.71k|	case 34: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (349:2): [True: 4.71k, False: 238k]
  |  |  ------------------
  |  |  350|  3.03k|		case 1: result = totext_in_atma(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (350:3): [True: 3.03k, False: 1.67k]
  |  |  ------------------
  |  |  351|  1.67k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (351:3): [True: 1.67k, False: 3.03k]
  |  |  ------------------
  |  |  352|  4.71k|		} \
  |  |  353|  4.71k|		break; \
  |  |  354|  4.71k|	case 35: result = totext_naptr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (354:2): [True: 4.63k, False: 238k]
  |  |  ------------------
  |  |  355|  4.71k|	case 36: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (355:2): [True: 3.01k, False: 240k]
  |  |  ------------------
  |  |  356|  1.14k|		case 1: result = totext_in_kx(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (356:3): [True: 1.14k, False: 1.87k]
  |  |  ------------------
  |  |  357|  1.87k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (357:3): [True: 1.87k, False: 1.14k]
  |  |  ------------------
  |  |  358|  3.01k|		} \
  |  |  359|  3.01k|		break; \
  |  |  360|  3.01k|	case 37: result = totext_cert(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (360:2): [True: 2.62k, False: 240k]
  |  |  ------------------
  |  |  361|  3.19k|	case 38: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (361:2): [True: 3.19k, False: 239k]
  |  |  ------------------
  |  |  362|  1.52k|		case 1: result = totext_in_a6(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (362:3): [True: 1.52k, False: 1.67k]
  |  |  ------------------
  |  |  363|  1.67k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (363:3): [True: 1.67k, False: 1.52k]
  |  |  ------------------
  |  |  364|  3.19k|		} \
  |  |  365|  3.19k|		break; \
  |  |  366|  3.19k|	case 39: result = totext_dname(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (366:2): [True: 2.38k, False: 240k]
  |  |  ------------------
  |  |  367|  3.19k|	case 40: result = totext_sink(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (367:2): [True: 1.65k, False: 241k]
  |  |  ------------------
  |  |  368|  5.03k|	case 41: result = totext_opt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (368:2): [True: 5.03k, False: 238k]
  |  |  ------------------
  |  |  369|  3.70k|	case 42: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (369:2): [True: 3.70k, False: 239k]
  |  |  ------------------
  |  |  370|  2.44k|		case 1: result = totext_in_apl(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (370:3): [True: 2.44k, False: 1.26k]
  |  |  ------------------
  |  |  371|  1.26k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (371:3): [True: 1.26k, False: 2.44k]
  |  |  ------------------
  |  |  372|  3.70k|		} \
  |  |  373|  3.70k|		break; \
  |  |  374|  3.70k|	case 43: result = totext_ds(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (374:2): [True: 912, False: 242k]
  |  |  ------------------
  |  |  375|  3.70k|	case 44: result = totext_sshfp(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (375:2): [True: 1.76k, False: 241k]
  |  |  ------------------
  |  |  376|  3.70k|	case 45: result = totext_ipseckey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (376:2): [True: 2.07k, False: 241k]
  |  |  ------------------
  |  |  377|  3.70k|	case 46: result = totext_rrsig(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (377:2): [True: 3.37k, False: 239k]
  |  |  ------------------
  |  |  378|  3.70k|	case 47: result = totext_nsec(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (378:2): [True: 2.26k, False: 240k]
  |  |  ------------------
  |  |  379|  3.70k|	case 48: result = totext_dnskey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (379:2): [True: 2.25k, False: 240k]
  |  |  ------------------
  |  |  380|  3.70k|	case 49: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (380:2): [True: 3.55k, False: 239k]
  |  |  ------------------
  |  |  381|    731|		case 1: result = totext_in_dhcid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (381:3): [True: 731, False: 2.82k]
  |  |  ------------------
  |  |  382|  2.82k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (382:3): [True: 2.82k, False: 731]
  |  |  ------------------
  |  |  383|  3.55k|		} \
  |  |  384|  3.55k|		break; \
  |  |  385|  3.57k|	case 50: result = totext_nsec3(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (385:2): [True: 3.57k, False: 239k]
  |  |  ------------------
  |  |  386|  3.55k|	case 51: result = totext_nsec3param(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (386:2): [True: 1.10k, False: 242k]
  |  |  ------------------
  |  |  387|  3.55k|	case 52: result = totext_tlsa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (387:2): [True: 1.42k, False: 241k]
  |  |  ------------------
  |  |  388|  3.55k|	case 53: result = totext_smimea(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (388:2): [True: 886, False: 242k]
  |  |  ------------------
  |  |  389|  6.35k|	case 55: result = totext_hip(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (389:2): [True: 6.35k, False: 236k]
  |  |  ------------------
  |  |  390|  3.55k|	case 56: result = totext_ninfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (390:2): [True: 949, False: 242k]
  |  |  ------------------
  |  |  391|  3.55k|	case 57: result = totext_rkey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (391:2): [True: 1.29k, False: 241k]
  |  |  ------------------
  |  |  392|  3.55k|	case 58: result = totext_talink(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (392:2): [True: 2.40k, False: 240k]
  |  |  ------------------
  |  |  393|  3.55k|	case 59: result = totext_cds(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (393:2): [True: 1.35k, False: 241k]
  |  |  ------------------
  |  |  394|  3.55k|	case 60: result = totext_cdnskey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (394:2): [True: 1.15k, False: 241k]
  |  |  ------------------
  |  |  395|  3.55k|	case 61: result = totext_openpgpkey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (395:2): [True: 1.07k, False: 242k]
  |  |  ------------------
  |  |  396|  3.55k|	case 62: result = totext_csync(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (396:2): [True: 1.46k, False: 241k]
  |  |  ------------------
  |  |  397|  3.55k|	case 63: result = totext_zonemd(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (397:2): [True: 1.20k, False: 241k]
  |  |  ------------------
  |  |  398|  5.43k|	case 64: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (398:2): [True: 5.43k, False: 237k]
  |  |  ------------------
  |  |  399|  3.44k|		case 1: result = totext_in_svcb(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (399:3): [True: 3.44k, False: 1.98k]
  |  |  ------------------
  |  |  400|  1.98k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (400:3): [True: 1.98k, False: 3.44k]
  |  |  ------------------
  |  |  401|  5.43k|		} \
  |  |  402|  5.43k|		break; \
  |  |  403|  5.43k|	case 65: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (403:2): [True: 4.61k, False: 238k]
  |  |  ------------------
  |  |  404|  2.57k|		case 1: result = totext_in_https(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (404:3): [True: 2.57k, False: 2.03k]
  |  |  ------------------
  |  |  405|  2.03k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (405:3): [True: 2.03k, False: 2.57k]
  |  |  ------------------
  |  |  406|  4.61k|		} \
  |  |  407|  4.61k|		break; \
  |  |  408|  4.61k|	case 66: result = totext_dsync(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (408:2): [True: 1.02k, False: 242k]
  |  |  ------------------
  |  |  409|  4.61k|	case 67: result = totext_hhit(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (409:2): [True: 750, False: 242k]
  |  |  ------------------
  |  |  410|  4.61k|	case 68: result = totext_brid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (410:2): [True: 784, False: 242k]
  |  |  ------------------
  |  |  411|  4.61k|	case 99: result = totext_spf(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (411:2): [True: 893, False: 242k]
  |  |  ------------------
  |  |  412|  4.61k|	case 104: result = totext_nid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (412:2): [True: 795, False: 242k]
  |  |  ------------------
  |  |  413|  4.61k|	case 105: result = totext_l32(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (413:2): [True: 1.34k, False: 241k]
  |  |  ------------------
  |  |  414|  4.61k|	case 106: result = totext_l64(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (414:2): [True: 727, False: 242k]
  |  |  ------------------
  |  |  415|  4.61k|	case 107: result = totext_lp(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (415:2): [True: 840, False: 242k]
  |  |  ------------------
  |  |  416|  4.61k|	case 108: result = totext_eui48(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (416:2): [True: 745, False: 242k]
  |  |  ------------------
  |  |  417|  4.61k|	case 109: result = totext_eui64(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (417:2): [True: 688, False: 242k]
  |  |  ------------------
  |  |  418|  4.61k|	case 249: result = totext_tkey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (418:2): [True: 1.91k, False: 241k]
  |  |  ------------------
  |  |  419|  4.61k|	case 250: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (419:2): [True: 3.81k, False: 239k]
  |  |  ------------------
  |  |  420|  1.18k|		case 255: result = totext_any_tsig(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (420:3): [True: 1.18k, False: 2.63k]
  |  |  ------------------
  |  |  421|  2.63k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (421:3): [True: 2.63k, False: 1.18k]
  |  |  ------------------
  |  |  422|  3.81k|		} \
  |  |  423|  3.81k|		break; \
  |  |  424|  3.81k|	case 256: result = totext_uri(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (424:2): [True: 1.43k, False: 241k]
  |  |  ------------------
  |  |  425|  3.81k|	case 257: result = totext_caa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (425:2): [True: 783, False: 242k]
  |  |  ------------------
  |  |  426|  3.81k|	case 258: result = totext_avc(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (426:2): [True: 982, False: 242k]
  |  |  ------------------
  |  |  427|  3.81k|	case 259: result = totext_doa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (427:2): [True: 1.29k, False: 241k]
  |  |  ------------------
  |  |  428|  3.81k|	case 260: result = totext_amtrelay(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (428:2): [True: 3.09k, False: 240k]
  |  |  ------------------
  |  |  429|  3.81k|	case 261: result = totext_resinfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (429:2): [True: 911, False: 242k]
  |  |  ------------------
  |  |  430|  3.81k|	case 262: result = totext_wallet(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (430:2): [True: 959, False: 242k]
  |  |  ------------------
  |  |  431|  3.81k|	case 32768: result = totext_ta(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (431:2): [True: 775, False: 242k]
  |  |  ------------------
  |  |  432|  3.81k|	case 32769: result = totext_dlv(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (432:2): [True: 772, False: 242k]
  |  |  ------------------
  |  |  433|  3.81k|	case 65533: result = totext_keydata(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (433:2): [True: 1.58k, False: 241k]
  |  |  ------------------
  |  |  434|  63.2k|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (434:2): [True: 63.2k, False: 179k]
  |  |  ------------------
  |  |  435|   243k|	}
  ------------------
 1314|       |
 1315|   243k|	if (use_default || (result == ISC_R_NOTIMPLEMENTED)) {
  ------------------
  |  Branch (1315:6): [True: 95.9k, False: 147k]
  |  Branch (1315:21): [True: 3.76k, False: 143k]
  ------------------
 1316|  99.6k|		unsigned int u = isc_buffer_usedlength(target);
  ------------------
  |  |  157|  99.6k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1317|       |
 1318|  99.6k|		INSIST(u >= cur);
  ------------------
  |  |  202|  99.6k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  99.6k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 99.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  99.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1319|  99.6k|		isc_buffer_subtract(target, u - cur);
 1320|  99.6k|		result = unknown_totext(rdata, tctx, target);
 1321|  99.6k|	}
 1322|       |
 1323|   243k|	return result;
 1324|   243k|}
rdata.c:unknown_totext:
 1254|   105k|	       isc_buffer_t *target) {
 1255|   105k|	isc_result_t result = ISC_R_SUCCESS;
 1256|   105k|	char buf[sizeof("65535")];
 1257|   105k|	isc_region_t sr;
 1258|       |
 1259|   105k|	strlcpy(buf, "\\# ", sizeof(buf));
 1260|   105k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   105k|	{                                  \
  |  |  277|   105k|		isc_result_t _r = (x);     \
  |  |  278|   105k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 105k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   105k|	}
  ------------------
 1261|       |
 1262|   105k|	dns_rdata_toregion(rdata, &sr);
 1263|   105k|	INSIST(sr.length < 65536);
  ------------------
  |  |  202|   105k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   105k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 105k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   105k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1264|   105k|	snprintf(buf, sizeof(buf), "%u", sr.length);
 1265|   105k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   105k|	{                                  \
  |  |  277|   105k|		isc_result_t _r = (x);     \
  |  |  278|   105k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 105k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   105k|	}
  ------------------
 1266|       |
 1267|   105k|	if (sr.length != 0U) {
  ------------------
  |  Branch (1267:6): [True: 53.8k, False: 51.8k]
  ------------------
 1268|  53.8k|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  53.8k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (1268:7): [True: 0, False: 53.8k]
  ------------------
 1269|      0|			RETERR(str_totext(" ( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 1270|  53.8k|		} else {
 1271|  53.8k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  53.8k|	{                                  \
  |  |  277|  53.8k|		isc_result_t _r = (x);     \
  |  |  278|  53.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 53.8k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  53.8k|	}
  ------------------
 1272|  53.8k|		}
 1273|       |
 1274|  53.8k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (1274:7): [True: 0, False: 53.8k]
  ------------------
 1275|      0|			result = isc_hex_totext(&sr, 0, "", target);
 1276|  53.8k|		} else {
 1277|  53.8k|			result = isc_hex_totext(&sr, tctx->width - 2,
 1278|  53.8k|						tctx->linebreak, target);
 1279|  53.8k|		}
 1280|  53.8k|		if (result == ISC_R_SUCCESS &&
  ------------------
  |  Branch (1280:7): [True: 53.8k, False: 0]
  ------------------
 1281|  53.8k|		    (tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
  ------------------
  |  |  191|  53.8k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (1281:7): [True: 0, False: 53.8k]
  ------------------
 1282|      0|		{
 1283|      0|			result = str_totext(" )", target);
 1284|      0|		}
 1285|  53.8k|	}
 1286|   105k|	return result;
 1287|   105k|}
rdata.c:inet_totext:
 2051|  9.67k|inet_totext(int af, uint32_t flags, isc_region_t *src, isc_buffer_t *target) {
 2052|  9.67k|	char tmpbuf[64];
 2053|       |
 2054|       |	/* Note - inet_ntop doesn't do size checking on its input. */
 2055|  9.67k|	if (inet_ntop(af, src->base, tmpbuf, sizeof(tmpbuf)) == NULL) {
  ------------------
  |  Branch (2055:6): [True: 0, False: 9.67k]
  ------------------
 2056|      0|		return ISC_R_NOSPACE;
 2057|      0|	}
 2058|  9.67k|	if (strlen(tmpbuf) > isc_buffer_availablelength(target)) {
  ------------------
  |  |  161|  9.67k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (2058:6): [True: 0, False: 9.67k]
  ------------------
 2059|      0|		return ISC_R_NOSPACE;
 2060|      0|	}
 2061|  9.67k|	isc_buffer_putstr(target, tmpbuf);
 2062|       |
 2063|       |	/*
 2064|       |	 * An IPv6 address ending in "::" breaks YAML
 2065|       |	 * parsing, so append 0 in that case.
 2066|       |	 */
 2067|  9.67k|	if (af == AF_INET6 && (flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  3.39k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (2067:6): [True: 3.39k, False: 6.28k]
  |  Branch (2067:24): [True: 0, False: 3.39k]
  ------------------
 2068|      0|		isc_region_t r;
 2069|      0|		isc_buffer_usedregion(target, &r);
 2070|      0|		if (r.length > 0 && r.base[r.length - 1] == ':') {
  ------------------
  |  Branch (2070:7): [True: 0, False: 0]
  |  Branch (2070:23): [True: 0, False: 0]
  ------------------
 2071|      0|			if (isc_buffer_availablelength(target) == 0) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (2071:8): [True: 0, False: 0]
  ------------------
 2072|      0|				return ISC_R_NOSPACE;
 2073|      0|			}
 2074|      0|			isc_buffer_putmem(target, (const unsigned char *)"0",
 2075|      0|					  1);
 2076|      0|		}
 2077|      0|	}
 2078|       |
 2079|  9.67k|	return ISC_R_SUCCESS;
 2080|  9.67k|}
rdata.c:name_prefix:
 1997|  63.0k|name_prefix(dns_name_t *name, const dns_name_t *origin, dns_name_t *target) {
 1998|  63.0k|	int l1, l2;
 1999|       |
 2000|  63.0k|	if (origin == NULL) {
  ------------------
  |  Branch (2000:6): [True: 63.0k, False: 0]
  ------------------
 2001|  63.0k|		goto return_false;
 2002|  63.0k|	}
 2003|       |
 2004|      0|	if (dns_name_compare(origin, dns_rootname) == 0) {
  ------------------
  |  Branch (2004:6): [True: 0, False: 0]
  ------------------
 2005|      0|		goto return_false;
 2006|      0|	}
 2007|       |
 2008|      0|	if (!dns_name_issubdomain(name, origin)) {
  ------------------
  |  Branch (2008:6): [True: 0, False: 0]
  ------------------
 2009|      0|		goto return_false;
 2010|      0|	}
 2011|       |
 2012|      0|	l1 = dns_name_countlabels(name);
 2013|      0|	l2 = dns_name_countlabels(origin);
 2014|       |
 2015|      0|	if (l1 == l2) {
  ------------------
  |  Branch (2015:6): [True: 0, False: 0]
  ------------------
 2016|      0|		goto return_false;
 2017|      0|	}
 2018|       |
 2019|       |	/* Master files should be case preserving. */
 2020|      0|	dns_name_getlabelsequence(name, l1 - l2, l2, target);
 2021|      0|	if (!dns_name_caseequal(origin, target)) {
  ------------------
  |  Branch (2021:6): [True: 0, False: 0]
  ------------------
 2022|      0|		goto return_false;
 2023|      0|	}
 2024|       |
 2025|      0|	dns_name_getlabelsequence(name, 0, l1 - l2, target);
 2026|      0|	return true;
 2027|       |
 2028|  63.0k|return_false:
 2029|  63.0k|	*target = *name;
 2030|       |	return false;
 2031|      0|}
rdata.c:txt_totext:
 1707|  59.6k|txt_totext(isc_region_t *source, bool quote, isc_buffer_t *target) {
 1708|       |	return commatxt_totext(source, quote, false, target);
 1709|  59.6k|}
rdata.c:commatxt_totext:
 1614|  60.7k|		isc_buffer_t *target) {
 1615|  60.7k|	unsigned int tl;
 1616|  60.7k|	unsigned int n;
 1617|  60.7k|	unsigned char *sp;
 1618|  60.7k|	char *tp;
 1619|  60.7k|	isc_region_t region;
 1620|       |
 1621|  60.7k|	isc_buffer_availableregion(target, &region);
 1622|  60.7k|	sp = source->base;
 1623|  60.7k|	tp = (char *)region.base;
 1624|  60.7k|	tl = region.length;
 1625|       |
 1626|  60.7k|	n = *sp++;
 1627|       |
 1628|  60.7k|	REQUIRE(n + 1 <= source->length);
  ------------------
  |  |  198|  60.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  60.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 60.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  60.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1629|  60.7k|	if (n == 0U) {
  ------------------
  |  Branch (1629:6): [True: 38.1k, False: 22.5k]
  ------------------
 1630|  38.1k|		REQUIRE(quote);
  ------------------
  |  |  198|  38.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  38.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 38.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  38.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1631|  38.1k|	}
 1632|       |
 1633|  60.7k|	if (quote) {
  ------------------
  |  Branch (1633:6): [True: 58.9k, False: 1.82k]
  ------------------
 1634|  58.9k|		if (tl < 1) {
  ------------------
  |  Branch (1634:7): [True: 0, False: 58.9k]
  ------------------
 1635|      0|			return ISC_R_NOSPACE;
 1636|      0|		}
 1637|  58.9k|		*tp++ = '"';
 1638|  58.9k|		tl--;
 1639|  58.9k|	}
 1640|  1.00M|	while (n--) {
  ------------------
  |  Branch (1640:9): [True: 942k, False: 60.7k]
  ------------------
 1641|       |		/*
 1642|       |		 * \DDD space (0x20) if not quoting.
 1643|       |		 */
 1644|   942k|		if (*sp < (quote ? ' ' : '!') || *sp >= 0x7f) {
  ------------------
  |  Branch (1644:7): [True: 394k, False: 547k]
  |  Branch (1644:14): [True: 933k, False: 8.99k]
  |  Branch (1644:36): [True: 155k, False: 391k]
  ------------------
 1645|   550k|			if (tl < 4) {
  ------------------
  |  Branch (1645:8): [True: 0, False: 550k]
  ------------------
 1646|      0|				return ISC_R_NOSPACE;
 1647|      0|			}
 1648|   550k|			*tp++ = '\\';
 1649|   550k|			*tp++ = '0' + ((*sp / 100) % 10);
 1650|   550k|			*tp++ = '0' + ((*sp / 10) % 10);
 1651|   550k|			*tp++ = '0' + (*sp % 10);
 1652|   550k|			sp++;
 1653|   550k|			tl -= 4;
 1654|   550k|			continue;
 1655|   550k|		}
 1656|       |		/*
 1657|       |		 * Escape double quote and backslash.  If we are not
 1658|       |		 * enclosing the string in double quotes, also escape
 1659|       |		 * at sign (@) and semicolon (;) unless comma is set.
 1660|       |		 * If comma is set, then only escape commas (,).
 1661|       |		 */
 1662|   391k|		if (*sp == '"' || *sp == '\\' || (comma && *sp == ',') ||
  ------------------
  |  Branch (1662:7): [True: 3.74k, False: 387k]
  |  Branch (1662:21): [True: 21.4k, False: 366k]
  |  Branch (1662:37): [True: 1.30k, False: 365k]
  |  Branch (1662:46): [True: 235, False: 1.07k]
  ------------------
 1663|   366k|		    (!comma && !quote && (*sp == '@' || *sp == ';')))
  ------------------
  |  Branch (1663:8): [True: 365k, False: 1.07k]
  |  Branch (1663:18): [True: 1.63k, False: 363k]
  |  Branch (1663:29): [True: 0, False: 1.63k]
  |  Branch (1663:43): [True: 0, False: 1.63k]
  ------------------
 1664|  25.3k|		{
 1665|  25.3k|			if (tl < 2) {
  ------------------
  |  Branch (1665:8): [True: 0, False: 25.3k]
  ------------------
 1666|      0|				return ISC_R_NOSPACE;
 1667|      0|			}
 1668|  25.3k|			*tp++ = '\\';
 1669|  25.3k|			tl--;
 1670|       |			/*
 1671|       |			 * Perform comma escape processing.
 1672|       |			 * ',' => '\\,'
 1673|       |			 * '\' => '\\\\'
 1674|       |			 */
 1675|  25.3k|			if (comma && (*sp == ',' || *sp == '\\')) {
  ------------------
  |  Branch (1675:8): [True: 1.60k, False: 23.7k]
  |  Branch (1675:18): [True: 235, False: 1.37k]
  |  Branch (1675:32): [True: 1.08k, False: 284]
  ------------------
 1676|  1.32k|				if (tl < ((*sp == '\\') ? 3 : 2)) {
  ------------------
  |  Branch (1676:9): [True: 0, False: 1.32k]
  |  Branch (1676:15): [True: 1.08k, False: 235]
  ------------------
 1677|      0|					return ISC_R_NOSPACE;
 1678|      0|				}
 1679|  1.32k|				*tp++ = '\\';
 1680|  1.32k|				tl--;
 1681|  1.32k|				if (*sp == '\\') {
  ------------------
  |  Branch (1681:9): [True: 1.08k, False: 235]
  ------------------
 1682|  1.08k|					*tp++ = '\\';
 1683|  1.08k|					tl--;
 1684|  1.08k|				}
 1685|  1.32k|			}
 1686|  25.3k|		}
 1687|   391k|		if (tl < 1) {
  ------------------
  |  Branch (1687:7): [True: 0, False: 391k]
  ------------------
 1688|      0|			return ISC_R_NOSPACE;
 1689|      0|		}
 1690|   391k|		*tp++ = *sp++;
 1691|   391k|		tl--;
 1692|   391k|	}
 1693|  60.7k|	if (quote) {
  ------------------
  |  Branch (1693:6): [True: 58.9k, False: 1.82k]
  ------------------
 1694|  58.9k|		if (tl < 1) {
  ------------------
  |  Branch (1694:7): [True: 0, False: 58.9k]
  ------------------
 1695|      0|			return ISC_R_NOSPACE;
 1696|      0|		}
 1697|  58.9k|		*tp++ = '"';
 1698|  58.9k|		tl--;
 1699|  58.9k|		POST(tl);
  ------------------
  |  |   74|  58.9k|#define POST(x) (void)(x)
  ------------------
 1700|  58.9k|	}
 1701|  60.7k|	isc_buffer_add(target, (unsigned int)(tp - (char *)region.base));
 1702|  60.7k|	isc_region_consume(source, *source->base + 1);
  ------------------
  |  |   50|  60.7k|	do {                              \
  |  |   51|  60.7k|		isc_region_t *_r = (r);   \
  |  |   52|  60.7k|		unsigned int  _l = (l);   \
  |  |   53|  60.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  60.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  60.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 60.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  60.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  60.7k|		_r->base += _l;           \
  |  |   55|  60.7k|		_r->length -= _l;         \
  |  |   56|  60.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 60.7k]
  |  |  ------------------
  ------------------
 1703|  60.7k|	return ISC_R_SUCCESS;
 1704|  60.7k|}
rdata.c:typemap_totext:
  487|  7.30k|	       isc_buffer_t *target) {
  488|  7.30k|	unsigned int i, j, k;
  489|  7.30k|	unsigned int window, len;
  490|  7.30k|	bool first = true;
  491|       |
  492|  12.4k|	for (i = 0; i < sr->length; i += len) {
  ------------------
  |  Branch (492:14): [True: 5.18k, False: 7.30k]
  ------------------
  493|  5.18k|		if (tctx != NULL &&
  ------------------
  |  Branch (493:7): [True: 1.55k, False: 3.63k]
  ------------------
  494|  1.55k|		    (tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
  ------------------
  |  |  191|  1.55k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (494:7): [True: 0, False: 1.55k]
  ------------------
  495|      0|		{
  496|      0|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  497|      0|			first = true;
  498|      0|		}
  499|  5.18k|		INSIST(i + 2 <= sr->length);
  ------------------
  |  |  202|  5.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  5.18k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 5.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  500|  5.18k|		window = sr->base[i];
  501|  5.18k|		len = sr->base[i + 1];
  502|  5.18k|		INSIST(len > 0 && len <= 32);
  ------------------
  |  |  202|  5.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  10.3k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 5.18k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 5.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  503|  5.18k|		i += 2;
  504|  5.18k|		INSIST(i + len <= sr->length);
  ------------------
  |  |  202|  5.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  5.18k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 5.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  505|  41.0k|		for (j = 0; j < len; j++) {
  ------------------
  |  Branch (505:15): [True: 35.8k, False: 5.18k]
  ------------------
  506|  35.8k|			dns_rdatatype_t t;
  507|  35.8k|			if (sr->base[i + j] == 0) {
  ------------------
  |  Branch (507:8): [True: 8.64k, False: 27.2k]
  ------------------
  508|  8.64k|				continue;
  509|  8.64k|			}
  510|   244k|			for (k = 0; k < 8; k++) {
  ------------------
  |  Branch (510:16): [True: 217k, False: 27.2k]
  ------------------
  511|   217k|				if ((sr->base[i + j] & (0x80 >> k)) == 0) {
  ------------------
  |  Branch (511:9): [True: 118k, False: 99.3k]
  ------------------
  512|   118k|					continue;
  513|   118k|				}
  514|  99.3k|				t = window * 256 + j * 8 + k;
  515|  99.3k|				if (!first) {
  ------------------
  |  Branch (515:9): [True: 95.4k, False: 3.93k]
  ------------------
  516|  95.4k|					RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  95.4k|	{                                  \
  |  |  277|  95.4k|		isc_result_t _r = (x);     \
  |  |  278|  95.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 95.4k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  95.4k|	}
  ------------------
  517|  95.4k|				}
  518|  99.3k|				first = false;
  519|  99.3k|				if (dns_rdatatype_isknown(t)) {
  ------------------
  |  Branch (519:9): [True: 42.6k, False: 56.6k]
  ------------------
  520|  42.6k|					RETERR(dns_rdatatype_totext(t, target));
  ------------------
  |  |  276|  42.6k|	{                                  \
  |  |  277|  42.6k|		isc_result_t _r = (x);     \
  |  |  278|  42.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 42.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  42.6k|	}
  ------------------
  521|  56.6k|				} else {
  522|  56.6k|					char buf[sizeof("TYPE65535")];
  523|  56.6k|					snprintf(buf, sizeof(buf), "TYPE%u", t);
  524|  56.6k|					RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  56.6k|	{                                  \
  |  |  277|  56.6k|		isc_result_t _r = (x);     \
  |  |  278|  56.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 56.6k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  56.6k|	}
  ------------------
  525|  56.6k|				}
  526|  99.3k|			}
  527|  27.2k|		}
  528|  5.18k|	}
  529|  7.30k|	return ISC_R_SUCCESS;
  530|  7.30k|}
rdata.c:multitxt_totext:
 1868|  5.42k|multitxt_totext(isc_region_t *source, isc_buffer_t *target) {
 1869|  5.42k|	unsigned int tl;
 1870|  5.42k|	unsigned int n0, n;
 1871|  5.42k|	unsigned char *sp;
 1872|  5.42k|	char *tp;
 1873|  5.42k|	isc_region_t region;
 1874|       |
 1875|  5.42k|	isc_buffer_availableregion(target, &region);
 1876|  5.42k|	sp = source->base;
 1877|  5.42k|	tp = (char *)region.base;
 1878|  5.42k|	tl = region.length;
 1879|       |
 1880|  5.42k|	if (tl < 1) {
  ------------------
  |  Branch (1880:6): [True: 0, False: 5.42k]
  ------------------
 1881|      0|		return ISC_R_NOSPACE;
 1882|      0|	}
 1883|  5.42k|	*tp++ = '"';
 1884|  5.42k|	tl--;
 1885|  5.42k|	do {
 1886|  5.42k|		n = source->length;
 1887|  5.42k|		n0 = source->length - 1;
 1888|       |
 1889|   522k|		while (n--) {
  ------------------
  |  Branch (1889:10): [True: 517k, False: 5.42k]
  ------------------
 1890|   517k|			if (*sp < ' ' || *sp >= 0x7f) {
  ------------------
  |  Branch (1890:8): [True: 335k, False: 181k]
  |  Branch (1890:21): [True: 60.7k, False: 120k]
  ------------------
 1891|   396k|				if (tl < 4) {
  ------------------
  |  Branch (1891:9): [True: 0, False: 396k]
  ------------------
 1892|      0|					return ISC_R_NOSPACE;
 1893|      0|				}
 1894|   396k|				*tp++ = '\\';
 1895|   396k|				*tp++ = '0' + ((*sp / 100) % 10);
 1896|   396k|				*tp++ = '0' + ((*sp / 10) % 10);
 1897|   396k|				*tp++ = '0' + (*sp % 10);
 1898|   396k|				sp++;
 1899|   396k|				tl -= 4;
 1900|   396k|				continue;
 1901|   396k|			}
 1902|       |			/* double quote, backslash */
 1903|   120k|			if (*sp == '"' || *sp == '\\') {
  ------------------
  |  Branch (1903:8): [True: 2.03k, False: 118k]
  |  Branch (1903:22): [True: 1.66k, False: 116k]
  ------------------
 1904|  3.69k|				if (tl < 2) {
  ------------------
  |  Branch (1904:9): [True: 0, False: 3.69k]
  ------------------
 1905|      0|					return ISC_R_NOSPACE;
 1906|      0|				}
 1907|  3.69k|				*tp++ = '\\';
 1908|  3.69k|				tl--;
 1909|  3.69k|			}
 1910|   120k|			if (tl < 1) {
  ------------------
  |  Branch (1910:8): [True: 0, False: 120k]
  ------------------
 1911|      0|				return ISC_R_NOSPACE;
 1912|      0|			}
 1913|   120k|			*tp++ = *sp++;
 1914|   120k|			tl--;
 1915|   120k|		}
 1916|  5.42k|		isc_region_consume(source, n0 + 1);
  ------------------
  |  |   50|  5.42k|	do {                              \
  |  |   51|  5.42k|		isc_region_t *_r = (r);   \
  |  |   52|  5.42k|		unsigned int  _l = (l);   \
  |  |   53|  5.42k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.42k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.42k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.42k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.42k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.42k|		_r->base += _l;           \
  |  |   55|  5.42k|		_r->length -= _l;         \
  |  |   56|  5.42k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.42k]
  |  |  ------------------
  ------------------
 1917|  5.42k|	} while (source->length != 0);
  ------------------
  |  Branch (1917:11): [True: 0, False: 5.42k]
  ------------------
 1918|  5.42k|	if (tl < 1) {
  ------------------
  |  Branch (1918:6): [True: 0, False: 5.42k]
  ------------------
 1919|      0|		return ISC_R_NOSPACE;
 1920|      0|	}
 1921|  5.42k|	*tp++ = '"';
 1922|  5.42k|	tl--;
 1923|  5.42k|	POST(tl);
  ------------------
  |  |   74|  5.42k|#define POST(x) (void)(x)
  ------------------
 1924|  5.42k|	isc_buffer_add(target, (unsigned int)(tp - (char *)region.base));
 1925|  5.42k|	return ISC_R_SUCCESS;
 1926|  5.42k|}
rdata.c:uint8_consume_fromregion:
 2178|    783|uint8_consume_fromregion(isc_region_t *region) {
 2179|    783|	uint8_t r = uint8_fromregion(region);
 2180|       |
 2181|    783|	isc_region_consume(region, 1);
  ------------------
  |  |   50|    783|	do {                              \
  |  |   51|    783|		isc_region_t *_r = (r);   \
  |  |   52|    783|		unsigned int  _l = (l);   \
  |  |   53|    783|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    783|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    783|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 783, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    783|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    783|		_r->base += _l;           \
  |  |   55|    783|		_r->length -= _l;         \
  |  |   56|    783|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 783]
  |  |  ------------------
  ------------------
 2182|    783|	return r;
 2183|    783|}
rdata.c:str_totext:
 2034|  1.99M|str_totext(const char *source, isc_buffer_t *target) {
 2035|  1.99M|	unsigned int l;
 2036|  1.99M|	isc_region_t region;
 2037|       |
 2038|  1.99M|	isc_buffer_availableregion(target, &region);
 2039|  1.99M|	l = strlen(source);
 2040|       |
 2041|  1.99M|	if (l > region.length) {
  ------------------
  |  Branch (2041:6): [True: 2, False: 1.99M]
  ------------------
 2042|      2|		return ISC_R_NOSPACE;
 2043|      2|	}
 2044|       |
 2045|  1.99M|	memmove(region.base, source, l);
 2046|  1.99M|	isc_buffer_add(target, l);
 2047|  1.99M|	return ISC_R_SUCCESS;
 2048|  1.99M|}
rdata.c:buffer_empty:
 2083|   339k|buffer_empty(isc_buffer_t *source) {
 2084|   339k|	return (source->current == source->active) ? true : false;
  ------------------
  |  Branch (2084:9): [True: 296k, False: 42.6k]
  ------------------
 2085|   339k|}
rdata.c:uint16_fromregion:
 2164|  1.77M|uint16_fromregion(isc_region_t *region) {
 2165|  1.77M|	REQUIRE(region->length >= 2);
  ------------------
  |  |  198|  1.77M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.77M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.77M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.77M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2166|       |
 2167|  1.77M|	return (region->base[0] << 8) | region->base[1];
 2168|  1.77M|}

rdata.c:fromwire_any_tsig:
  255|  2.89k|fromwire_any_tsig(ARGS_FROMWIRE) {
  256|  2.89k|	isc_region_t sr;
  257|  2.89k|	dns_name_t name;
  258|  2.89k|	unsigned long n;
  259|       |
  260|  2.89k|	REQUIRE(type == dns_rdatatype_tsig);
  ------------------
  |  |  198|  2.89k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.89k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.89k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.89k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  261|  2.89k|	REQUIRE(rdclass == dns_rdataclass_any);
  ------------------
  |  |  198|  2.89k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.89k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.89k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.89k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  262|       |
  263|  2.89k|	UNUSED(type);
  ------------------
  |  |   69|  2.89k|#define UNUSED(x) (void)(x)
  ------------------
  264|  2.89k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.89k|#define UNUSED(x) (void)(x)
  ------------------
  265|       |
  266|  2.89k|	dctx = dns_decompress_setpermitted(dctx, false);
  267|       |
  268|       |	/*
  269|       |	 * Algorithm Name.
  270|       |	 */
  271|  2.89k|	dns_name_init(&name);
  272|  2.89k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  2.89k|	{                                  \
  |  |  277|  2.89k|		isc_result_t _r = (x);     \
  |  |  278|  2.89k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 203, False: 2.69k]
  |  |  ------------------
  |  |  279|    203|			return ((_r));     \
  |  |  280|    203|		}                          \
  |  |  281|  2.89k|	}
  ------------------
  273|       |
  274|  2.69k|	isc_buffer_activeregion(source, &sr);
  275|       |	/*
  276|       |	 * Time Signed + Fudge.
  277|       |	 */
  278|  2.69k|	if (sr.length < 8) {
  ------------------
  |  Branch (278:6): [True: 3, False: 2.69k]
  ------------------
  279|      3|		return ISC_R_UNEXPECTEDEND;
  280|      3|	}
  281|  2.69k|	RETERR(mem_tobuffer(target, sr.base, 8));
  ------------------
  |  |  276|  2.69k|	{                                  \
  |  |  277|  2.69k|		isc_result_t _r = (x);     \
  |  |  278|  2.69k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 204, False: 2.48k]
  |  |  ------------------
  |  |  279|    204|			return ((_r));     \
  |  |  280|    204|		}                          \
  |  |  281|  2.69k|	}
  ------------------
  282|  2.48k|	isc_region_consume(&sr, 8);
  ------------------
  |  |   50|  2.48k|	do {                              \
  |  |   51|  2.48k|		isc_region_t *_r = (r);   \
  |  |   52|  2.48k|		unsigned int  _l = (l);   \
  |  |   53|  2.48k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.48k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.48k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.48k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.48k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.48k|		_r->base += _l;           \
  |  |   55|  2.48k|		_r->length -= _l;         \
  |  |   56|  2.48k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.48k]
  |  |  ------------------
  ------------------
  283|  2.48k|	isc_buffer_forward(source, 8);
  284|       |
  285|       |	/*
  286|       |	 * Signature Length + Signature.
  287|       |	 */
  288|  2.48k|	if (sr.length < 2) {
  ------------------
  |  Branch (288:6): [True: 2, False: 2.48k]
  ------------------
  289|      2|		return ISC_R_UNEXPECTEDEND;
  290|      2|	}
  291|  2.48k|	n = uint16_fromregion(&sr);
  292|  2.48k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (292:6): [True: 9, False: 2.47k]
  ------------------
  293|      9|		return ISC_R_UNEXPECTEDEND;
  294|      9|	}
  295|  2.47k|	RETERR(mem_tobuffer(target, sr.base, n + 2));
  ------------------
  |  |  276|  2.47k|	{                                  \
  |  |  277|  2.47k|		isc_result_t _r = (x);     \
  |  |  278|  2.47k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 199, False: 2.27k]
  |  |  ------------------
  |  |  279|    199|			return ((_r));     \
  |  |  280|    199|		}                          \
  |  |  281|  2.47k|	}
  ------------------
  296|  2.27k|	isc_region_consume(&sr, n + 2);
  ------------------
  |  |   50|  2.27k|	do {                              \
  |  |   51|  2.27k|		isc_region_t *_r = (r);   \
  |  |   52|  2.27k|		unsigned int  _l = (l);   \
  |  |   53|  2.27k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.27k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.27k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.27k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.27k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.27k|		_r->base += _l;           \
  |  |   55|  2.27k|		_r->length -= _l;         \
  |  |   56|  2.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.27k]
  |  |  ------------------
  ------------------
  297|  2.27k|	isc_buffer_forward(source, n + 2);
  298|       |
  299|       |	/*
  300|       |	 * Original ID + Error.
  301|       |	 */
  302|  2.27k|	if (sr.length < 4) {
  ------------------
  |  Branch (302:6): [True: 6, False: 2.27k]
  ------------------
  303|      6|		return ISC_R_UNEXPECTEDEND;
  304|      6|	}
  305|  2.27k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  2.27k|	{                                  \
  |  |  277|  2.27k|		isc_result_t _r = (x);     \
  |  |  278|  2.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 195, False: 2.07k]
  |  |  ------------------
  |  |  279|    195|			return ((_r));     \
  |  |  280|    195|		}                          \
  |  |  281|  2.27k|	}
  ------------------
  306|  2.07k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  2.07k|	do {                              \
  |  |   51|  2.07k|		isc_region_t *_r = (r);   \
  |  |   52|  2.07k|		unsigned int  _l = (l);   \
  |  |   53|  2.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.07k|		_r->base += _l;           \
  |  |   55|  2.07k|		_r->length -= _l;         \
  |  |   56|  2.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.07k]
  |  |  ------------------
  ------------------
  307|  2.07k|	isc_buffer_forward(source, 4);
  308|       |
  309|       |	/*
  310|       |	 * Other Length + Other.
  311|       |	 */
  312|  2.07k|	if (sr.length < 2) {
  ------------------
  |  Branch (312:6): [True: 3, False: 2.07k]
  ------------------
  313|      3|		return ISC_R_UNEXPECTEDEND;
  314|      3|	}
  315|  2.07k|	n = uint16_fromregion(&sr);
  316|  2.07k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (316:6): [True: 33, False: 2.04k]
  ------------------
  317|     33|		return ISC_R_UNEXPECTEDEND;
  318|     33|	}
  319|  2.04k|	isc_buffer_forward(source, n + 2);
  320|  2.04k|	return mem_tobuffer(target, sr.base, n + 2);
  321|  2.07k|}
rdata.c:towire_any_tsig:
  324|    575|towire_any_tsig(ARGS_TOWIRE) {
  325|    575|	isc_region_t sr;
  326|    575|	dns_name_t name;
  327|       |
  328|    575|	REQUIRE(rdata->type == dns_rdatatype_tsig);
  ------------------
  |  |  198|    575|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    575|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 575, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    575|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  329|    575|	REQUIRE(rdata->rdclass == dns_rdataclass_any);
  ------------------
  |  |  198|    575|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    575|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 575, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    575|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  330|    575|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    575|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    575|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 575, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    575|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  331|       |
  332|    575|	dns_compress_setpermitted(cctx, false);
  333|    575|	dns_rdata_toregion(rdata, &sr);
  334|    575|	dns_name_init(&name);
  335|    575|	dns_name_fromregion(&name, &sr);
  336|    575|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    575|	{                                  \
  |  |  277|    575|		isc_result_t _r = (x);     \
  |  |  278|    575|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 574]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    575|	}
  ------------------
  337|    574|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|    574|	do {                              \
  |  |   51|    574|		isc_region_t *_r = (r);   \
  |  |   52|    574|		unsigned int  _l = (l);   \
  |  |   53|    574|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    574|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    574|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 574, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    574|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    574|		_r->base += _l;           \
  |  |   55|    574|		_r->length -= _l;         \
  |  |   56|    574|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 574]
  |  |  ------------------
  ------------------
  338|    574|	return mem_tobuffer(target, sr.base, sr.length);
  339|    575|}
rdata.c:totext_any_tsig:
  133|  1.18k|totext_any_tsig(ARGS_TOTEXT) {
  134|  1.18k|	isc_region_t sr;
  135|  1.18k|	isc_region_t sigr;
  136|  1.18k|	char buf[sizeof(" 281474976710655 ")];
  137|  1.18k|	char *bufp;
  138|  1.18k|	dns_name_t name;
  139|  1.18k|	dns_name_t prefix;
  140|  1.18k|	uint64_t sigtime;
  141|  1.18k|	unsigned short n;
  142|  1.18k|	unsigned int opts;
  143|       |
  144|  1.18k|	REQUIRE(rdata->type == dns_rdatatype_tsig);
  ------------------
  |  |  198|  1.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  145|  1.18k|	REQUIRE(rdata->rdclass == dns_rdataclass_any);
  ------------------
  |  |  198|  1.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  146|  1.18k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  147|       |
  148|  1.18k|	dns_rdata_toregion(rdata, &sr);
  149|       |	/*
  150|       |	 * Algorithm Name.
  151|       |	 */
  152|  1.18k|	dns_name_init(&name);
  153|  1.18k|	dns_name_init(&prefix);
  154|  1.18k|	dns_name_fromregion(&name, &sr);
  155|  1.18k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (155:9): [True: 0, False: 1.18k]
  ------------------
  156|  1.18k|							 : 0;
  157|  1.18k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  158|  1.18k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  159|  1.18k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  160|       |
  161|       |	/*
  162|       |	 * Time Signed.
  163|       |	 */
  164|  1.18k|	sigtime = ((uint64_t)sr.base[0] << 40) | ((uint64_t)sr.base[1] << 32) |
  165|  1.18k|		  ((uint64_t)sr.base[2] << 24) | ((uint64_t)sr.base[3] << 16) |
  166|  1.18k|		  ((uint64_t)sr.base[4] << 8) | (uint64_t)sr.base[5];
  167|  1.18k|	isc_region_consume(&sr, 6);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  168|  1.18k|	bufp = &buf[sizeof(buf) - 1];
  169|  1.18k|	*bufp-- = 0;
  170|  1.18k|	*bufp-- = ' ';
  171|  8.40k|	do {
  172|  8.40k|		*bufp-- = '0' + sigtime % 10;
  173|  8.40k|		sigtime /= 10;
  174|  8.40k|	} while (sigtime != 0);
  ------------------
  |  Branch (174:11): [True: 7.21k, False: 1.18k]
  ------------------
  175|  1.18k|	bufp++;
  176|  1.18k|	RETERR(str_totext(bufp, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  177|       |
  178|       |	/*
  179|       |	 * Fudge.
  180|       |	 */
  181|  1.18k|	n = uint16_fromregion(&sr);
  182|  1.18k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  183|  1.18k|	snprintf(buf, sizeof(buf), "%u ", n);
  184|  1.18k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  185|       |
  186|       |	/*
  187|       |	 * Signature Size.
  188|       |	 */
  189|  1.18k|	n = uint16_fromregion(&sr);
  190|  1.18k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  191|  1.18k|	snprintf(buf, sizeof(buf), "%u", n);
  192|  1.18k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  193|       |
  194|       |	/*
  195|       |	 * Signature.
  196|       |	 */
  197|  1.18k|	if (n != 0U) {
  ------------------
  |  Branch (197:6): [True: 234, False: 952]
  ------------------
  198|    234|		REQUIRE(n <= sr.length);
  ------------------
  |  |  198|    234|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    234|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 234, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    234|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  199|    234|		sigr = sr;
  200|    234|		sigr.length = n;
  201|    234|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    234|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (201:7): [True: 0, False: 234]
  ------------------
  202|      0|			RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  203|      0|		}
  204|    234|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|    234|	{                                  \
  |  |  277|    234|		isc_result_t _r = (x);     \
  |  |  278|    234|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 234]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    234|	}
  ------------------
  205|    234|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (205:7): [True: 0, False: 234]
  ------------------
  206|      0|			RETERR(isc_base64_totext(&sigr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  207|    234|		} else {
  208|    234|			RETERR(isc_base64_totext(&sigr, tctx->width - 2,
  ------------------
  |  |  276|    234|	{                                  \
  |  |  277|    234|		isc_result_t _r = (x);     \
  |  |  278|    234|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 234]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    234|	}
  ------------------
  209|    234|						 tctx->linebreak, target));
  210|    234|		}
  211|    234|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    234|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (211:7): [True: 0, False: 234]
  ------------------
  212|      0|			RETERR(str_totext(" ) ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  213|    234|		} else {
  214|    234|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    234|	{                                  \
  |  |  277|    234|		isc_result_t _r = (x);     \
  |  |  278|    234|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 234]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    234|	}
  ------------------
  215|    234|		}
  216|    234|		isc_region_consume(&sr, n);
  ------------------
  |  |   50|    234|	do {                              \
  |  |   51|    234|		isc_region_t *_r = (r);   \
  |  |   52|    234|		unsigned int  _l = (l);   \
  |  |   53|    234|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    234|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    234|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 234, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    234|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    234|		_r->base += _l;           \
  |  |   55|    234|		_r->length -= _l;         \
  |  |   56|    234|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 234]
  |  |  ------------------
  ------------------
  217|    952|	} else {
  218|    952|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    952|	{                                  \
  |  |  277|    952|		isc_result_t _r = (x);     \
  |  |  278|    952|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 952]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    952|	}
  ------------------
  219|    952|	}
  220|       |
  221|       |	/*
  222|       |	 * Original ID.
  223|       |	 */
  224|  1.18k|	n = uint16_fromregion(&sr);
  225|  1.18k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  226|  1.18k|	snprintf(buf, sizeof(buf), "%u ", n);
  227|  1.18k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  228|       |
  229|       |	/*
  230|       |	 * Error.
  231|       |	 */
  232|  1.18k|	n = uint16_fromregion(&sr);
  233|  1.18k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  234|  1.18k|	RETERR(dns_tsigrcode_totext((dns_rcode_t)n, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  235|       |
  236|       |	/*
  237|       |	 * Other Size.
  238|       |	 */
  239|  1.18k|	n = uint16_fromregion(&sr);
  240|  1.18k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  241|  1.18k|	snprintf(buf, sizeof(buf), " %u ", n);
  242|  1.18k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.18k|	{                                  \
  |  |  277|  1.18k|		isc_result_t _r = (x);     \
  |  |  278|  1.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.18k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.18k|	}
  ------------------
  243|       |
  244|       |	/*
  245|       |	 * Other.
  246|       |	 */
  247|  1.18k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (247:6): [True: 0, False: 1.18k]
  ------------------
  248|      0|		return isc_base64_totext(&sr, 60, "", target);
  249|  1.18k|	} else {
  250|  1.18k|		return isc_base64_totext(&sr, 60, " ", target);
  251|  1.18k|	}
  252|  1.18k|}

rdata.c:fromwire_ch_a:
   99|  1.73k|fromwire_ch_a(ARGS_FROMWIRE) {
  100|  1.73k|	isc_region_t sregion;
  101|  1.73k|	isc_region_t tregion;
  102|  1.73k|	dns_name_t name;
  103|       |
  104|  1.73k|	REQUIRE(type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.73k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.73k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.73k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.73k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|  1.73k|	REQUIRE(rdclass == dns_rdataclass_ch);
  ------------------
  |  |  198|  1.73k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.73k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.73k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.73k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|       |
  107|  1.73k|	UNUSED(type);
  ------------------
  |  |   69|  1.73k|#define UNUSED(x) (void)(x)
  ------------------
  108|  1.73k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.73k|#define UNUSED(x) (void)(x)
  ------------------
  109|       |
  110|  1.73k|	dctx = dns_decompress_setpermitted(dctx, true);
  111|       |
  112|  1.73k|	dns_name_init(&name);
  113|       |
  114|  1.73k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  1.73k|	{                                  \
  |  |  277|  1.73k|		isc_result_t _r = (x);     \
  |  |  278|  1.73k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 195, False: 1.54k]
  |  |  ------------------
  |  |  279|    195|			return ((_r));     \
  |  |  280|    195|		}                          \
  |  |  281|  1.73k|	}
  ------------------
  115|       |
  116|  1.54k|	isc_buffer_activeregion(source, &sregion);
  117|  1.54k|	isc_buffer_availableregion(target, &tregion);
  118|  1.54k|	if (sregion.length < 2) {
  ------------------
  |  Branch (118:6): [True: 2, False: 1.54k]
  ------------------
  119|      2|		return ISC_R_UNEXPECTEDEND;
  120|      2|	}
  121|  1.54k|	if (tregion.length < 2) {
  ------------------
  |  Branch (121:6): [True: 194, False: 1.34k]
  ------------------
  122|    194|		return ISC_R_NOSPACE;
  123|    194|	}
  124|       |
  125|  1.34k|	memmove(tregion.base, sregion.base, 2);
  126|  1.34k|	isc_buffer_forward(source, 2);
  127|  1.34k|	isc_buffer_add(target, 2);
  128|       |
  129|  1.34k|	return ISC_R_SUCCESS;
  130|  1.54k|}
rdata.c:towire_ch_a:
  133|    460|towire_ch_a(ARGS_TOWIRE) {
  134|    460|	dns_name_t name;
  135|    460|	isc_region_t sregion;
  136|    460|	isc_region_t tregion;
  137|       |
  138|    460|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    460|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    460|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 460, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    460|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  139|    460|	REQUIRE(rdata->rdclass == dns_rdataclass_ch);
  ------------------
  |  |  198|    460|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    460|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 460, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    460|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  140|    460|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    460|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    460|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 460, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    460|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  141|       |
  142|    460|	dns_compress_setpermitted(cctx, true);
  143|       |
  144|    460|	dns_name_init(&name);
  145|       |
  146|    460|	dns_rdata_toregion(rdata, &sregion);
  147|       |
  148|    460|	dns_name_fromregion(&name, &sregion);
  149|    460|	isc_region_consume(&sregion, name_length(&name));
  ------------------
  |  |   50|    460|	do {                              \
  |  |   51|    460|		isc_region_t *_r = (r);   \
  |  |   52|    460|		unsigned int  _l = (l);   \
  |  |   53|    460|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    460|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    460|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 460, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    460|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    460|		_r->base += _l;           \
  |  |   55|    460|		_r->length -= _l;         \
  |  |   56|    460|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 460]
  |  |  ------------------
  ------------------
  150|    460|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    460|	{                                  \
  |  |  277|    460|		isc_result_t _r = (x);     \
  |  |  278|    460|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 459]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    460|	}
  ------------------
  151|       |
  152|    459|	isc_buffer_availableregion(target, &tregion);
  153|    459|	if (tregion.length < 2) {
  ------------------
  |  Branch (153:6): [True: 1, False: 458]
  ------------------
  154|      1|		return ISC_R_NOSPACE;
  155|      1|	}
  156|       |
  157|    458|	memmove(tregion.base, sregion.base, 2);
  158|    458|	isc_buffer_add(target, 2);
  159|    458|	return ISC_R_SUCCESS;
  160|    459|}
rdata.c:totext_ch_a:
   69|    913|totext_ch_a(ARGS_TOTEXT) {
   70|    913|	isc_region_t region;
   71|    913|	dns_name_t name;
   72|    913|	dns_name_t prefix;
   73|    913|	unsigned int opts;
   74|    913|	char buf[sizeof("0177777")];
   75|    913|	uint16_t addr;
   76|       |
   77|    913|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    913|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    913|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 913, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    913|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   78|    913|	REQUIRE(rdata->rdclass == dns_rdataclass_ch); /* 3 */
  ------------------
  |  |  198|    913|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    913|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 913, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    913|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   79|    913|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    913|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    913|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 913, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    913|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   80|       |
   81|    913|	dns_name_init(&name);
   82|    913|	dns_name_init(&prefix);
   83|       |
   84|    913|	dns_rdata_toregion(rdata, &region);
   85|    913|	dns_name_fromregion(&name, &region);
   86|    913|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    913|	do {                              \
  |  |   51|    913|		isc_region_t *_r = (r);   \
  |  |   52|    913|		unsigned int  _l = (l);   \
  |  |   53|    913|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    913|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    913|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 913, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    913|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    913|		_r->base += _l;           \
  |  |   55|    913|		_r->length -= _l;         \
  |  |   56|    913|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 913]
  |  |  ------------------
  ------------------
   87|    913|	addr = uint16_fromregion(&region);
   88|       |
   89|    913|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (89:9): [True: 0, False: 913]
  ------------------
   90|    913|							 : 0;
   91|    913|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|    913|	{                                  \
  |  |  277|    913|		isc_result_t _r = (x);     \
  |  |  278|    913|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 913]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    913|	}
  ------------------
   92|       |
   93|    913|	snprintf(buf, sizeof(buf), "%o", addr); /* note octal */
   94|    913|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    913|	{                                  \
  |  |  277|    913|		isc_result_t _r = (x);     \
  |  |  278|    913|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 913]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    913|	}
  ------------------
   95|    913|	return str_totext(buf, target);
   96|    913|}

rdata.c:fromwire_afsdb:
   95|  1.04k|fromwire_afsdb(ARGS_FROMWIRE) {
   96|  1.04k|	dns_name_t name;
   97|  1.04k|	isc_region_t sr;
   98|  1.04k|	isc_region_t tr;
   99|       |
  100|  1.04k|	REQUIRE(type == dns_rdatatype_afsdb);
  ------------------
  |  |  198|  1.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|  1.04k|	UNUSED(type);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
  103|  1.04k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
  104|       |
  105|  1.04k|	dctx = dns_decompress_setpermitted(dctx, false);
  106|       |
  107|  1.04k|	dns_name_init(&name);
  108|       |
  109|  1.04k|	isc_buffer_activeregion(source, &sr);
  110|  1.04k|	isc_buffer_availableregion(target, &tr);
  111|  1.04k|	if (tr.length < 2) {
  ------------------
  |  Branch (111:6): [True: 66, False: 976]
  ------------------
  112|     66|		return ISC_R_NOSPACE;
  113|     66|	}
  114|    976|	if (sr.length < 2) {
  ------------------
  |  Branch (114:6): [True: 10, False: 966]
  ------------------
  115|     10|		return ISC_R_UNEXPECTEDEND;
  116|     10|	}
  117|    966|	memmove(tr.base, sr.base, 2);
  118|    966|	isc_buffer_forward(source, 2);
  119|    966|	isc_buffer_add(target, 2);
  120|    966|	return dns_name_fromwire(&name, source, dctx, target);
  121|    976|}
rdata.c:towire_afsdb:
  124|    436|towire_afsdb(ARGS_TOWIRE) {
  125|    436|	isc_region_t tr;
  126|    436|	isc_region_t sr;
  127|    436|	dns_name_t name;
  128|       |
  129|    436|	REQUIRE(rdata->type == dns_rdatatype_afsdb);
  ------------------
  |  |  198|    436|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    436|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 436, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    436|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|    436|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    436|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    436|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 436, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    436|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|    436|	dns_compress_setpermitted(cctx, false);
  133|    436|	isc_buffer_availableregion(target, &tr);
  134|    436|	dns_rdata_toregion(rdata, &sr);
  135|    436|	if (tr.length < 2) {
  ------------------
  |  Branch (135:6): [True: 1, False: 435]
  ------------------
  136|      1|		return ISC_R_NOSPACE;
  137|      1|	}
  138|    435|	memmove(tr.base, sr.base, 2);
  139|    435|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|    435|	do {                              \
  |  |   51|    435|		isc_region_t *_r = (r);   \
  |  |   52|    435|		unsigned int  _l = (l);   \
  |  |   53|    435|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    435|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    435|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 435, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    435|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    435|		_r->base += _l;           \
  |  |   55|    435|		_r->length -= _l;         \
  |  |   56|    435|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 435]
  |  |  ------------------
  ------------------
  140|    435|	isc_buffer_add(target, 2);
  141|       |
  142|    435|	dns_name_init(&name);
  143|    435|	dns_name_fromregion(&name, &sr);
  144|       |
  145|    435|	return dns_name_towire(&name, cctx, target);
  146|    436|}
rdata.c:totext_afsdb:
   70|    887|totext_afsdb(ARGS_TOTEXT) {
   71|    887|	dns_name_t name;
   72|    887|	dns_name_t prefix;
   73|    887|	isc_region_t region;
   74|    887|	char buf[sizeof("64000 ")];
   75|    887|	unsigned int num, opts;
   76|       |
   77|    887|	REQUIRE(rdata->type == dns_rdatatype_afsdb);
  ------------------
  |  |  198|    887|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    887|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 887, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    887|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   78|    887|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    887|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    887|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 887, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    887|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   79|       |
   80|    887|	dns_name_init(&name);
   81|    887|	dns_name_init(&prefix);
   82|       |
   83|    887|	dns_rdata_toregion(rdata, &region);
   84|    887|	num = uint16_fromregion(&region);
   85|    887|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    887|	do {                              \
  |  |   51|    887|		isc_region_t *_r = (r);   \
  |  |   52|    887|		unsigned int  _l = (l);   \
  |  |   53|    887|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    887|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    887|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 887, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    887|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    887|		_r->base += _l;           \
  |  |   55|    887|		_r->length -= _l;         \
  |  |   56|    887|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 887]
  |  |  ------------------
  ------------------
   86|    887|	snprintf(buf, sizeof(buf), "%u ", num);
   87|    887|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    887|	{                                  \
  |  |  277|    887|		isc_result_t _r = (x);     \
  |  |  278|    887|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 887]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    887|	}
  ------------------
   88|    887|	dns_name_fromregion(&name, &region);
   89|    887|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (89:9): [True: 0, False: 887]
  ------------------
   90|    887|							 : 0;
   91|    887|	return dns_name_totext(&prefix, opts, target);
   92|    887|}

rdata.c:fromwire_amtrelay:
  183|  4.92k|fromwire_amtrelay(ARGS_FROMWIRE) {
  184|  4.92k|	dns_name_t name;
  185|  4.92k|	isc_region_t region;
  186|       |
  187|  4.92k|	REQUIRE(type == dns_rdatatype_amtrelay);
  ------------------
  |  |  198|  4.92k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.92k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.92k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.92k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  188|       |
  189|  4.92k|	UNUSED(type);
  ------------------
  |  |   69|  4.92k|#define UNUSED(x) (void)(x)
  ------------------
  190|  4.92k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.92k|#define UNUSED(x) (void)(x)
  ------------------
  191|       |
  192|  4.92k|	dctx = dns_decompress_setpermitted(dctx, false);
  193|       |
  194|  4.92k|	isc_buffer_activeregion(source, &region);
  195|  4.92k|	if (region.length < 2) {
  ------------------
  |  Branch (195:6): [True: 5, False: 4.91k]
  ------------------
  196|      5|		return ISC_R_UNEXPECTEDEND;
  197|      5|	}
  198|       |
  199|  4.91k|	switch (region.base[1] & 0x7f) {
  200|  1.14k|	case 0:
  ------------------
  |  Branch (200:2): [True: 1.14k, False: 3.77k]
  ------------------
  201|  1.14k|		if (region.length != 2) {
  ------------------
  |  Branch (201:7): [True: 1, False: 1.14k]
  ------------------
  202|      1|			return DNS_R_FORMERR;
  203|      1|		}
  204|  1.14k|		isc_buffer_forward(source, region.length);
  205|  1.14k|		return mem_tobuffer(target, region.base, region.length);
  206|       |
  207|    672|	case 1:
  ------------------
  |  Branch (207:2): [True: 672, False: 4.24k]
  ------------------
  208|    672|		if (region.length != 6) {
  ------------------
  |  Branch (208:7): [True: 1, False: 671]
  ------------------
  209|      1|			return DNS_R_FORMERR;
  210|      1|		}
  211|    671|		isc_buffer_forward(source, region.length);
  212|    671|		return mem_tobuffer(target, region.base, region.length);
  213|       |
  214|    645|	case 2:
  ------------------
  |  Branch (214:2): [True: 645, False: 4.27k]
  ------------------
  215|    645|		if (region.length != 18) {
  ------------------
  |  Branch (215:7): [True: 7, False: 638]
  ------------------
  216|      7|			return DNS_R_FORMERR;
  217|      7|		}
  218|    638|		isc_buffer_forward(source, region.length);
  219|    638|		return mem_tobuffer(target, region.base, region.length);
  220|       |
  221|    660|	case 3:
  ------------------
  |  Branch (221:2): [True: 660, False: 4.25k]
  ------------------
  222|    660|		RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    660|	{                                  \
  |  |  277|    660|		isc_result_t _r = (x);     \
  |  |  278|    660|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 466]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|    660|	}
  ------------------
  223|    466|		isc_buffer_forward(source, 2);
  224|    466|		dns_name_init(&name);
  225|    466|		return dns_name_fromwire(&name, source, dctx, target);
  226|       |
  227|  1.80k|	default:
  ------------------
  |  Branch (227:2): [True: 1.80k, False: 3.11k]
  ------------------
  228|  1.80k|		isc_buffer_forward(source, region.length);
  229|  1.80k|		return mem_tobuffer(target, region.base, region.length);
  230|  4.91k|	}
  231|  4.91k|}
rdata.c:towire_amtrelay:
  234|  1.60k|towire_amtrelay(ARGS_TOWIRE) {
  235|  1.60k|	isc_region_t region;
  236|       |
  237|  1.60k|	REQUIRE(rdata->type == dns_rdatatype_amtrelay);
  ------------------
  |  |  198|  1.60k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.60k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.60k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.60k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  238|  1.60k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.60k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.60k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.60k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.60k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  239|       |
  240|  1.60k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.60k|#define UNUSED(x) (void)(x)
  ------------------
  241|       |
  242|  1.60k|	dns_rdata_toregion(rdata, &region);
  243|  1.60k|	return mem_tobuffer(target, region.base, region.length);
  244|  1.60k|}
rdata.c:totext_amtrelay:
  122|  3.09k|totext_amtrelay(ARGS_TOTEXT) {
  123|  3.09k|	isc_region_t region;
  124|  3.09k|	dns_name_t name;
  125|  3.09k|	char buf[sizeof("0 255 ")];
  126|  3.09k|	unsigned char precedence;
  127|  3.09k|	unsigned char discovery;
  128|  3.09k|	unsigned char gateway;
  129|       |
  130|  3.09k|	UNUSED(tctx);
  ------------------
  |  |   69|  3.09k|#define UNUSED(x) (void)(x)
  ------------------
  131|       |
  132|  3.09k|	REQUIRE(rdata->type == dns_rdatatype_amtrelay);
  ------------------
  |  |  198|  3.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  133|  3.09k|	REQUIRE(rdata->length >= 2);
  ------------------
  |  |  198|  3.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  134|       |
  135|  3.09k|	if ((rdata->data[1] & 0x7f) > 3U) {
  ------------------
  |  Branch (135:6): [True: 1.37k, False: 1.72k]
  ------------------
  136|  1.37k|		return ISC_R_NOTIMPLEMENTED;
  137|  1.37k|	}
  138|       |
  139|       |	/*
  140|       |	 * Precedence.
  141|       |	 */
  142|  1.72k|	dns_rdata_toregion(rdata, &region);
  143|  1.72k|	precedence = uint8_fromregion(&region);
  144|  1.72k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.72k|	do {                              \
  |  |   51|  1.72k|		isc_region_t *_r = (r);   \
  |  |   52|  1.72k|		unsigned int  _l = (l);   \
  |  |   53|  1.72k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.72k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.72k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.72k|		_r->base += _l;           \
  |  |   55|  1.72k|		_r->length -= _l;         \
  |  |   56|  1.72k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.72k]
  |  |  ------------------
  ------------------
  145|  1.72k|	snprintf(buf, sizeof(buf), "%u ", precedence);
  146|  1.72k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.72k|	{                                  \
  |  |  277|  1.72k|		isc_result_t _r = (x);     \
  |  |  278|  1.72k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.72k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.72k|	}
  ------------------
  147|       |
  148|       |	/*
  149|       |	 * Discovery and Gateway type.
  150|       |	 */
  151|  1.72k|	gateway = uint8_fromregion(&region);
  152|  1.72k|	discovery = gateway >> 7;
  153|  1.72k|	gateway &= 0x7f;
  154|  1.72k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.72k|	do {                              \
  |  |   51|  1.72k|		isc_region_t *_r = (r);   \
  |  |   52|  1.72k|		unsigned int  _l = (l);   \
  |  |   53|  1.72k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.72k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.72k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.72k|		_r->base += _l;           \
  |  |   55|  1.72k|		_r->length -= _l;         \
  |  |   56|  1.72k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.72k]
  |  |  ------------------
  ------------------
  155|  1.72k|	snprintf(buf, sizeof(buf), "%u %u ", discovery, gateway);
  156|  1.72k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.72k|	{                                  \
  |  |  277|  1.72k|		isc_result_t _r = (x);     \
  |  |  278|  1.72k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.72k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.72k|	}
  ------------------
  157|       |
  158|       |	/*
  159|       |	 * Gateway.
  160|       |	 */
  161|  1.72k|	switch (gateway) {
  162|    718|	case 0:
  ------------------
  |  Branch (162:2): [True: 718, False: 1.00k]
  ------------------
  163|    718|		return str_totext(".", target);
  164|       |
  165|    516|	case 1:
  ------------------
  |  Branch (165:2): [True: 516, False: 1.20k]
  ------------------
  166|    516|		return inet_totext(AF_INET, tctx->flags, &region, target);
  167|       |
  168|    227|	case 2:
  ------------------
  |  Branch (168:2): [True: 227, False: 1.49k]
  ------------------
  169|    227|		return inet_totext(AF_INET6, tctx->flags, &region, target);
  170|       |
  171|    264|	case 3:
  ------------------
  |  Branch (171:2): [True: 264, False: 1.46k]
  ------------------
  172|    264|		dns_name_init(&name);
  173|    264|		dns_name_fromregion(&name, &region);
  174|    264|		return dns_name_totext(&name, 0, target);
  175|       |
  176|      0|	default:
  ------------------
  |  Branch (176:2): [True: 0, False: 1.72k]
  ------------------
  177|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  178|  1.72k|	}
  179|      0|	return ISC_R_SUCCESS;
  180|  1.72k|}

rdata.c:fromwire_avc:
   35|  1.38k|fromwire_avc(ARGS_FROMWIRE) {
   36|  1.38k|	REQUIRE(type == dns_rdatatype_avc);
  ------------------
  |  |  198|  1.38k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.38k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.38k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.38k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.38k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.38k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.38k|}
rdata.c:towire_avc:
   42|    503|towire_avc(ARGS_TOWIRE) {
   43|    503|	REQUIRE(rdata->type == dns_rdatatype_avc);
  ------------------
  |  |  198|    503|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    503|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 503, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    503|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    503|	UNUSED(cctx);
  ------------------
  |  |   69|    503|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    503|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    503|}
rdata.c:totext_avc:
   27|    982|totext_avc(ARGS_TOTEXT) {
   28|    982|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    982|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    982|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 982, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    982|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    982|	REQUIRE(rdata->type == dns_rdatatype_avc);
  ------------------
  |  |  198|    982|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    982|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 982, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    982|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    982|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    982|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    982|}

rdata.c:fromwire_brid:
   63|  1.25k|fromwire_brid(ARGS_FROMWIRE) {
   64|  1.25k|	isc_region_t sr;
   65|       |
   66|  1.25k|	REQUIRE(type == dns_rdatatype_brid);
  ------------------
  |  |  198|  1.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.25k|	UNUSED(type);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.25k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
   70|  1.25k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
   71|       |
   72|  1.25k|	isc_buffer_activeregion(source, &sr);
   73|  1.25k|	if (sr.length == 0) {
  ------------------
  |  Branch (73:6): [True: 2, False: 1.25k]
  ------------------
   74|      2|		return ISC_R_UNEXPECTEDEND;
   75|      2|	}
   76|       |
   77|  1.25k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  1.25k|	{                                  \
  |  |  277|  1.25k|		isc_result_t _r = (x);     \
  |  |  278|  1.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 240, False: 1.01k]
  |  |  ------------------
  |  |  279|    240|			return ((_r));     \
  |  |  280|    240|		}                          \
  |  |  281|  1.25k|	}
  ------------------
   78|  1.01k|	isc_buffer_forward(source, sr.length);
   79|  1.01k|	return ISC_R_SUCCESS;
   80|  1.25k|}
rdata.c:towire_brid:
   83|    399|towire_brid(ARGS_TOWIRE) {
   84|    399|	REQUIRE(rdata->type == dns_rdatatype_brid);
  ------------------
  |  |  198|    399|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    399|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 399, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    399|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|    399|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    399|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    399|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 399, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    399|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    399|	UNUSED(cctx);
  ------------------
  |  |   69|    399|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    399|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|    399|}
rdata.c:totext_brid:
   35|    784|totext_brid(ARGS_TOTEXT) {
   36|    784|	isc_region_t sr;
   37|       |
   38|    784|	REQUIRE(rdata->type == dns_rdatatype_brid);
  ------------------
  |  |  198|    784|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    784|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 784, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    784|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   39|    784|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    784|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    784|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 784, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    784|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|       |
   41|    784|	dns_rdata_toregion(rdata, &sr);
   42|       |
   43|       |	/* data */
   44|    784|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    784|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (44:6): [True: 0, False: 784]
  ------------------
   45|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   46|      0|	}
   47|       |
   48|    784|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (48:6): [True: 0, False: 784]
  ------------------
   49|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|    784|	} else {
   51|    784|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    784|	{                                  \
  |  |  277|    784|		isc_result_t _r = (x);     \
  |  |  278|    784|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 784]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    784|	}
  ------------------
   52|    784|					 target));
   53|    784|	}
   54|       |
   55|    784|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    784|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (55:6): [True: 0, False: 784]
  ------------------
   56|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   57|      0|	}
   58|       |
   59|    784|	return ISC_R_SUCCESS;
   60|    784|}

rdata.c:fromwire_caa:
  365|  1.93k|fromwire_caa(ARGS_FROMWIRE) {
  366|  1.93k|	isc_region_t sr;
  367|  1.93k|	unsigned int len, i;
  368|       |
  369|  1.93k|	REQUIRE(type == dns_rdatatype_caa);
  ------------------
  |  |  198|  1.93k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.93k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.93k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.93k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  370|       |
  371|  1.93k|	UNUSED(type);
  ------------------
  |  |   69|  1.93k|#define UNUSED(x) (void)(x)
  ------------------
  372|  1.93k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.93k|#define UNUSED(x) (void)(x)
  ------------------
  373|  1.93k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.93k|#define UNUSED(x) (void)(x)
  ------------------
  374|       |
  375|       |	/*
  376|       |	 * Flags
  377|       |	 */
  378|  1.93k|	isc_buffer_activeregion(source, &sr);
  379|  1.93k|	if (sr.length < 2) {
  ------------------
  |  Branch (379:6): [True: 5, False: 1.93k]
  ------------------
  380|      5|		return ISC_R_UNEXPECTEDEND;
  381|      5|	}
  382|       |
  383|       |	/*
  384|       |	 * Flags, tag length
  385|       |	 */
  386|  1.93k|	RETERR(mem_tobuffer(target, sr.base, 2));
  ------------------
  |  |  276|  1.93k|	{                                  \
  |  |  277|  1.93k|		isc_result_t _r = (x);     \
  |  |  278|  1.93k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 454, False: 1.47k]
  |  |  ------------------
  |  |  279|    454|			return ((_r));     \
  |  |  280|    454|		}                          \
  |  |  281|  1.93k|	}
  ------------------
  387|  1.47k|	len = sr.base[1];
  388|  1.47k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.47k|	do {                              \
  |  |   51|  1.47k|		isc_region_t *_r = (r);   \
  |  |   52|  1.47k|		unsigned int  _l = (l);   \
  |  |   53|  1.47k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.47k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.47k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.47k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.47k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.47k|		_r->base += _l;           \
  |  |   55|  1.47k|		_r->length -= _l;         \
  |  |   56|  1.47k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.47k]
  |  |  ------------------
  ------------------
  389|  1.47k|	isc_buffer_forward(source, 2);
  390|       |
  391|       |	/*
  392|       |	 * Zero length tag fields are illegal.
  393|       |	 */
  394|  1.47k|	if (sr.length < len || len == 0) {
  ------------------
  |  Branch (394:6): [True: 12, False: 1.46k]
  |  Branch (394:25): [True: 9, False: 1.45k]
  ------------------
  395|     21|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     21|	{                                  \
  |  |  277|     21|		isc_result_t _r = (x);     \
  |  |  278|     21|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 21, False: 0]
  |  |  ------------------
  |  |  279|     21|			return ((_r));     \
  |  |  280|     21|		}                          \
  |  |  281|     21|	}
  ------------------
  396|      0|	}
  397|       |
  398|       |	/* Check the Tag's value */
  399|  4.11k|	for (i = 0; i < len; i++) {
  ------------------
  |  Branch (399:14): [True: 2.66k, False: 1.45k]
  ------------------
  400|  2.66k|		if (!alphanumeric[sr.base[i]]) {
  ------------------
  |  Branch (400:7): [True: 6, False: 2.65k]
  ------------------
  401|      6|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  402|       |			/*
  403|       |			 * Tag + Value
  404|       |			 */
  405|      0|		}
  406|  2.66k|	}
  407|       |	/*
  408|       |	 * Tag + Value
  409|       |	 */
  410|  1.45k|	isc_buffer_forward(source, sr.length);
  411|  1.45k|	return mem_tobuffer(target, sr.base, sr.length);
  412|  1.45k|}
rdata.c:towire_caa:
  415|    533|towire_caa(ARGS_TOWIRE) {
  416|    533|	isc_region_t region;
  417|       |
  418|    533|	REQUIRE(rdata->type == dns_rdatatype_caa);
  ------------------
  |  |  198|    533|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    533|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 533, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    533|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  419|    533|	REQUIRE(rdata->length >= 3U);
  ------------------
  |  |  198|    533|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    533|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 533, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    533|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  420|    533|	REQUIRE(rdata->data != NULL);
  ------------------
  |  |  198|    533|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    533|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 533, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    533|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  421|       |
  422|    533|	UNUSED(cctx);
  ------------------
  |  |   69|    533|#define UNUSED(x) (void)(x)
  ------------------
  423|       |
  424|    533|	dns_rdata_toregion(rdata, &region);
  425|    533|	return mem_tobuffer(target, region.base, region.length);
  426|    533|}
rdata.c:totext_caa:
  331|    783|totext_caa(ARGS_TOTEXT) {
  332|    783|	isc_region_t region;
  333|    783|	uint8_t flags;
  334|    783|	char buf[256];
  335|       |
  336|    783|	UNUSED(tctx);
  ------------------
  |  |   69|    783|#define UNUSED(x) (void)(x)
  ------------------
  337|       |
  338|    783|	REQUIRE(rdata->type == dns_rdatatype_caa);
  ------------------
  |  |  198|    783|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    783|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 783, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    783|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  339|    783|	REQUIRE(rdata->length >= 3U);
  ------------------
  |  |  198|    783|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    783|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 783, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    783|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  340|    783|	REQUIRE(rdata->data != NULL);
  ------------------
  |  |  198|    783|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    783|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 783, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    783|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  341|       |
  342|    783|	dns_rdata_toregion(rdata, &region);
  343|       |
  344|       |	/*
  345|       |	 * Flags
  346|       |	 */
  347|    783|	flags = uint8_consume_fromregion(&region);
  348|    783|	snprintf(buf, sizeof(buf), "%u ", flags);
  349|    783|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    783|	{                                  \
  |  |  277|    783|		isc_result_t _r = (x);     \
  |  |  278|    783|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 783]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    783|	}
  ------------------
  350|       |
  351|       |	/*
  352|       |	 * Tag
  353|       |	 */
  354|    783|	RETERR(txt_totext(&region, false, target));
  ------------------
  |  |  276|    783|	{                                  \
  |  |  277|    783|		isc_result_t _r = (x);     \
  |  |  278|    783|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 783]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    783|	}
  ------------------
  355|    783|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    783|	{                                  \
  |  |  277|    783|		isc_result_t _r = (x);     \
  |  |  278|    783|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 783]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    783|	}
  ------------------
  356|       |
  357|       |	/*
  358|       |	 * Value
  359|       |	 */
  360|    783|	RETERR(multitxt_totext(&region, target));
  ------------------
  |  |  276|    783|	{                                  \
  |  |  277|    783|		isc_result_t _r = (x);     \
  |  |  278|    783|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 783]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    783|	}
  ------------------
  361|    783|	return ISC_R_SUCCESS;
  362|    783|}

rdata.c:fromwire_cdnskey:
   39|  1.30k|fromwire_cdnskey(ARGS_FROMWIRE) {
   40|  1.30k|	REQUIRE(type == dns_rdatatype_cdnskey);
  ------------------
  |  |  198|  1.30k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.30k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.30k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.30k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  1.30k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.30k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|  1.30k|}
rdata.c:towire_cdnskey:
   46|    592|towire_cdnskey(ARGS_TOWIRE) {
   47|    592|	isc_region_t sr;
   48|       |
   49|    592|	REQUIRE(rdata->type == dns_rdatatype_cdnskey);
  ------------------
  |  |  198|    592|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    592|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 592, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    592|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|    592|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    592|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    592|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 592, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    592|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|    592|	UNUSED(cctx);
  ------------------
  |  |   69|    592|#define UNUSED(x) (void)(x)
  ------------------
   53|       |
   54|    592|	dns_rdata_toregion(rdata, &sr);
   55|    592|	return mem_tobuffer(target, sr.base, sr.length);
   56|    592|}
rdata.c:totext_cdnskey:
   31|  1.15k|totext_cdnskey(ARGS_TOTEXT) {
   32|  1.15k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.15k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.15k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.15k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|  1.15k|	REQUIRE(rdata->type == dns_rdatatype_cdnskey);
  ------------------
  |  |  198|  1.15k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.15k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.15k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|  1.15k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  1.15k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|  1.15k|}

rdata.c:fromwire_cds:
   39|  1.44k|fromwire_cds(ARGS_FROMWIRE) {
   40|  1.44k|	REQUIRE(type == dns_rdatatype_cds);
  ------------------
  |  |  198|  1.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  1.44k|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.44k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|  1.44k|}
rdata.c:towire_cds:
   46|    683|towire_cds(ARGS_TOWIRE) {
   47|    683|	isc_region_t sr;
   48|       |
   49|    683|	REQUIRE(rdata->type == dns_rdatatype_cds);
  ------------------
  |  |  198|    683|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    683|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 683, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    683|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|    683|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    683|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    683|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 683, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    683|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|    683|	UNUSED(cctx);
  ------------------
  |  |   69|    683|#define UNUSED(x) (void)(x)
  ------------------
   53|       |
   54|    683|	dns_rdata_toregion(rdata, &sr);
   55|    683|	return mem_tobuffer(target, sr.base, sr.length);
   56|    683|}
rdata.c:totext_cds:
   31|  1.35k|totext_cds(ARGS_TOTEXT) {
   32|  1.35k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|  1.35k|	REQUIRE(rdata->type == dns_rdatatype_cds);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|  1.35k|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|  1.35k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|  1.35k|}

rdata.c:fromwire_cert:
  119|  2.99k|fromwire_cert(ARGS_FROMWIRE) {
  120|  2.99k|	isc_region_t sr;
  121|       |
  122|  2.99k|	REQUIRE(type == dns_rdatatype_cert);
  ------------------
  |  |  198|  2.99k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.99k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.99k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.99k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  123|       |
  124|  2.99k|	UNUSED(type);
  ------------------
  |  |   69|  2.99k|#define UNUSED(x) (void)(x)
  ------------------
  125|  2.99k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.99k|#define UNUSED(x) (void)(x)
  ------------------
  126|  2.99k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.99k|#define UNUSED(x) (void)(x)
  ------------------
  127|       |
  128|  2.99k|	isc_buffer_activeregion(source, &sr);
  129|  2.99k|	if (sr.length < 6) {
  ------------------
  |  Branch (129:6): [True: 4, False: 2.98k]
  ------------------
  130|      4|		return ISC_R_UNEXPECTEDEND;
  131|      4|	}
  132|       |
  133|  2.98k|	isc_buffer_forward(source, sr.length);
  134|  2.98k|	return mem_tobuffer(target, sr.base, sr.length);
  135|  2.99k|}
rdata.c:towire_cert:
  138|  1.33k|towire_cert(ARGS_TOWIRE) {
  139|  1.33k|	isc_region_t sr;
  140|       |
  141|  1.33k|	REQUIRE(rdata->type == dns_rdatatype_cert);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  142|  1.33k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  143|       |
  144|  1.33k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.33k|#define UNUSED(x) (void)(x)
  ------------------
  145|       |
  146|  1.33k|	dns_rdata_toregion(rdata, &sr);
  147|  1.33k|	return mem_tobuffer(target, sr.base, sr.length);
  148|  1.33k|}
rdata.c:totext_cert:
   65|  2.62k|totext_cert(ARGS_TOTEXT) {
   66|  2.62k|	isc_region_t sr;
   67|  2.62k|	char buf[sizeof("64000 ")];
   68|  2.62k|	unsigned int n;
   69|       |
   70|  2.62k|	REQUIRE(rdata->type == dns_rdatatype_cert);
  ------------------
  |  |  198|  2.62k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.62k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.62k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.62k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|  2.62k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.62k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.62k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.62k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.62k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|  2.62k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.62k|#define UNUSED(x) (void)(x)
  ------------------
   74|       |
   75|  2.62k|	dns_rdata_toregion(rdata, &sr);
   76|       |
   77|       |	/*
   78|       |	 * Type.
   79|       |	 */
   80|  2.62k|	n = uint16_fromregion(&sr);
   81|  2.62k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  2.62k|	do {                              \
  |  |   51|  2.62k|		isc_region_t *_r = (r);   \
  |  |   52|  2.62k|		unsigned int  _l = (l);   \
  |  |   53|  2.62k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.62k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.62k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.62k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.62k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.62k|		_r->base += _l;           \
  |  |   55|  2.62k|		_r->length -= _l;         \
  |  |   56|  2.62k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.62k]
  |  |  ------------------
  ------------------
   82|  2.62k|	RETERR(dns_cert_totext((dns_cert_t)n, target));
  ------------------
  |  |  276|  2.62k|	{                                  \
  |  |  277|  2.62k|		isc_result_t _r = (x);     \
  |  |  278|  2.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.62k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.62k|	}
  ------------------
   83|  2.62k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.62k|	{                                  \
  |  |  277|  2.62k|		isc_result_t _r = (x);     \
  |  |  278|  2.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.62k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.62k|	}
  ------------------
   84|       |
   85|       |	/*
   86|       |	 * Key tag.
   87|       |	 */
   88|  2.62k|	n = uint16_fromregion(&sr);
   89|  2.62k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  2.62k|	do {                              \
  |  |   51|  2.62k|		isc_region_t *_r = (r);   \
  |  |   52|  2.62k|		unsigned int  _l = (l);   \
  |  |   53|  2.62k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.62k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.62k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.62k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.62k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.62k|		_r->base += _l;           \
  |  |   55|  2.62k|		_r->length -= _l;         \
  |  |   56|  2.62k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.62k]
  |  |  ------------------
  ------------------
   90|  2.62k|	snprintf(buf, sizeof(buf), "%u ", n);
   91|  2.62k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.62k|	{                                  \
  |  |  277|  2.62k|		isc_result_t _r = (x);     \
  |  |  278|  2.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.62k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.62k|	}
  ------------------
   92|       |
   93|       |	/*
   94|       |	 * Algorithm.
   95|       |	 */
   96|  2.62k|	RETERR(dns_secalg_totext(sr.base[0], target));
  ------------------
  |  |  276|  2.62k|	{                                  \
  |  |  277|  2.62k|		isc_result_t _r = (x);     \
  |  |  278|  2.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.62k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.62k|	}
  ------------------
   97|  2.62k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.62k|	do {                              \
  |  |   51|  2.62k|		isc_region_t *_r = (r);   \
  |  |   52|  2.62k|		unsigned int  _l = (l);   \
  |  |   53|  2.62k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.62k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.62k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.62k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.62k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.62k|		_r->base += _l;           \
  |  |   55|  2.62k|		_r->length -= _l;         \
  |  |   56|  2.62k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.62k]
  |  |  ------------------
  ------------------
   98|       |
   99|       |	/*
  100|       |	 * Cert.
  101|       |	 */
  102|  2.62k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.62k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (102:6): [True: 0, False: 2.62k]
  ------------------
  103|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  104|      0|	}
  105|  2.62k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  2.62k|	{                                  \
  |  |  277|  2.62k|		isc_result_t _r = (x);     \
  |  |  278|  2.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.62k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.62k|	}
  ------------------
  106|  2.62k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (106:6): [True: 0, False: 2.62k]
  ------------------
  107|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  108|  2.62k|	} else {
  109|  2.62k|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  2.62k|	{                                  \
  |  |  277|  2.62k|		isc_result_t _r = (x);     \
  |  |  278|  2.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.62k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.62k|	}
  ------------------
  110|  2.62k|					 target));
  111|  2.62k|	}
  112|  2.62k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.62k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (112:6): [True: 0, False: 2.62k]
  ------------------
  113|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  114|      0|	}
  115|  2.62k|	return ISC_R_SUCCESS;
  116|  2.62k|}

rdata.c:compare_cname:
   96|  2.13k|compare_cname(ARGS_COMPARE) {
   97|  2.13k|	dns_name_t name1;
   98|  2.13k|	dns_name_t name2;
   99|  2.13k|	isc_region_t region1;
  100|  2.13k|	isc_region_t region2;
  101|       |
  102|  2.13k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|  2.13k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|  2.13k|	REQUIRE(rdata1->type == dns_rdatatype_cname);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|  2.13k|	REQUIRE(rdata1->length != 0);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|  2.13k|	REQUIRE(rdata2->length != 0);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  2.13k|	dns_name_init(&name1);
  109|  2.13k|	dns_name_init(&name2);
  110|       |
  111|  2.13k|	dns_rdata_toregion(rdata1, &region1);
  112|  2.13k|	dns_rdata_toregion(rdata2, &region2);
  113|       |
  114|  2.13k|	dns_name_fromregion(&name1, &region1);
  115|  2.13k|	dns_name_fromregion(&name2, &region2);
  116|       |
  117|  2.13k|	return dns_name_rdatacompare(&name1, &name2);
  118|  2.13k|}
rdata.c:fromwire_cname:
   64|  2.70k|fromwire_cname(ARGS_FROMWIRE) {
   65|  2.70k|	dns_name_t name;
   66|       |
   67|  2.70k|	REQUIRE(type == dns_rdatatype_cname);
  ------------------
  |  |  198|  2.70k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.70k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.70k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.70k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|  2.70k|	UNUSED(type);
  ------------------
  |  |   69|  2.70k|#define UNUSED(x) (void)(x)
  ------------------
   70|  2.70k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.70k|#define UNUSED(x) (void)(x)
  ------------------
   71|       |
   72|  2.70k|	dctx = dns_decompress_setpermitted(dctx, true);
   73|       |
   74|  2.70k|	dns_name_init(&name);
   75|  2.70k|	return dns_name_fromwire(&name, source, dctx, target);
   76|  2.70k|}
rdata.c:towire_cname:
   79|  1.32k|towire_cname(ARGS_TOWIRE) {
   80|  1.32k|	dns_name_t name;
   81|  1.32k|	isc_region_t region;
   82|       |
   83|  1.32k|	REQUIRE(rdata->type == dns_rdatatype_cname);
  ------------------
  |  |  198|  1.32k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.32k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.32k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.32k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|  1.32k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.32k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.32k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.32k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.32k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|       |
   86|  1.32k|	dns_compress_setpermitted(cctx, true);
   87|       |
   88|  1.32k|	dns_name_init(&name);
   89|  1.32k|	dns_rdata_toregion(rdata, &region);
   90|  1.32k|	dns_name_fromregion(&name, &region);
   91|       |
   92|  1.32k|	return dns_name_towire(&name, cctx, target);
   93|  1.32k|}
rdata.c:totext_cname:
   43|  2.63k|totext_cname(ARGS_TOTEXT) {
   44|  2.63k|	isc_region_t region;
   45|  2.63k|	dns_name_t name;
   46|  2.63k|	dns_name_t prefix;
   47|  2.63k|	unsigned int opts;
   48|       |
   49|  2.63k|	REQUIRE(rdata->type == dns_rdatatype_cname);
  ------------------
  |  |  198|  2.63k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.63k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.63k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.63k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|  2.63k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.63k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.63k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.63k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.63k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|  2.63k|	dns_name_init(&name);
   53|  2.63k|	dns_name_init(&prefix);
   54|       |
   55|  2.63k|	dns_rdata_toregion(rdata, &region);
   56|  2.63k|	dns_name_fromregion(&name, &region);
   57|       |
   58|  2.63k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (58:9): [True: 0, False: 2.63k]
  ------------------
   59|  2.63k|							 : 0;
   60|  2.63k|	return dns_name_totext(&prefix, opts, target);
   61|  2.63k|}

rdata.c:fromwire_csync:
   85|  2.28k|fromwire_csync(ARGS_FROMWIRE) {
   86|  2.28k|	isc_region_t sr;
   87|       |
   88|  2.28k|	REQUIRE(type == dns_rdatatype_csync);
  ------------------
  |  |  198|  2.28k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.28k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.28k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.28k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|       |
   90|  2.28k|	UNUSED(type);
  ------------------
  |  |   69|  2.28k|#define UNUSED(x) (void)(x)
  ------------------
   91|  2.28k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.28k|#define UNUSED(x) (void)(x)
  ------------------
   92|  2.28k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.28k|#define UNUSED(x) (void)(x)
  ------------------
   93|       |
   94|       |	/*
   95|       |	 * Serial + Flags
   96|       |	 */
   97|  2.28k|	isc_buffer_activeregion(source, &sr);
   98|  2.28k|	if (sr.length < 6) {
  ------------------
  |  Branch (98:6): [True: 8, False: 2.28k]
  ------------------
   99|      8|		return ISC_R_UNEXPECTEDEND;
  100|      8|	}
  101|       |
  102|  2.28k|	RETERR(mem_tobuffer(target, sr.base, 6));
  ------------------
  |  |  276|  2.28k|	{                                  \
  |  |  277|  2.28k|		isc_result_t _r = (x);     \
  |  |  278|  2.28k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 2.08k]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|  2.28k|	}
  ------------------
  103|  2.08k|	isc_buffer_forward(source, 6);
  104|  2.08k|	isc_region_consume(&sr, 6);
  ------------------
  |  |   50|  2.08k|	do {                              \
  |  |   51|  2.08k|		isc_region_t *_r = (r);   \
  |  |   52|  2.08k|		unsigned int  _l = (l);   \
  |  |   53|  2.08k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.08k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.08k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.08k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.08k|		_r->base += _l;           \
  |  |   55|  2.08k|		_r->length -= _l;         \
  |  |   56|  2.08k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.08k]
  |  |  ------------------
  ------------------
  105|       |
  106|  2.08k|	RETERR(typemap_test(&sr, true));
  ------------------
  |  |  276|  2.08k|	{                                  \
  |  |  277|  2.08k|		isc_result_t _r = (x);     \
  |  |  278|  2.08k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 28, False: 2.05k]
  |  |  ------------------
  |  |  279|     28|			return ((_r));     \
  |  |  280|     28|		}                          \
  |  |  281|  2.08k|	}
  ------------------
  107|       |
  108|  2.05k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.05k|	{                                  \
  |  |  277|  2.05k|		isc_result_t _r = (x);     \
  |  |  278|  2.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 199, False: 1.86k]
  |  |  ------------------
  |  |  279|    199|			return ((_r));     \
  |  |  280|    199|		}                          \
  |  |  281|  2.05k|	}
  ------------------
  109|  1.86k|	isc_buffer_forward(source, sr.length);
  110|  1.86k|	return ISC_R_SUCCESS;
  111|  2.05k|}
rdata.c:towire_csync:
  114|    736|towire_csync(ARGS_TOWIRE) {
  115|    736|	REQUIRE(rdata->type == dns_rdatatype_csync);
  ------------------
  |  |  198|    736|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    736|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 736, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    736|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|    736|	REQUIRE(rdata->length >= 6);
  ------------------
  |  |  198|    736|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    736|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 736, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    736|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|    736|	UNUSED(cctx);
  ------------------
  |  |   69|    736|#define UNUSED(x) (void)(x)
  ------------------
  119|       |
  120|    736|	return mem_tobuffer(target, rdata->data, rdata->length);
  121|    736|}
rdata.c:totext_csync:
   51|  1.46k|totext_csync(ARGS_TOTEXT) {
   52|  1.46k|	unsigned long num;
   53|  1.46k|	char buf[sizeof("0123456789")]; /* Also TYPE65535 */
   54|  1.46k|	isc_region_t sr;
   55|       |
   56|  1.46k|	REQUIRE(rdata->type == dns_rdatatype_csync);
  ------------------
  |  |  198|  1.46k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.46k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.46k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.46k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|  1.46k|	REQUIRE(rdata->length >= 6);
  ------------------
  |  |  198|  1.46k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.46k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.46k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.46k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|       |
   59|  1.46k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.46k|#define UNUSED(x) (void)(x)
  ------------------
   60|       |
   61|  1.46k|	dns_rdata_toregion(rdata, &sr);
   62|       |
   63|  1.46k|	num = uint32_fromregion(&sr);
   64|  1.46k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.46k|	do {                              \
  |  |   51|  1.46k|		isc_region_t *_r = (r);   \
  |  |   52|  1.46k|		unsigned int  _l = (l);   \
  |  |   53|  1.46k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.46k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.46k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.46k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.46k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.46k|		_r->base += _l;           \
  |  |   55|  1.46k|		_r->length -= _l;         \
  |  |   56|  1.46k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.46k]
  |  |  ------------------
  ------------------
   65|  1.46k|	snprintf(buf, sizeof(buf), "%lu", num);
   66|  1.46k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.46k|	{                                  \
  |  |  277|  1.46k|		isc_result_t _r = (x);     \
  |  |  278|  1.46k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.46k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.46k|	}
  ------------------
   67|       |
   68|  1.46k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.46k|	{                                  \
  |  |  277|  1.46k|		isc_result_t _r = (x);     \
  |  |  278|  1.46k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.46k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.46k|	}
  ------------------
   69|       |
   70|  1.46k|	num = uint16_fromregion(&sr);
   71|  1.46k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.46k|	do {                              \
  |  |   51|  1.46k|		isc_region_t *_r = (r);   \
  |  |   52|  1.46k|		unsigned int  _l = (l);   \
  |  |   53|  1.46k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.46k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.46k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.46k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.46k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.46k|		_r->base += _l;           \
  |  |   55|  1.46k|		_r->length -= _l;         \
  |  |   56|  1.46k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.46k]
  |  |  ------------------
  ------------------
   72|  1.46k|	snprintf(buf, sizeof(buf), "%lu", num);
   73|  1.46k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.46k|	{                                  \
  |  |  277|  1.46k|		isc_result_t _r = (x);     \
  |  |  278|  1.46k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.46k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.46k|	}
  ------------------
   74|       |
   75|       |	/*
   76|       |	 * Don't leave a trailing space when there's no typemap present.
   77|       |	 */
   78|  1.46k|	if (sr.length > 0) {
  ------------------
  |  Branch (78:6): [True: 516, False: 947]
  ------------------
   79|    516|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    516|	{                                  \
  |  |  277|    516|		isc_result_t _r = (x);     \
  |  |  278|    516|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 516]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    516|	}
  ------------------
   80|    516|	}
   81|  1.46k|	return typemap_totext(&sr, NULL, target);
   82|  1.46k|}

rdata.c:fromwire_dlv:
   39|    786|fromwire_dlv(ARGS_FROMWIRE) {
   40|    786|	REQUIRE(type == dns_rdatatype_dlv);
  ------------------
  |  |  198|    786|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    786|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 786, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    786|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|    786|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|    786|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|    786|}
rdata.c:towire_dlv:
   46|    391|towire_dlv(ARGS_TOWIRE) {
   47|    391|	isc_region_t sr;
   48|       |
   49|    391|	REQUIRE(rdata->type == dns_rdatatype_dlv);
  ------------------
  |  |  198|    391|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    391|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    391|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|    391|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    391|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    391|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    391|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|    391|	UNUSED(cctx);
  ------------------
  |  |   69|    391|#define UNUSED(x) (void)(x)
  ------------------
   53|       |
   54|    391|	dns_rdata_toregion(rdata, &sr);
   55|    391|	return mem_tobuffer(target, sr.base, sr.length);
   56|    391|}
rdata.c:totext_dlv:
   31|    772|totext_dlv(ARGS_TOTEXT) {
   32|    772|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    772|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    772|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 772, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    772|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|    772|	REQUIRE(rdata->type == dns_rdatatype_dlv);
  ------------------
  |  |  198|    772|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    772|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 772, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    772|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|    772|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|    772|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|    772|}

rdata.c:compare_dname:
   96|  2.11k|compare_dname(ARGS_COMPARE) {
   97|  2.11k|	dns_name_t name1;
   98|  2.11k|	dns_name_t name2;
   99|  2.11k|	isc_region_t region1;
  100|  2.11k|	isc_region_t region2;
  101|       |
  102|  2.11k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|  2.11k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|  2.11k|	REQUIRE(rdata1->type == dns_rdatatype_dname);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|  2.11k|	REQUIRE(rdata1->length != 0);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|  2.11k|	REQUIRE(rdata2->length != 0);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  2.11k|	dns_name_init(&name1);
  109|  2.11k|	dns_name_init(&name2);
  110|       |
  111|  2.11k|	dns_rdata_toregion(rdata1, &region1);
  112|  2.11k|	dns_rdata_toregion(rdata2, &region2);
  113|       |
  114|  2.11k|	dns_name_fromregion(&name1, &region1);
  115|  2.11k|	dns_name_fromregion(&name2, &region2);
  116|       |
  117|  2.11k|	return dns_name_rdatacompare(&name1, &name2);
  118|  2.11k|}
rdata.c:fromwire_dname:
   65|  2.82k|fromwire_dname(ARGS_FROMWIRE) {
   66|  2.82k|	dns_name_t name;
   67|       |
   68|  2.82k|	REQUIRE(type == dns_rdatatype_dname);
  ------------------
  |  |  198|  2.82k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.82k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.82k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.82k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   69|       |
   70|  2.82k|	UNUSED(type);
  ------------------
  |  |   69|  2.82k|#define UNUSED(x) (void)(x)
  ------------------
   71|  2.82k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.82k|#define UNUSED(x) (void)(x)
  ------------------
   72|       |
   73|  2.82k|	dctx = dns_decompress_setpermitted(dctx, false);
   74|       |
   75|  2.82k|	dns_name_init(&name);
   76|  2.82k|	return dns_name_fromwire(&name, source, dctx, target);
   77|  2.82k|}
rdata.c:towire_dname:
   80|  1.20k|towire_dname(ARGS_TOWIRE) {
   81|  1.20k|	dns_name_t name;
   82|  1.20k|	isc_region_t region;
   83|       |
   84|  1.20k|	REQUIRE(rdata->type == dns_rdatatype_dname);
  ------------------
  |  |  198|  1.20k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.20k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.20k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|  1.20k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.20k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.20k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.20k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  1.20k|	dns_compress_setpermitted(cctx, false);
   88|  1.20k|	dns_name_init(&name);
   89|  1.20k|	dns_rdata_toregion(rdata, &region);
   90|  1.20k|	dns_name_fromregion(&name, &region);
   91|       |
   92|  1.20k|	return dns_name_towire(&name, cctx, target);
   93|  1.20k|}
rdata.c:totext_dname:
   44|  2.38k|totext_dname(ARGS_TOTEXT) {
   45|  2.38k|	isc_region_t region;
   46|  2.38k|	dns_name_t name;
   47|  2.38k|	dns_name_t prefix;
   48|  2.38k|	unsigned int opts;
   49|       |
   50|  2.38k|	REQUIRE(rdata->type == dns_rdatatype_dname);
  ------------------
  |  |  198|  2.38k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.38k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.38k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.38k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|  2.38k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.38k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.38k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.38k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.38k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   52|       |
   53|  2.38k|	dns_name_init(&name);
   54|  2.38k|	dns_name_init(&prefix);
   55|       |
   56|  2.38k|	dns_rdata_toregion(rdata, &region);
   57|  2.38k|	dns_name_fromregion(&name, &region);
   58|       |
   59|  2.38k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (59:9): [True: 0, False: 2.38k]
  ------------------
   60|  2.38k|							 : 0;
   61|  2.38k|	return dns_name_totext(&prefix, opts, target);
   62|  2.38k|}

rdata.c:fromwire_dnskey:
   39|  2.64k|fromwire_dnskey(ARGS_FROMWIRE) {
   40|  2.64k|	REQUIRE(type == dns_rdatatype_dnskey);
  ------------------
  |  |  198|  2.64k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.64k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  2.64k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  2.64k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|  2.64k|}
rdata.c:towire_dnskey:
   46|  1.14k|towire_dnskey(ARGS_TOWIRE) {
   47|  1.14k|	isc_region_t sr;
   48|       |
   49|  1.14k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|  1.14k|	REQUIRE(rdata->type == dns_rdatatype_dnskey);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|  1.14k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   52|       |
   53|  1.14k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   54|       |
   55|  1.14k|	dns_rdata_toregion(rdata, &sr);
   56|  1.14k|	return mem_tobuffer(target, sr.base, sr.length);
   57|  1.14k|}
rdata.c:totext_dnskey:
   31|  2.25k|totext_dnskey(ARGS_TOTEXT) {
   32|  2.25k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  2.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|  2.25k|	REQUIRE(rdata->type == dns_rdatatype_dnskey);
  ------------------
  |  |  198|  2.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|  2.25k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  2.25k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|  2.25k|}

rdata.c:fromwire_doa:
  129|  1.73k|fromwire_doa(ARGS_FROMWIRE) {
  130|  1.73k|	isc_region_t region;
  131|       |
  132|  1.73k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.73k|#define UNUSED(x) (void)(x)
  ------------------
  133|  1.73k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.73k|#define UNUSED(x) (void)(x)
  ------------------
  134|       |
  135|  1.73k|	REQUIRE(type == dns_rdatatype_doa);
  ------------------
  |  |  198|  1.73k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.73k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.73k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.73k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  136|       |
  137|  1.73k|	isc_buffer_activeregion(source, &region);
  138|       |	/*
  139|       |	 * DOA-MEDIA-TYPE may be an empty <character-string> (i.e.,
  140|       |	 * comprising of just the length octet) and DOA-DATA can have
  141|       |	 * zero length.
  142|       |	 */
  143|  1.73k|	if (region.length < 4 + 4 + 1 + 1) {
  ------------------
  |  Branch (143:6): [True: 8, False: 1.72k]
  ------------------
  144|      8|		return ISC_R_UNEXPECTEDEND;
  145|      8|	}
  146|       |
  147|       |	/*
  148|       |	 * Check whether DOA-MEDIA-TYPE length is not malformed.
  149|       |	 */
  150|  1.72k|	if (region.base[9] > region.length - 10) {
  ------------------
  |  Branch (150:6): [True: 3, False: 1.71k]
  ------------------
  151|      3|		return ISC_R_UNEXPECTEDEND;
  152|      3|	}
  153|       |
  154|  1.71k|	isc_buffer_forward(source, region.length);
  155|  1.71k|	return mem_tobuffer(target, region.base, region.length);
  156|  1.72k|}
rdata.c:towire_doa:
  159|    662|towire_doa(ARGS_TOWIRE) {
  160|    662|	isc_region_t region;
  161|       |
  162|    662|	UNUSED(cctx);
  ------------------
  |  |   69|    662|#define UNUSED(x) (void)(x)
  ------------------
  163|       |
  164|    662|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    662|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    662|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 662, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    662|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  165|    662|	REQUIRE(rdata->type == dns_rdatatype_doa);
  ------------------
  |  |  198|    662|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    662|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 662, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    662|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  166|    662|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    662|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    662|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 662, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    662|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  167|       |
  168|    662|	dns_rdata_toregion(rdata, &region);
  169|    662|	return mem_tobuffer(target, region.base, region.length);
  170|    662|}
rdata.c:totext_doa:
   75|  1.29k|totext_doa(ARGS_TOTEXT) {
   76|  1.29k|	char buf[sizeof("4294967295 ")];
   77|  1.29k|	isc_region_t region;
   78|  1.29k|	uint32_t n;
   79|       |
   80|  1.29k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|  1.29k|	REQUIRE(rdata->type == dns_rdatatype_doa);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|  1.29k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|       |
   84|  1.29k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.29k|#define UNUSED(x) (void)(x)
  ------------------
   85|       |
   86|  1.29k|	dns_rdata_toregion(rdata, &region);
   87|       |
   88|       |	/*
   89|       |	 * DOA-ENTERPRISE
   90|       |	 */
   91|  1.29k|	n = uint32_fromregion(&region);
   92|  1.29k|	isc_region_consume(&region, 4);
  ------------------
  |  |   50|  1.29k|	do {                              \
  |  |   51|  1.29k|		isc_region_t *_r = (r);   \
  |  |   52|  1.29k|		unsigned int  _l = (l);   \
  |  |   53|  1.29k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.29k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.29k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.29k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.29k|		_r->base += _l;           \
  |  |   55|  1.29k|		_r->length -= _l;         \
  |  |   56|  1.29k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.29k]
  |  |  ------------------
  ------------------
   93|  1.29k|	snprintf(buf, sizeof(buf), "%u ", n);
   94|  1.29k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.29k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.29k|	}
  ------------------
   95|       |
   96|       |	/*
   97|       |	 * DOA-TYPE
   98|       |	 */
   99|  1.29k|	n = uint32_fromregion(&region);
  100|  1.29k|	isc_region_consume(&region, 4);
  ------------------
  |  |   50|  1.29k|	do {                              \
  |  |   51|  1.29k|		isc_region_t *_r = (r);   \
  |  |   52|  1.29k|		unsigned int  _l = (l);   \
  |  |   53|  1.29k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.29k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.29k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.29k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.29k|		_r->base += _l;           \
  |  |   55|  1.29k|		_r->length -= _l;         \
  |  |   56|  1.29k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.29k]
  |  |  ------------------
  ------------------
  101|  1.29k|	snprintf(buf, sizeof(buf), "%u ", n);
  102|  1.29k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.29k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.29k|	}
  ------------------
  103|       |
  104|       |	/*
  105|       |	 * DOA-LOCATION
  106|       |	 */
  107|  1.29k|	n = uint8_fromregion(&region);
  108|  1.29k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.29k|	do {                              \
  |  |   51|  1.29k|		isc_region_t *_r = (r);   \
  |  |   52|  1.29k|		unsigned int  _l = (l);   \
  |  |   53|  1.29k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.29k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.29k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.29k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.29k|		_r->base += _l;           \
  |  |   55|  1.29k|		_r->length -= _l;         \
  |  |   56|  1.29k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.29k]
  |  |  ------------------
  ------------------
  109|  1.29k|	snprintf(buf, sizeof(buf), "%u ", n);
  110|  1.29k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.29k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.29k|	}
  ------------------
  111|       |
  112|       |	/*
  113|       |	 * DOA-MEDIA-TYPE
  114|       |	 */
  115|  1.29k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.29k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.29k|	}
  ------------------
  116|  1.29k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.29k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.29k|	}
  ------------------
  117|       |
  118|       |	/*
  119|       |	 * DOA-DATA
  120|       |	 */
  121|  1.29k|	if (region.length == 0) {
  ------------------
  |  Branch (121:6): [True: 704, False: 586]
  ------------------
  122|    704|		return str_totext("-", target);
  123|    704|	} else {
  124|    586|		return isc_base64_totext(&region, 60, "", target);
  125|    586|	}
  126|  1.29k|}

rdata.c:fromwire_ds:
  201|  1.34k|fromwire_ds(ARGS_FROMWIRE) {
  202|  1.34k|	REQUIRE(type == dns_rdatatype_ds);
  ------------------
  |  |  198|  1.34k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.34k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.34k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  203|       |
  204|  1.34k|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.34k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  205|  1.34k|}
rdata.c:generic_fromwire_ds:
  160|  4.43k|generic_fromwire_ds(ARGS_FROMWIRE) {
  161|  4.43k|	isc_region_t sr;
  162|       |
  163|  4.43k|	UNUSED(type);
  ------------------
  |  |   69|  4.43k|#define UNUSED(x) (void)(x)
  ------------------
  164|  4.43k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.43k|#define UNUSED(x) (void)(x)
  ------------------
  165|  4.43k|	UNUSED(dctx);
  ------------------
  |  |   69|  4.43k|#define UNUSED(x) (void)(x)
  ------------------
  166|       |
  167|  4.43k|	isc_buffer_activeregion(source, &sr);
  168|       |
  169|       |	/*
  170|       |	 * Check digest lengths if we know them.
  171|       |	 */
  172|  4.43k|	if (sr.length < 5 ||
  ------------------
  |  Branch (172:6): [True: 15, False: 4.41k]
  ------------------
  173|  4.41k|	    (sr.base[3] == DNS_DSDIGEST_SHA1 &&
  ------------------
  |  |   19|  8.83k|#define DNS_DSDIGEST_SHA1     (1)
  ------------------
  |  Branch (173:7): [True: 72, False: 4.34k]
  ------------------
  174|     72|	     sr.length < 4 + ISC_SHA1_DIGESTLENGTH) ||
  ------------------
  |  |   50|     72|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  |  Branch (174:7): [True: 5, False: 67]
  ------------------
  175|  4.41k|	    (sr.base[3] == DNS_DSDIGEST_SHA256 &&
  ------------------
  |  |   20|  8.82k|#define DNS_DSDIGEST_SHA256   (2)
  ------------------
  |  Branch (175:7): [True: 198, False: 4.21k]
  ------------------
  176|    198|	     sr.length < 4 + ISC_SHA256_DIGESTLENGTH) ||
  ------------------
  |  |   54|    198|#define ISC_SHA256_DIGESTLENGTH 32
  ------------------
  |  Branch (176:7): [True: 4, False: 194]
  ------------------
  177|  4.40k|	    (sr.base[3] == DNS_DSDIGEST_SHA384 &&
  ------------------
  |  |   22|  8.81k|#define DNS_DSDIGEST_SHA384   (4)
  ------------------
  |  Branch (177:7): [True: 202, False: 4.20k]
  ------------------
  178|    202|	     sr.length < 4 + ISC_SHA384_DIGESTLENGTH))
  ------------------
  |  |   56|    202|#define ISC_SHA384_DIGESTLENGTH 48
  ------------------
  |  Branch (178:7): [True: 1, False: 201]
  ------------------
  179|     25|	{
  180|     25|		return ISC_R_UNEXPECTEDEND;
  181|     25|	}
  182|       |
  183|       |	/*
  184|       |	 * Only copy digest lengths if we know them.
  185|       |	 * If there is extra data dns_rdata_fromwire() will
  186|       |	 * detect that.
  187|       |	 */
  188|  4.40k|	if (sr.base[3] == DNS_DSDIGEST_SHA1) {
  ------------------
  |  |   19|  4.40k|#define DNS_DSDIGEST_SHA1     (1)
  ------------------
  |  Branch (188:6): [True: 67, False: 4.33k]
  ------------------
  189|     67|		sr.length = 4 + ISC_SHA1_DIGESTLENGTH;
  ------------------
  |  |   50|     67|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  190|  4.33k|	} else if (sr.base[3] == DNS_DSDIGEST_SHA256) {
  ------------------
  |  |   20|  4.33k|#define DNS_DSDIGEST_SHA256   (2)
  ------------------
  |  Branch (190:13): [True: 194, False: 4.14k]
  ------------------
  191|    194|		sr.length = 4 + ISC_SHA256_DIGESTLENGTH;
  ------------------
  |  |   54|    194|#define ISC_SHA256_DIGESTLENGTH 32
  ------------------
  192|  4.14k|	} else if (sr.base[3] == DNS_DSDIGEST_SHA384) {
  ------------------
  |  |   22|  4.14k|#define DNS_DSDIGEST_SHA384   (4)
  ------------------
  |  Branch (192:13): [True: 201, False: 3.94k]
  ------------------
  193|    201|		sr.length = 4 + ISC_SHA384_DIGESTLENGTH;
  ------------------
  |  |   56|    201|#define ISC_SHA384_DIGESTLENGTH 48
  ------------------
  194|    201|	}
  195|       |
  196|  4.40k|	isc_buffer_forward(source, sr.length);
  197|  4.40k|	return mem_tobuffer(target, sr.base, sr.length);
  198|  4.43k|}
rdata.c:towire_ds:
  208|    473|towire_ds(ARGS_TOWIRE) {
  209|    473|	isc_region_t sr;
  210|       |
  211|    473|	REQUIRE(rdata->type == dns_rdatatype_ds);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  212|    473|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  213|       |
  214|    473|	UNUSED(cctx);
  ------------------
  |  |   69|    473|#define UNUSED(x) (void)(x)
  ------------------
  215|       |
  216|    473|	dns_rdata_toregion(rdata, &sr);
  217|    473|	return mem_tobuffer(target, sr.base, sr.length);
  218|    473|}
rdata.c:totext_ds:
  152|    912|totext_ds(ARGS_TOTEXT) {
  153|    912|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    912|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    912|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 912, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    912|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  154|    912|	REQUIRE(rdata->type == dns_rdatatype_ds);
  ------------------
  |  |  198|    912|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    912|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 912, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    912|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  155|       |
  156|    912|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|    912|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  157|    912|}
rdata.c:generic_totext_ds:
   93|  3.81k|generic_totext_ds(ARGS_TOTEXT) {
   94|  3.81k|	isc_region_t sr;
   95|  3.81k|	char buf[sizeof("64000 ")];
   96|  3.81k|	unsigned int n;
   97|       |
   98|  3.81k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.81k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.81k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.81k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.81k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   99|       |
  100|  3.81k|	UNUSED(tctx);
  ------------------
  |  |   69|  3.81k|#define UNUSED(x) (void)(x)
  ------------------
  101|       |
  102|  3.81k|	dns_rdata_toregion(rdata, &sr);
  103|       |
  104|       |	/*
  105|       |	 * Key tag.
  106|       |	 */
  107|  3.81k|	n = uint16_fromregion(&sr);
  108|  3.81k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.81k|	do {                              \
  |  |   51|  3.81k|		isc_region_t *_r = (r);   \
  |  |   52|  3.81k|		unsigned int  _l = (l);   \
  |  |   53|  3.81k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.81k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.81k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.81k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.81k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.81k|		_r->base += _l;           \
  |  |   55|  3.81k|		_r->length -= _l;         \
  |  |   56|  3.81k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.81k]
  |  |  ------------------
  ------------------
  109|  3.81k|	snprintf(buf, sizeof(buf), "%u ", n);
  110|  3.81k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.81k|	{                                  \
  |  |  277|  3.81k|		isc_result_t _r = (x);     \
  |  |  278|  3.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.81k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.81k|	}
  ------------------
  111|       |
  112|       |	/*
  113|       |	 * Algorithm.
  114|       |	 */
  115|  3.81k|	n = uint8_fromregion(&sr);
  116|  3.81k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.81k|	do {                              \
  |  |   51|  3.81k|		isc_region_t *_r = (r);   \
  |  |   52|  3.81k|		unsigned int  _l = (l);   \
  |  |   53|  3.81k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.81k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.81k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.81k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.81k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.81k|		_r->base += _l;           \
  |  |   55|  3.81k|		_r->length -= _l;         \
  |  |   56|  3.81k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.81k]
  |  |  ------------------
  ------------------
  117|  3.81k|	snprintf(buf, sizeof(buf), "%u ", n);
  118|  3.81k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.81k|	{                                  \
  |  |  277|  3.81k|		isc_result_t _r = (x);     \
  |  |  278|  3.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.81k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.81k|	}
  ------------------
  119|       |
  120|       |	/*
  121|       |	 * Digest type.
  122|       |	 */
  123|  3.81k|	n = uint8_fromregion(&sr);
  124|  3.81k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.81k|	do {                              \
  |  |   51|  3.81k|		isc_region_t *_r = (r);   \
  |  |   52|  3.81k|		unsigned int  _l = (l);   \
  |  |   53|  3.81k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.81k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.81k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.81k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.81k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.81k|		_r->base += _l;           \
  |  |   55|  3.81k|		_r->length -= _l;         \
  |  |   56|  3.81k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.81k]
  |  |  ------------------
  ------------------
  125|  3.81k|	snprintf(buf, sizeof(buf), "%u", n);
  126|  3.81k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.81k|	{                                  \
  |  |  277|  3.81k|		isc_result_t _r = (x);     \
  |  |  278|  3.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.81k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.81k|	}
  ------------------
  127|       |
  128|       |	/*
  129|       |	 * Digest.
  130|       |	 */
  131|  3.81k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.81k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (131:6): [True: 0, False: 3.81k]
  ------------------
  132|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  133|      0|	}
  134|  3.81k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.81k|	{                                  \
  |  |  277|  3.81k|		isc_result_t _r = (x);     \
  |  |  278|  3.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.81k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.81k|	}
  ------------------
  135|  3.81k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  3.81k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (135:6): [True: 3.81k, False: 0]
  ------------------
  136|  3.81k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (136:7): [True: 0, False: 3.81k]
  ------------------
  137|      0|			RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  138|  3.81k|		} else {
  139|  3.81k|			RETERR(isc_hex_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  3.81k|	{                                  \
  |  |  277|  3.81k|		isc_result_t _r = (x);     \
  |  |  278|  3.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.81k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.81k|	}
  ------------------
  140|  3.81k|					      tctx->linebreak, target));
  141|  3.81k|		}
  142|  3.81k|	} else {
  143|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  144|      0|	}
  145|  3.81k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.81k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (145:6): [True: 0, False: 3.81k]
  ------------------
  146|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  147|      0|	}
  148|  3.81k|	return ISC_R_SUCCESS;
  149|  3.81k|}

rdata.c:fromwire_dsync:
  169|  1.48k|fromwire_dsync(ARGS_FROMWIRE) {
  170|  1.48k|	dns_name_t name;
  171|  1.48k|	isc_region_t sregion;
  172|       |
  173|  1.48k|	REQUIRE(type == dns_rdatatype_dsync);
  ------------------
  |  |  198|  1.48k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.48k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.48k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.48k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  174|       |
  175|  1.48k|	UNUSED(type);
  ------------------
  |  |   69|  1.48k|#define UNUSED(x) (void)(x)
  ------------------
  176|  1.48k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.48k|#define UNUSED(x) (void)(x)
  ------------------
  177|       |
  178|  1.48k|	dctx = dns_decompress_setpermitted(dctx, false);
  179|       |
  180|  1.48k|	dns_name_init(&name);
  181|       |
  182|  1.48k|	isc_buffer_activeregion(source, &sregion);
  183|  1.48k|	if (sregion.length < 5) {
  ------------------
  |  Branch (183:6): [True: 5, False: 1.48k]
  ------------------
  184|      5|		return ISC_R_UNEXPECTEDEND;
  185|      5|	}
  186|  1.48k|	RETERR(mem_tobuffer(target, sregion.base, 5));
  ------------------
  |  |  276|  1.48k|	{                                  \
  |  |  277|  1.48k|		isc_result_t _r = (x);     \
  |  |  278|  1.48k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 1.28k]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|  1.48k|	}
  ------------------
  187|  1.28k|	isc_buffer_forward(source, 5);
  188|  1.28k|	return dns_name_fromwire(&name, source, dctx, target);
  189|  1.48k|}
rdata.c:towire_dsync:
  192|    521|towire_dsync(ARGS_TOWIRE) {
  193|    521|	dns_name_t name;
  194|    521|	isc_region_t region;
  195|       |
  196|    521|	REQUIRE(rdata->type == dns_rdatatype_dsync);
  ------------------
  |  |  198|    521|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    521|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 521, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    521|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  197|    521|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    521|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    521|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 521, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    521|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  198|       |
  199|    521|	dns_compress_setpermitted(cctx, false);
  200|       |
  201|    521|	dns_rdata_toregion(rdata, &region);
  202|    521|	RETERR(mem_tobuffer(target, region.base, 5));
  ------------------
  |  |  276|    521|	{                                  \
  |  |  277|    521|		isc_result_t _r = (x);     \
  |  |  278|    521|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 520]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    521|	}
  ------------------
  203|    520|	isc_region_consume(&region, 5);
  ------------------
  |  |   50|    520|	do {                              \
  |  |   51|    520|		isc_region_t *_r = (r);   \
  |  |   52|    520|		unsigned int  _l = (l);   \
  |  |   53|    520|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    520|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    520|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 520, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    520|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    520|		_r->base += _l;           \
  |  |   55|    520|		_r->length -= _l;         \
  |  |   56|    520|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 520]
  |  |  ------------------
  ------------------
  204|       |
  205|    520|	dns_name_init(&name);
  206|    520|	dns_name_fromregion(&name, &region);
  207|       |
  208|    520|	return dns_name_towire(&name, cctx, target);
  209|    521|}
rdata.c:totext_dsync:
  105|  1.02k|totext_dsync(ARGS_TOTEXT) {
  106|  1.02k|	isc_region_t region;
  107|  1.02k|	dns_name_t name;
  108|  1.02k|	dns_name_t prefix;
  109|  1.02k|	unsigned int opts;
  110|  1.02k|	char buf[sizeof("TYPE64000")];
  111|  1.02k|	unsigned short num;
  112|  1.02k|	dns_rdatatype_t type;
  113|  1.02k|	dns_dsyncscheme_t scheme;
  114|       |
  115|  1.02k|	REQUIRE(rdata->type == dns_rdatatype_dsync);
  ------------------
  |  |  198|  1.02k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.02k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  1.02k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.02k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.02k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|  1.02k|	dns_name_init(&name);
  119|  1.02k|	dns_name_init(&prefix);
  120|       |
  121|  1.02k|	dns_rdata_toregion(rdata, &region);
  122|       |
  123|       |	/*
  124|       |	 * Type.
  125|       |	 */
  126|  1.02k|	type = uint16_fromregion(&region);
  127|  1.02k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.02k|	do {                              \
  |  |   51|  1.02k|		isc_region_t *_r = (r);   \
  |  |   52|  1.02k|		unsigned int  _l = (l);   \
  |  |   53|  1.02k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.02k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.02k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.02k|		_r->base += _l;           \
  |  |   55|  1.02k|		_r->length -= _l;         \
  |  |   56|  1.02k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.02k]
  |  |  ------------------
  ------------------
  128|       |	/*
  129|       |	 * XXXAG We should have something like dns_rdatatype_isknown()
  130|       |	 * that does the right thing with type 0.
  131|       |	 */
  132|  1.02k|	if (dns_rdatatype_isknown(type) && type != 0) {
  ------------------
  |  Branch (132:6): [True: 383, False: 639]
  |  Branch (132:37): [True: 383, False: 0]
  ------------------
  133|    383|		RETERR(dns_rdatatype_totext(type, target));
  ------------------
  |  |  276|    383|	{                                  \
  |  |  277|    383|		isc_result_t _r = (x);     \
  |  |  278|    383|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 383]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    383|	}
  ------------------
  134|    639|	} else {
  135|    639|		snprintf(buf, sizeof(buf), "TYPE%u", type);
  136|    639|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    639|	{                                  \
  |  |  277|    639|		isc_result_t _r = (x);     \
  |  |  278|    639|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 639]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    639|	}
  ------------------
  137|    639|	}
  138|  1.02k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.02k|	{                                  \
  |  |  277|  1.02k|		isc_result_t _r = (x);     \
  |  |  278|  1.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.02k|	}
  ------------------
  139|       |
  140|       |	/*
  141|       |	 * Scheme.
  142|       |	 */
  143|  1.02k|	scheme = uint8_fromregion(&region);
  144|  1.02k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.02k|	do {                              \
  |  |   51|  1.02k|		isc_region_t *_r = (r);   \
  |  |   52|  1.02k|		unsigned int  _l = (l);   \
  |  |   53|  1.02k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.02k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.02k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.02k|		_r->base += _l;           \
  |  |   55|  1.02k|		_r->length -= _l;         \
  |  |   56|  1.02k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.02k]
  |  |  ------------------
  ------------------
  145|  1.02k|	RETERR(dns_dsyncscheme_totext(scheme, target));
  ------------------
  |  |  276|  1.02k|	{                                  \
  |  |  277|  1.02k|		isc_result_t _r = (x);     \
  |  |  278|  1.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.02k|	}
  ------------------
  146|       |
  147|  1.02k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.02k|	{                                  \
  |  |  277|  1.02k|		isc_result_t _r = (x);     \
  |  |  278|  1.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.02k|	}
  ------------------
  148|       |
  149|       |	/*
  150|       |	 * Port
  151|       |	 */
  152|  1.02k|	num = uint16_fromregion(&region);
  153|  1.02k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.02k|	do {                              \
  |  |   51|  1.02k|		isc_region_t *_r = (r);   \
  |  |   52|  1.02k|		unsigned int  _l = (l);   \
  |  |   53|  1.02k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.02k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.02k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.02k|		_r->base += _l;           \
  |  |   55|  1.02k|		_r->length -= _l;         \
  |  |   56|  1.02k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.02k]
  |  |  ------------------
  ------------------
  154|  1.02k|	snprintf(buf, sizeof(buf), "%u", num);
  155|  1.02k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.02k|	{                                  \
  |  |  277|  1.02k|		isc_result_t _r = (x);     \
  |  |  278|  1.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.02k|	}
  ------------------
  156|       |
  157|  1.02k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.02k|	{                                  \
  |  |  277|  1.02k|		isc_result_t _r = (x);     \
  |  |  278|  1.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.02k|	}
  ------------------
  158|       |
  159|       |	/*
  160|       |	 * Target
  161|       |	 */
  162|  1.02k|	dns_name_fromregion(&name, &region);
  163|  1.02k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (163:9): [True: 0, False: 1.02k]
  ------------------
  164|  1.02k|							 : 0;
  165|  1.02k|	return dns_name_totext(&prefix, opts, target);
  166|  1.02k|}

rdata.c:fromwire_eui48:
   71|  1.14k|fromwire_eui48(ARGS_FROMWIRE) {
   72|  1.14k|	isc_region_t sregion;
   73|       |
   74|  1.14k|	REQUIRE(type == dns_rdatatype_eui48);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   75|       |
   76|  1.14k|	UNUSED(type);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.14k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   78|  1.14k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   79|       |
   80|  1.14k|	isc_buffer_activeregion(source, &sregion);
   81|  1.14k|	if (sregion.length != 6) {
  ------------------
  |  Branch (81:6): [True: 6, False: 1.14k]
  ------------------
   82|      6|		return DNS_R_FORMERR;
   83|      6|	}
   84|  1.14k|	isc_buffer_forward(source, sregion.length);
   85|  1.14k|	return mem_tobuffer(target, sregion.base, sregion.length);
   86|  1.14k|}
rdata.c:towire_eui48:
   89|    378|towire_eui48(ARGS_TOWIRE) {
   90|    378|	REQUIRE(rdata->type == dns_rdatatype_eui48);
  ------------------
  |  |  198|    378|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    378|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 378, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    378|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|    378|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|    378|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    378|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 378, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    378|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|       |
   93|    378|	UNUSED(cctx);
  ------------------
  |  |   69|    378|#define UNUSED(x) (void)(x)
  ------------------
   94|       |
   95|    378|	return mem_tobuffer(target, rdata->data, rdata->length);
   96|    378|}
rdata.c:totext_eui48:
   56|    745|totext_eui48(ARGS_TOTEXT) {
   57|    745|	char buf[sizeof("xx-xx-xx-xx-xx-xx")];
   58|       |
   59|    745|	REQUIRE(rdata->type == dns_rdatatype_eui48);
  ------------------
  |  |  198|    745|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    745|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 745, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    745|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|    745|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|    745|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    745|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 745, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    745|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   61|       |
   62|    745|	UNUSED(tctx);
  ------------------
  |  |   69|    745|#define UNUSED(x) (void)(x)
  ------------------
   63|       |
   64|    745|	(void)snprintf(buf, sizeof(buf), "%02x-%02x-%02x-%02x-%02x-%02x",
   65|    745|		       rdata->data[0], rdata->data[1], rdata->data[2],
   66|    745|		       rdata->data[3], rdata->data[4], rdata->data[5]);
   67|    745|	return str_totext(buf, target);
   68|    745|}

rdata.c:fromwire_eui64:
   74|  1.59k|fromwire_eui64(ARGS_FROMWIRE) {
   75|  1.59k|	isc_region_t sregion;
   76|       |
   77|  1.59k|	REQUIRE(type == dns_rdatatype_eui64);
  ------------------
  |  |  198|  1.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   78|       |
   79|  1.59k|	UNUSED(type);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   80|  1.59k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   81|  1.59k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   82|       |
   83|  1.59k|	isc_buffer_activeregion(source, &sregion);
   84|  1.59k|	if (sregion.length != 8) {
  ------------------
  |  Branch (84:6): [True: 18, False: 1.57k]
  ------------------
   85|     18|		return DNS_R_FORMERR;
   86|     18|	}
   87|  1.57k|	isc_buffer_forward(source, sregion.length);
   88|  1.57k|	return mem_tobuffer(target, sregion.base, sregion.length);
   89|  1.59k|}
rdata.c:towire_eui64:
   92|    347|towire_eui64(ARGS_TOWIRE) {
   93|    347|	REQUIRE(rdata->type == dns_rdatatype_eui64);
  ------------------
  |  |  198|    347|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    347|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 347, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    347|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   94|    347|	REQUIRE(rdata->length == 8);
  ------------------
  |  |  198|    347|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    347|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 347, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    347|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|       |
   96|    347|	UNUSED(cctx);
  ------------------
  |  |   69|    347|#define UNUSED(x) (void)(x)
  ------------------
   97|       |
   98|    347|	return mem_tobuffer(target, rdata->data, rdata->length);
   99|    347|}
rdata.c:totext_eui64:
   58|    688|totext_eui64(ARGS_TOTEXT) {
   59|    688|	char buf[sizeof("xx-xx-xx-xx-xx-xx-xx-xx")];
   60|       |
   61|    688|	REQUIRE(rdata->type == dns_rdatatype_eui64);
  ------------------
  |  |  198|    688|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    688|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 688, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    688|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|    688|	REQUIRE(rdata->length == 8);
  ------------------
  |  |  198|    688|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    688|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 688, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    688|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   63|       |
   64|    688|	UNUSED(tctx);
  ------------------
  |  |   69|    688|#define UNUSED(x) (void)(x)
  ------------------
   65|       |
   66|    688|	(void)snprintf(
   67|    688|		buf, sizeof(buf), "%02x-%02x-%02x-%02x-%02x-%02x-%02x-%02x",
   68|    688|		rdata->data[0], rdata->data[1], rdata->data[2], rdata->data[3],
   69|    688|		rdata->data[4], rdata->data[5], rdata->data[6], rdata->data[7]);
   70|    688|	return str_totext(buf, target);
   71|    688|}

rdata.c:fromwire_gpos:
   65|  1.26k|fromwire_gpos(ARGS_FROMWIRE) {
   66|  1.26k|	int i;
   67|       |
   68|  1.26k|	REQUIRE(type == dns_rdatatype_gpos);
  ------------------
  |  |  198|  1.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   69|       |
   70|  1.26k|	UNUSED(type);
  ------------------
  |  |   69|  1.26k|#define UNUSED(x) (void)(x)
  ------------------
   71|  1.26k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.26k|#define UNUSED(x) (void)(x)
  ------------------
   72|  1.26k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.26k|#define UNUSED(x) (void)(x)
  ------------------
   73|       |
   74|  4.52k|	for (i = 0; i < 3; i++) {
  ------------------
  |  Branch (74:14): [True: 3.46k, False: 1.06k]
  ------------------
   75|  3.46k|		RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  3.46k|	{                                  \
  |  |  277|  3.46k|		isc_result_t _r = (x);     \
  |  |  278|  3.46k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 3.26k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  3.46k|	}
  ------------------
   76|  3.26k|	}
   77|  1.06k|	return ISC_R_SUCCESS;
   78|  1.26k|}
rdata.c:towire_gpos:
   81|    583|towire_gpos(ARGS_TOWIRE) {
   82|    583|	REQUIRE(rdata->type == dns_rdatatype_gpos);
  ------------------
  |  |  198|    583|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    583|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 583, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    583|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    583|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    583|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    583|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 583, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    583|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    583|	UNUSED(cctx);
  ------------------
  |  |   69|    583|#define UNUSED(x) (void)(x)
  ------------------
   86|       |
   87|    583|	return mem_tobuffer(target, rdata->data, rdata->length);
   88|    583|}
rdata.c:totext_gpos:
   43|    881|totext_gpos(ARGS_TOTEXT) {
   44|    881|	isc_region_t region;
   45|    881|	int i;
   46|       |
   47|    881|	REQUIRE(rdata->type == dns_rdatatype_gpos);
  ------------------
  |  |  198|    881|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    881|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 881, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    881|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   48|    881|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    881|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    881|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 881, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    881|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|       |
   50|    881|	UNUSED(tctx);
  ------------------
  |  |   69|    881|#define UNUSED(x) (void)(x)
  ------------------
   51|       |
   52|    881|	dns_rdata_toregion(rdata, &region);
   53|       |
   54|  3.52k|	for (i = 0; i < 3; i++) {
  ------------------
  |  Branch (54:14): [True: 2.64k, False: 881]
  ------------------
   55|  2.64k|		RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  2.64k|	{                                  \
  |  |  277|  2.64k|		isc_result_t _r = (x);     \
  |  |  278|  2.64k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.64k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.64k|	}
  ------------------
   56|  2.64k|		if (i != 2) {
  ------------------
  |  Branch (56:7): [True: 1.76k, False: 881]
  ------------------
   57|  1.76k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.76k|	{                                  \
  |  |  277|  1.76k|		isc_result_t _r = (x);     \
  |  |  278|  1.76k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.76k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.76k|	}
  ------------------
   58|  1.76k|		}
   59|  2.64k|	}
   60|       |
   61|    881|	return ISC_R_SUCCESS;
   62|    881|}

rdata.c:fromwire_hhit:
   63|  1.16k|fromwire_hhit(ARGS_FROMWIRE) {
   64|  1.16k|	isc_region_t sr;
   65|       |
   66|  1.16k|	REQUIRE(type == dns_rdatatype_hhit);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.16k|	UNUSED(type);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.16k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   70|  1.16k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   71|       |
   72|  1.16k|	isc_buffer_activeregion(source, &sr);
   73|  1.16k|	if (sr.length == 0) {
  ------------------
  |  Branch (73:6): [True: 2, False: 1.16k]
  ------------------
   74|      2|		return ISC_R_UNEXPECTEDEND;
   75|      2|	}
   76|       |
   77|  1.16k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  1.16k|	{                                  \
  |  |  277|  1.16k|		isc_result_t _r = (x);     \
  |  |  278|  1.16k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 209, False: 953]
  |  |  ------------------
  |  |  279|    209|			return ((_r));     \
  |  |  280|    209|		}                          \
  |  |  281|  1.16k|	}
  ------------------
   78|    953|	isc_buffer_forward(source, sr.length);
   79|    953|	return ISC_R_SUCCESS;
   80|  1.16k|}
rdata.c:towire_hhit:
   83|    457|towire_hhit(ARGS_TOWIRE) {
   84|    457|	REQUIRE(rdata->type == dns_rdatatype_hhit);
  ------------------
  |  |  198|    457|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    457|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 457, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    457|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|    457|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    457|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    457|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 457, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    457|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    457|	UNUSED(cctx);
  ------------------
  |  |   69|    457|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    457|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|    457|}
rdata.c:totext_hhit:
   35|    750|totext_hhit(ARGS_TOTEXT) {
   36|    750|	isc_region_t sr;
   37|       |
   38|    750|	REQUIRE(rdata->type == dns_rdatatype_hhit);
  ------------------
  |  |  198|    750|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    750|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 750, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    750|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   39|    750|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    750|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    750|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 750, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    750|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|       |
   41|    750|	dns_rdata_toregion(rdata, &sr);
   42|       |
   43|       |	/* data */
   44|    750|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    750|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (44:6): [True: 0, False: 750]
  ------------------
   45|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   46|      0|	}
   47|       |
   48|    750|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (48:6): [True: 0, False: 750]
  ------------------
   49|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|    750|	} else {
   51|    750|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    750|	{                                  \
  |  |  277|    750|		isc_result_t _r = (x);     \
  |  |  278|    750|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 750]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    750|	}
  ------------------
   52|    750|					 target));
   53|    750|	}
   54|       |
   55|    750|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    750|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (55:6): [True: 0, False: 750]
  ------------------
   56|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   57|      0|	}
   58|       |
   59|    750|	return ISC_R_SUCCESS;
   60|    750|}

rdata.c:fromwire_hinfo:
   55|  1.04k|fromwire_hinfo(ARGS_FROMWIRE) {
   56|  1.04k|	REQUIRE(type == dns_rdatatype_hinfo);
  ------------------
  |  |  198|  1.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|  1.04k|	UNUSED(type);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
   59|  1.04k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
   60|  1.04k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
   61|       |
   62|  1.04k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  1.04k|	{                                  \
  |  |  277|  1.04k|		isc_result_t _r = (x);     \
  |  |  278|  1.04k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 195, False: 851]
  |  |  ------------------
  |  |  279|    195|			return ((_r));     \
  |  |  280|    195|		}                          \
  |  |  281|  1.04k|	}
  ------------------
   63|    851|	return txt_fromwire(source, target);
   64|  1.04k|}
rdata.c:towire_hinfo:
   67|    312|towire_hinfo(ARGS_TOWIRE) {
   68|    312|	UNUSED(cctx);
  ------------------
  |  |   69|    312|#define UNUSED(x) (void)(x)
  ------------------
   69|       |
   70|    312|	REQUIRE(rdata->type == dns_rdatatype_hinfo);
  ------------------
  |  |  198|    312|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    312|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 312, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    312|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|    312|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    312|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    312|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 312, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    312|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|    312|	return mem_tobuffer(target, rdata->data, rdata->length);
   74|    312|}
rdata.c:totext_hinfo:
   40|    620|totext_hinfo(ARGS_TOTEXT) {
   41|    620|	isc_region_t region;
   42|       |
   43|    620|	UNUSED(tctx);
  ------------------
  |  |   69|    620|#define UNUSED(x) (void)(x)
  ------------------
   44|       |
   45|    620|	REQUIRE(rdata->type == dns_rdatatype_hinfo);
  ------------------
  |  |  198|    620|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    620|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 620, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    620|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|    620|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    620|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    620|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 620, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    620|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|       |
   48|    620|	dns_rdata_toregion(rdata, &region);
   49|    620|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|    620|	{                                  \
  |  |  277|    620|		isc_result_t _r = (x);     \
  |  |  278|    620|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 620]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    620|	}
  ------------------
   50|    620|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    620|	{                                  \
  |  |  277|    620|		isc_result_t _r = (x);     \
  |  |  278|    620|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 620]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    620|	}
  ------------------
   51|       |	return txt_totext(&region, true, target);
   52|    620|}

rdata.c:fromwire_hip:
  190|  48.4k|fromwire_hip(ARGS_FROMWIRE) {
  191|  48.4k|	isc_region_t region, rr;
  192|  48.4k|	dns_name_t name;
  193|  48.4k|	uint8_t hit_len;
  194|  48.4k|	uint16_t key_len;
  195|  48.4k|	size_t len;
  196|       |
  197|  48.4k|	REQUIRE(type == dns_rdatatype_hip);
  ------------------
  |  |  198|  48.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  48.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 48.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  48.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  198|       |
  199|  48.4k|	UNUSED(type);
  ------------------
  |  |   69|  48.4k|#define UNUSED(x) (void)(x)
  ------------------
  200|  48.4k|	UNUSED(rdclass);
  ------------------
  |  |   69|  48.4k|#define UNUSED(x) (void)(x)
  ------------------
  201|       |
  202|  48.4k|	isc_buffer_activeregion(source, &region);
  203|  48.4k|	if (region.length < 4U) {
  ------------------
  |  Branch (203:6): [True: 6, False: 48.3k]
  ------------------
  204|      6|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  205|      0|	}
  206|       |
  207|  48.3k|	rr = region;
  208|  48.3k|	hit_len = uint8_fromregion(&region);
  209|  48.3k|	if (hit_len == 0) {
  ------------------
  |  Branch (209:6): [True: 2, False: 48.3k]
  ------------------
  210|      2|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      2|	{                                  \
  |  |  277|      2|		isc_result_t _r = (x);     \
  |  |  278|      2|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 0]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|      2|	}
  ------------------
  211|      0|	}
  212|  48.3k|	isc_region_consume(&region, 2); /* hit length + algorithm */
  ------------------
  |  |   50|  48.3k|	do {                              \
  |  |   51|  48.3k|		isc_region_t *_r = (r);   \
  |  |   52|  48.3k|		unsigned int  _l = (l);   \
  |  |   53|  48.3k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  48.3k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  48.3k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 48.3k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  48.3k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  48.3k|		_r->base += _l;           \
  |  |   55|  48.3k|		_r->length -= _l;         \
  |  |   56|  48.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 48.3k]
  |  |  ------------------
  ------------------
  213|  48.3k|	key_len = uint16_fromregion(&region);
  214|  48.3k|	if (key_len == 0) {
  ------------------
  |  Branch (214:6): [True: 3, False: 48.3k]
  ------------------
  215|      3|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      3|	{                                  \
  |  |  277|      3|		isc_result_t _r = (x);     \
  |  |  278|      3|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 0]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|      3|	}
  ------------------
  216|      0|	}
  217|  48.3k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  48.3k|	do {                              \
  |  |   51|  48.3k|		isc_region_t *_r = (r);   \
  |  |   52|  48.3k|		unsigned int  _l = (l);   \
  |  |   53|  48.3k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  48.3k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  48.3k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 48.3k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  48.3k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  48.3k|		_r->base += _l;           \
  |  |   55|  48.3k|		_r->length -= _l;         \
  |  |   56|  48.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 48.3k]
  |  |  ------------------
  ------------------
  218|  48.3k|	len = hit_len + key_len;
  219|  48.3k|	if (len > region.length) {
  ------------------
  |  Branch (219:6): [True: 21, False: 48.3k]
  ------------------
  220|     21|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     21|	{                                  \
  |  |  277|     21|		isc_result_t _r = (x);     \
  |  |  278|     21|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 21, False: 0]
  |  |  ------------------
  |  |  279|     21|			return ((_r));     \
  |  |  280|     21|		}                          \
  |  |  281|     21|	}
  ------------------
  221|      0|	}
  222|       |
  223|  48.3k|	RETERR(mem_tobuffer(target, rr.base, 4 + len));
  ------------------
  |  |  276|  48.3k|	{                                  \
  |  |  277|  48.3k|		isc_result_t _r = (x);     \
  |  |  278|  48.3k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 260, False: 48.1k]
  |  |  ------------------
  |  |  279|    260|			return ((_r));     \
  |  |  280|    260|		}                          \
  |  |  281|  48.3k|	}
  ------------------
  224|  48.1k|	isc_buffer_forward(source, 4 + len);
  225|       |
  226|  48.1k|	dctx = dns_decompress_setpermitted(dctx, false);
  227|  1.23M|	while (isc_buffer_activelength(source) > 0) {
  ------------------
  |  |  160|  1.23M|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  |  Branch (227:9): [True: 1.21M, False: 21.4k]
  ------------------
  228|  1.21M|		dns_name_init(&name);
  229|  1.21M|		RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  1.21M|	{                                  \
  |  |  277|  1.21M|		isc_result_t _r = (x);     \
  |  |  278|  1.21M|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 26.6k, False: 1.19M]
  |  |  ------------------
  |  |  279|  26.6k|			return ((_r));     \
  |  |  280|  26.6k|		}                          \
  |  |  281|  1.21M|	}
  ------------------
  230|  1.19M|	}
  231|  21.4k|	return ISC_R_SUCCESS;
  232|  48.1k|}
rdata.c:towire_hip:
  235|  2.85k|towire_hip(ARGS_TOWIRE) {
  236|  2.85k|	isc_region_t region;
  237|       |
  238|  2.85k|	REQUIRE(rdata->type == dns_rdatatype_hip);
  ------------------
  |  |  198|  2.85k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.85k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.85k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.85k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  239|  2.85k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.85k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.85k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.85k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.85k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  240|       |
  241|  2.85k|	UNUSED(cctx);
  ------------------
  |  |   69|  2.85k|#define UNUSED(x) (void)(x)
  ------------------
  242|       |
  243|  2.85k|	dns_rdata_toregion(rdata, &region);
  244|  2.85k|	return mem_tobuffer(target, region.base, region.length);
  245|  2.85k|}
rdata.c:totext_hip:
  117|  6.35k|totext_hip(ARGS_TOTEXT) {
  118|  6.35k|	isc_region_t region;
  119|  6.35k|	dns_name_t name;
  120|  6.35k|	unsigned int length, key_len, hit_len;
  121|  6.35k|	unsigned char algorithm;
  122|  6.35k|	char buf[sizeof("225 ")];
  123|       |
  124|  6.35k|	REQUIRE(rdata->type == dns_rdatatype_hip);
  ------------------
  |  |  198|  6.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  125|  6.35k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  6.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  126|       |
  127|  6.35k|	dns_rdata_toregion(rdata, &region);
  128|       |
  129|  6.35k|	hit_len = uint8_fromregion(&region);
  130|  6.35k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  6.35k|	do {                              \
  |  |   51|  6.35k|		isc_region_t *_r = (r);   \
  |  |   52|  6.35k|		unsigned int  _l = (l);   \
  |  |   53|  6.35k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.35k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.35k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.35k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.35k|		_r->base += _l;           \
  |  |   55|  6.35k|		_r->length -= _l;         \
  |  |   56|  6.35k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.35k]
  |  |  ------------------
  ------------------
  131|       |
  132|  6.35k|	algorithm = uint8_fromregion(&region);
  133|  6.35k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  6.35k|	do {                              \
  |  |   51|  6.35k|		isc_region_t *_r = (r);   \
  |  |   52|  6.35k|		unsigned int  _l = (l);   \
  |  |   53|  6.35k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.35k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.35k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.35k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.35k|		_r->base += _l;           \
  |  |   55|  6.35k|		_r->length -= _l;         \
  |  |   56|  6.35k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.35k]
  |  |  ------------------
  ------------------
  134|       |
  135|  6.35k|	key_len = uint16_fromregion(&region);
  136|  6.35k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  6.35k|	do {                              \
  |  |   51|  6.35k|		isc_region_t *_r = (r);   \
  |  |   52|  6.35k|		unsigned int  _l = (l);   \
  |  |   53|  6.35k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.35k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.35k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.35k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.35k|		_r->base += _l;           \
  |  |   55|  6.35k|		_r->length -= _l;         \
  |  |   56|  6.35k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.35k]
  |  |  ------------------
  ------------------
  137|       |
  138|  6.35k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  6.35k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (138:6): [True: 0, False: 6.35k]
  ------------------
  139|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  140|      0|	}
  141|       |
  142|       |	/*
  143|       |	 * Algorithm
  144|       |	 */
  145|  6.35k|	snprintf(buf, sizeof(buf), "%u ", algorithm);
  146|  6.35k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  6.35k|	{                                  \
  |  |  277|  6.35k|		isc_result_t _r = (x);     \
  |  |  278|  6.35k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.35k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.35k|	}
  ------------------
  147|       |
  148|       |	/*
  149|       |	 * HIT.
  150|       |	 */
  151|  6.35k|	INSIST(hit_len < region.length);
  ------------------
  |  |  202|  6.35k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.35k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 6.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  152|  6.35k|	length = region.length;
  153|  6.35k|	region.length = hit_len;
  154|  6.35k|	RETERR(isc_hex_totext(&region, 1, "", target));
  ------------------
  |  |  276|  6.35k|	{                                  \
  |  |  277|  6.35k|		isc_result_t _r = (x);     \
  |  |  278|  6.35k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.35k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.35k|	}
  ------------------
  155|  6.35k|	region.length = length - hit_len;
  156|  6.35k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  6.35k|	{                                  \
  |  |  277|  6.35k|		isc_result_t _r = (x);     \
  |  |  278|  6.35k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.35k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.35k|	}
  ------------------
  157|       |
  158|       |	/*
  159|       |	 * Public KEY.
  160|       |	 */
  161|  6.35k|	INSIST(key_len <= region.length);
  ------------------
  |  |  202|  6.35k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.35k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 6.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  6.35k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  162|  6.35k|	length = region.length;
  163|  6.35k|	region.length = key_len;
  164|  6.35k|	RETERR(isc_base64_totext(&region, 1, "", target));
  ------------------
  |  |  276|  6.35k|	{                                  \
  |  |  277|  6.35k|		isc_result_t _r = (x);     \
  |  |  278|  6.35k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.35k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.35k|	}
  ------------------
  165|  6.35k|	region.length = length - key_len;
  166|  6.35k|	if (region.length > 0) {
  ------------------
  |  Branch (166:6): [True: 6.05k, False: 295]
  ------------------
  167|  6.05k|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  6.05k|	{                                  \
  |  |  277|  6.05k|		isc_result_t _r = (x);     \
  |  |  278|  6.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.05k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.05k|	}
  ------------------
  168|  6.05k|	}
  169|       |
  170|       |	/*
  171|       |	 * Rendezvous Servers.
  172|       |	 */
  173|  6.35k|	dns_name_init(&name);
  174|   362k|	while (region.length > 0) {
  ------------------
  |  Branch (174:9): [True: 355k, False: 6.34k]
  ------------------
  175|   355k|		dns_name_fromregion(&name, &region);
  176|       |
  177|   355k|		RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|   355k|	{                                  \
  |  |  277|   355k|		isc_result_t _r = (x);     \
  |  |  278|   355k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 7, False: 355k]
  |  |  ------------------
  |  |  279|      7|			return ((_r));     \
  |  |  280|      7|		}                          \
  |  |  281|   355k|	}
  ------------------
  178|   355k|		isc_region_consume(&region, name.length);
  ------------------
  |  |   50|   355k|	do {                              \
  |  |   51|   355k|		isc_region_t *_r = (r);   \
  |  |   52|   355k|		unsigned int  _l = (l);   \
  |  |   53|   355k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   355k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   355k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 355k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   355k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   355k|		_r->base += _l;           \
  |  |   55|   355k|		_r->length -= _l;         \
  |  |   56|   355k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 355k]
  |  |  ------------------
  ------------------
  179|   355k|		if (region.length > 0) {
  ------------------
  |  Branch (179:7): [True: 349k, False: 6.04k]
  ------------------
  180|   349k|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|   349k|	{                                  \
  |  |  277|   349k|		isc_result_t _r = (x);     \
  |  |  278|   349k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 349k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   349k|	}
  ------------------
  181|   349k|		}
  182|   355k|	}
  183|  6.34k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  6.34k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (183:6): [True: 0, False: 6.34k]
  ------------------
  184|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  185|      0|	}
  186|  6.34k|	return ISC_R_SUCCESS;
  187|  6.34k|}

rdata.c:fromwire_ipseckey:
  212|  3.73k|fromwire_ipseckey(ARGS_FROMWIRE) {
  213|  3.73k|	dns_name_t name;
  214|  3.73k|	isc_region_t region;
  215|       |
  216|  3.73k|	REQUIRE(type == dns_rdatatype_ipseckey);
  ------------------
  |  |  198|  3.73k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.73k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.73k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.73k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  217|       |
  218|  3.73k|	UNUSED(type);
  ------------------
  |  |   69|  3.73k|#define UNUSED(x) (void)(x)
  ------------------
  219|  3.73k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.73k|#define UNUSED(x) (void)(x)
  ------------------
  220|       |
  221|  3.73k|	dctx = dns_decompress_setpermitted(dctx, false);
  222|       |
  223|  3.73k|	dns_name_init(&name);
  224|       |
  225|  3.73k|	isc_buffer_activeregion(source, &region);
  226|  3.73k|	if (region.length < 3) {
  ------------------
  |  Branch (226:6): [True: 4, False: 3.73k]
  ------------------
  227|      4|		return ISC_R_UNEXPECTEDEND;
  228|      4|	}
  229|       |
  230|  3.73k|	switch (region.base[1]) {
  231|  1.94k|	case 0:
  ------------------
  |  Branch (231:2): [True: 1.94k, False: 1.78k]
  ------------------
  232|  1.94k|		if (region.length < 4) {
  ------------------
  |  Branch (232:7): [True: 1, False: 1.94k]
  ------------------
  233|      1|			return ISC_R_UNEXPECTEDEND;
  234|      1|		}
  235|  1.94k|		isc_buffer_forward(source, region.length);
  236|  1.94k|		return mem_tobuffer(target, region.base, region.length);
  237|       |
  238|    702|	case 1:
  ------------------
  |  Branch (238:2): [True: 702, False: 3.03k]
  ------------------
  239|    702|		if (region.length < 8) {
  ------------------
  |  Branch (239:7): [True: 3, False: 699]
  ------------------
  240|      3|			return ISC_R_UNEXPECTEDEND;
  241|      3|		}
  242|    699|		isc_buffer_forward(source, region.length);
  243|    699|		return mem_tobuffer(target, region.base, region.length);
  244|       |
  245|    407|	case 2:
  ------------------
  |  Branch (245:2): [True: 407, False: 3.32k]
  ------------------
  246|    407|		if (region.length < 20) {
  ------------------
  |  Branch (246:7): [True: 7, False: 400]
  ------------------
  247|      7|			return ISC_R_UNEXPECTEDEND;
  248|      7|		}
  249|    400|		isc_buffer_forward(source, region.length);
  250|    400|		return mem_tobuffer(target, region.base, region.length);
  251|       |
  252|    678|	case 3:
  ------------------
  |  Branch (252:2): [True: 678, False: 3.05k]
  ------------------
  253|    678|		RETERR(mem_tobuffer(target, region.base, 3));
  ------------------
  |  |  276|    678|	{                                  \
  |  |  277|    678|		isc_result_t _r = (x);     \
  |  |  278|    678|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 66, False: 612]
  |  |  ------------------
  |  |  279|     66|			return ((_r));     \
  |  |  280|     66|		}                          \
  |  |  281|    678|	}
  ------------------
  254|    612|		isc_buffer_forward(source, 3);
  255|    612|		RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|    612|	{                                  \
  |  |  277|    612|		isc_result_t _r = (x);     \
  |  |  278|    612|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 71, False: 541]
  |  |  ------------------
  |  |  279|     71|			return ((_r));     \
  |  |  280|     71|		}                          \
  |  |  281|    612|	}
  ------------------
  256|    541|		isc_buffer_activeregion(source, &region);
  257|    541|		isc_buffer_forward(source, region.length);
  258|    541|		if (region.length < 1) {
  ------------------
  |  Branch (258:7): [True: 3, False: 538]
  ------------------
  259|      3|			return ISC_R_UNEXPECTEDEND;
  260|      3|		}
  261|    538|		return mem_tobuffer(target, region.base, region.length);
  262|       |
  263|      1|	default:
  ------------------
  |  Branch (263:2): [True: 1, False: 3.73k]
  ------------------
  264|      1|		return ISC_R_NOTIMPLEMENTED;
  265|  3.73k|	}
  266|  3.73k|}
rdata.c:towire_ipseckey:
  269|  1.06k|towire_ipseckey(ARGS_TOWIRE) {
  270|  1.06k|	isc_region_t region;
  271|       |
  272|  1.06k|	REQUIRE(rdata->type == dns_rdatatype_ipseckey);
  ------------------
  |  |  198|  1.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.06k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  273|  1.06k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.06k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  274|       |
  275|  1.06k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.06k|#define UNUSED(x) (void)(x)
  ------------------
  276|       |
  277|  1.06k|	dns_rdata_toregion(rdata, &region);
  278|  1.06k|	return mem_tobuffer(target, region.base, region.length);
  279|  1.06k|}
rdata.c:totext_ipseckey:
  122|  2.07k|totext_ipseckey(ARGS_TOTEXT) {
  123|  2.07k|	isc_region_t region;
  124|  2.07k|	dns_name_t name;
  125|  2.07k|	char buf[sizeof("255 ")];
  126|  2.07k|	unsigned short num;
  127|  2.07k|	unsigned short gateway;
  128|       |
  129|  2.07k|	REQUIRE(rdata->type == dns_rdatatype_ipseckey);
  ------------------
  |  |  198|  2.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|  2.07k|	REQUIRE(rdata->length >= 3);
  ------------------
  |  |  198|  2.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|  2.07k|	dns_name_init(&name);
  133|       |
  134|  2.07k|	if (rdata->data[1] > 3U) {
  ------------------
  |  Branch (134:6): [True: 0, False: 2.07k]
  ------------------
  135|      0|		return ISC_R_NOTIMPLEMENTED;
  136|      0|	}
  137|       |
  138|  2.07k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (138:6): [True: 0, False: 2.07k]
  ------------------
  139|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  140|      0|	}
  141|       |
  142|       |	/*
  143|       |	 * Precedence.
  144|       |	 */
  145|  2.07k|	dns_rdata_toregion(rdata, &region);
  146|  2.07k|	num = uint8_fromregion(&region);
  147|  2.07k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.07k|	do {                              \
  |  |   51|  2.07k|		isc_region_t *_r = (r);   \
  |  |   52|  2.07k|		unsigned int  _l = (l);   \
  |  |   53|  2.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.07k|		_r->base += _l;           \
  |  |   55|  2.07k|		_r->length -= _l;         \
  |  |   56|  2.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.07k]
  |  |  ------------------
  ------------------
  148|  2.07k|	snprintf(buf, sizeof(buf), "%u ", num);
  149|  2.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  150|       |
  151|       |	/*
  152|       |	 * Gateway type.
  153|       |	 */
  154|  2.07k|	gateway = uint8_fromregion(&region);
  155|  2.07k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.07k|	do {                              \
  |  |   51|  2.07k|		isc_region_t *_r = (r);   \
  |  |   52|  2.07k|		unsigned int  _l = (l);   \
  |  |   53|  2.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.07k|		_r->base += _l;           \
  |  |   55|  2.07k|		_r->length -= _l;         \
  |  |   56|  2.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.07k]
  |  |  ------------------
  ------------------
  156|  2.07k|	snprintf(buf, sizeof(buf), "%u ", gateway);
  157|  2.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  158|       |
  159|       |	/*
  160|       |	 * Algorithm.
  161|       |	 */
  162|  2.07k|	num = uint8_fromregion(&region);
  163|  2.07k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.07k|	do {                              \
  |  |   51|  2.07k|		isc_region_t *_r = (r);   \
  |  |   52|  2.07k|		unsigned int  _l = (l);   \
  |  |   53|  2.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.07k|		_r->base += _l;           \
  |  |   55|  2.07k|		_r->length -= _l;         \
  |  |   56|  2.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.07k]
  |  |  ------------------
  ------------------
  164|  2.07k|	snprintf(buf, sizeof(buf), "%u ", num);
  165|  2.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  166|       |
  167|       |	/*
  168|       |	 * Gateway.
  169|       |	 */
  170|  2.07k|	switch (gateway) {
  ------------------
  |  Branch (170:10): [True: 2.07k, False: 0]
  ------------------
  171|  1.21k|	case 0:
  ------------------
  |  Branch (171:2): [True: 1.21k, False: 863]
  ------------------
  172|  1.21k|		RETERR(str_totext(".", target));
  ------------------
  |  |  276|  1.21k|	{                                  \
  |  |  277|  1.21k|		isc_result_t _r = (x);     \
  |  |  278|  1.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.21k|	}
  ------------------
  173|  1.21k|		break;
  174|       |
  175|    276|	case 1:
  ------------------
  |  Branch (175:2): [True: 276, False: 1.80k]
  ------------------
  176|    276|		RETERR(inet_totext(AF_INET, tctx->flags, &region, target));
  ------------------
  |  |  276|    276|	{                                  \
  |  |  277|    276|		isc_result_t _r = (x);     \
  |  |  278|    276|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 276]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    276|	}
  ------------------
  177|    276|		isc_region_consume(&region, 4);
  ------------------
  |  |   50|    276|	do {                              \
  |  |   51|    276|		isc_region_t *_r = (r);   \
  |  |   52|    276|		unsigned int  _l = (l);   \
  |  |   53|    276|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    276|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    276|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 276, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    276|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    276|		_r->base += _l;           \
  |  |   55|    276|		_r->length -= _l;         \
  |  |   56|    276|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 276]
  |  |  ------------------
  ------------------
  178|    276|		break;
  179|       |
  180|    233|	case 2:
  ------------------
  |  Branch (180:2): [True: 233, False: 1.84k]
  ------------------
  181|    233|		RETERR(inet_totext(AF_INET6, tctx->flags, &region, target));
  ------------------
  |  |  276|    233|	{                                  \
  |  |  277|    233|		isc_result_t _r = (x);     \
  |  |  278|    233|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 233]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    233|	}
  ------------------
  182|    233|		isc_region_consume(&region, 16);
  ------------------
  |  |   50|    233|	do {                              \
  |  |   51|    233|		isc_region_t *_r = (r);   \
  |  |   52|    233|		unsigned int  _l = (l);   \
  |  |   53|    233|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    233|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    233|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 233, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    233|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    233|		_r->base += _l;           \
  |  |   55|    233|		_r->length -= _l;         \
  |  |   56|    233|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 233]
  |  |  ------------------
  ------------------
  183|    233|		break;
  184|       |
  185|    354|	case 3:
  ------------------
  |  Branch (185:2): [True: 354, False: 1.72k]
  ------------------
  186|    354|		dns_name_fromregion(&name, &region);
  187|    354|		RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|    354|	{                                  \
  |  |  277|    354|		isc_result_t _r = (x);     \
  |  |  278|    354|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 354]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    354|	}
  ------------------
  188|    354|		isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    354|	do {                              \
  |  |   51|    354|		isc_region_t *_r = (r);   \
  |  |   52|    354|		unsigned int  _l = (l);   \
  |  |   53|    354|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    354|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    354|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 354, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    354|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    354|		_r->base += _l;           \
  |  |   55|    354|		_r->length -= _l;         \
  |  |   56|    354|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 354]
  |  |  ------------------
  ------------------
  189|    354|		break;
  190|  2.07k|	}
  191|       |
  192|       |	/*
  193|       |	 * Key.
  194|       |	 */
  195|  2.07k|	if (region.length > 0U) {
  ------------------
  |  Branch (195:6): [True: 2.07k, False: 0]
  ------------------
  196|  2.07k|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  197|  2.07k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (197:7): [True: 0, False: 2.07k]
  ------------------
  198|      0|			RETERR(isc_base64_totext(&region, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  199|  2.07k|		} else {
  200|  2.07k|			RETERR(isc_base64_totext(&region, tctx->width - 2,
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  201|  2.07k|						 tctx->linebreak, target));
  202|  2.07k|		}
  203|  2.07k|	}
  204|       |
  205|  2.07k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (205:6): [True: 0, False: 2.07k]
  ------------------
  206|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  207|      0|	}
  208|  2.07k|	return ISC_R_SUCCESS;
  209|  2.07k|}

rdata.c:fromwire_isdn:
   70|  1.35k|fromwire_isdn(ARGS_FROMWIRE) {
   71|  1.35k|	REQUIRE(type == dns_rdatatype_isdn);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|  1.35k|	UNUSED(type);
  ------------------
  |  |   69|  1.35k|#define UNUSED(x) (void)(x)
  ------------------
   74|  1.35k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.35k|#define UNUSED(x) (void)(x)
  ------------------
   75|  1.35k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.35k|#define UNUSED(x) (void)(x)
  ------------------
   76|       |
   77|  1.35k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  1.35k|	{                                  \
  |  |  277|  1.35k|		isc_result_t _r = (x);     \
  |  |  278|  1.35k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 67, False: 1.28k]
  |  |  ------------------
  |  |  279|     67|			return ((_r));     \
  |  |  280|     67|		}                          \
  |  |  281|  1.35k|	}
  ------------------
   78|  1.28k|	if (buffer_empty(source)) {
  ------------------
  |  Branch (78:6): [True: 708, False: 577]
  ------------------
   79|    708|		return ISC_R_SUCCESS;
   80|    708|	}
   81|    577|	return txt_fromwire(source, target);
   82|  1.28k|}
rdata.c:towire_isdn:
   85|    605|towire_isdn(ARGS_TOWIRE) {
   86|    605|	UNUSED(cctx);
  ------------------
  |  |   69|    605|#define UNUSED(x) (void)(x)
  ------------------
   87|       |
   88|    605|	REQUIRE(rdata->type == dns_rdatatype_isdn);
  ------------------
  |  |  198|    605|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    605|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 605, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    605|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|    605|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    605|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    605|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 605, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    605|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|       |
   91|    605|	return mem_tobuffer(target, rdata->data, rdata->length);
   92|    605|}
rdata.c:totext_isdn:
   52|  1.19k|totext_isdn(ARGS_TOTEXT) {
   53|  1.19k|	isc_region_t region;
   54|       |
   55|  1.19k|	REQUIRE(rdata->type == dns_rdatatype_isdn);
  ------------------
  |  |  198|  1.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|  1.19k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|  1.19k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.19k|#define UNUSED(x) (void)(x)
  ------------------
   59|       |
   60|  1.19k|	dns_rdata_toregion(rdata, &region);
   61|  1.19k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  1.19k|	{                                  \
  |  |  277|  1.19k|		isc_result_t _r = (x);     \
  |  |  278|  1.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.19k|	}
  ------------------
   62|  1.19k|	if (region.length == 0) {
  ------------------
  |  Branch (62:6): [True: 679, False: 514]
  ------------------
   63|    679|		return ISC_R_SUCCESS;
   64|    679|	}
   65|    514|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    514|	{                                  \
  |  |  277|    514|		isc_result_t _r = (x);     \
  |  |  278|    514|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 514]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    514|	}
  ------------------
   66|       |	return txt_totext(&region, true, target);
   67|    514|}

rdata.c:fromwire_key:
  250|  1.62k|fromwire_key(ARGS_FROMWIRE) {
  251|  1.62k|	REQUIRE(type == dns_rdatatype_key);
  ------------------
  |  |  198|  1.62k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.62k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.62k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.62k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|       |
  253|  1.62k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.62k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  254|  1.62k|}
rdata.c:generic_fromwire_key:
  195|  6.94k|generic_fromwire_key(ARGS_FROMWIRE) {
  196|  6.94k|	unsigned char algorithm;
  197|  6.94k|	uint16_t flags;
  198|  6.94k|	isc_region_t sr;
  199|       |
  200|  6.94k|	UNUSED(rdclass);
  ------------------
  |  |   69|  6.94k|#define UNUSED(x) (void)(x)
  ------------------
  201|  6.94k|	UNUSED(dctx);
  ------------------
  |  |   69|  6.94k|#define UNUSED(x) (void)(x)
  ------------------
  202|       |
  203|  6.94k|	isc_buffer_activeregion(source, &sr);
  204|  6.94k|	if (sr.length < 4) {
  ------------------
  |  Branch (204:6): [True: 20, False: 6.92k]
  ------------------
  205|     20|		return ISC_R_UNEXPECTEDEND;
  206|     20|	}
  207|  6.92k|	flags = (sr.base[0] << 8) | sr.base[1];
  208|       |
  209|  6.92k|	if (type == dns_rdatatype_rkey && flags != 0U) {
  ------------------
  |  |  170|  13.8k|#define dns_rdatatype_rkey	((dns_rdatatype_t)dns_rdatatype_rkey)
  ------------------
  |  Branch (209:6): [True: 1.36k, False: 5.55k]
  |  Branch (209:36): [True: 12, False: 1.35k]
  ------------------
  210|     12|		return DNS_R_FORMERR;
  211|     12|	}
  212|       |
  213|  6.90k|	algorithm = sr.base[3];
  214|  6.90k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  6.90k|	{                                  \
  |  |  277|  6.90k|		isc_result_t _r = (x);     \
  |  |  278|  6.90k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 73, False: 6.83k]
  |  |  ------------------
  |  |  279|     73|			return ((_r));     \
  |  |  280|     73|		}                          \
  |  |  281|  6.90k|	}
  ------------------
  215|  6.83k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  6.83k|	do {                              \
  |  |   51|  6.83k|		isc_region_t *_r = (r);   \
  |  |   52|  6.83k|		unsigned int  _l = (l);   \
  |  |   53|  6.83k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.83k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.83k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.83k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.83k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.83k|		_r->base += _l;           \
  |  |   55|  6.83k|		_r->length -= _l;         \
  |  |   56|  6.83k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.83k]
  |  |  ------------------
  ------------------
  216|  6.83k|	isc_buffer_forward(source, 4);
  217|       |
  218|  6.83k|	if (sr.length == 0) {
  ------------------
  |  Branch (218:6): [True: 11, False: 6.82k]
  ------------------
  219|     11|		return ISC_R_UNEXPECTEDEND;
  220|     11|	}
  221|       |
  222|  6.82k|	if (algorithm == DNS_KEYALG_PRIVATEDNS ||
  ------------------
  |  Branch (222:6): [True: 472, False: 6.35k]
  ------------------
  223|  6.35k|	    algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (223:6): [True: 86, False: 6.26k]
  ------------------
  224|    558|	{
  225|    558|		isc_buffer_t b = *source;
  226|    558|		RETERR(check_private(&b, algorithm));
  ------------------
  |  |  276|    558|	{                                  \
  |  |  277|    558|		isc_result_t _r = (x);     \
  |  |  278|    558|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 13, False: 545]
  |  |  ------------------
  |  |  279|     13|			return ((_r));     \
  |  |  280|     13|		}                          \
  |  |  281|    558|	}
  ------------------
  227|    545|	}
  228|       |
  229|  6.81k|	isc_buffer_activeregion(source, &sr);
  230|  6.81k|	isc_buffer_forward(source, sr.length);
  231|  6.81k|	return mem_tobuffer(target, sr.base, sr.length);
  232|  6.82k|}
rdata.c:towire_key:
  257|    783|towire_key(ARGS_TOWIRE) {
  258|    783|	isc_region_t sr;
  259|       |
  260|    783|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    783|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    783|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 783, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    783|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  261|    783|	REQUIRE(rdata->type == dns_rdatatype_key);
  ------------------
  |  |  198|    783|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    783|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 783, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    783|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  262|    783|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    783|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    783|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 783, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    783|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  263|       |
  264|    783|	UNUSED(cctx);
  ------------------
  |  |   69|    783|#define UNUSED(x) (void)(x)
  ------------------
  265|       |
  266|    783|	dns_rdata_toregion(rdata, &sr);
  267|    783|	return mem_tobuffer(target, sr.base, sr.length);
  268|    783|}
rdata.c:totext_key:
  242|  1.56k|totext_key(ARGS_TOTEXT) {
  243|  1.56k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.56k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.56k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.56k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.56k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  244|  1.56k|	REQUIRE(rdata->type == dns_rdatatype_key);
  ------------------
  |  |  198|  1.56k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.56k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.56k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.56k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  245|       |
  246|  1.56k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  1.56k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  247|  1.56k|}
rdata.c:generic_totext_key:
   82|  6.27k|generic_totext_key(ARGS_TOTEXT) {
   83|  6.27k|	isc_region_t sr;
   84|  6.27k|	char buf[sizeof("[key id = 64000]")];
   85|  6.27k|	unsigned int flags;
   86|  6.27k|	unsigned char algorithm;
   87|  6.27k|	char algbuf[DNS_NAME_FORMATSIZE];
   88|  6.27k|	const char *keyinfo;
   89|  6.27k|	isc_region_t tmpr;
   90|       |
   91|  6.27k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  6.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|       |
   93|  6.27k|	dns_rdata_toregion(rdata, &sr);
   94|       |
   95|       |	/* flags */
   96|  6.27k|	flags = uint16_fromregion(&sr);
   97|  6.27k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  6.27k|	do {                              \
  |  |   51|  6.27k|		isc_region_t *_r = (r);   \
  |  |   52|  6.27k|		unsigned int  _l = (l);   \
  |  |   53|  6.27k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.27k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.27k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.27k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.27k|		_r->base += _l;           \
  |  |   55|  6.27k|		_r->length -= _l;         \
  |  |   56|  6.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.27k]
  |  |  ------------------
  ------------------
   98|  6.27k|	snprintf(buf, sizeof(buf), "%u", flags);
   99|  6.27k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  100|  6.27k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  101|  6.27k|	if ((flags & DNS_KEYFLAG_KSK) != 0) {
  ------------------
  |  Branch (101:6): [True: 2.73k, False: 3.53k]
  ------------------
  102|  2.73k|		if (flags & DNS_KEYFLAG_REVOKE) {
  ------------------
  |  Branch (102:7): [True: 1.17k, False: 1.56k]
  ------------------
  103|  1.17k|			keyinfo = "revoked KSK";
  104|  1.56k|		} else {
  105|  1.56k|			keyinfo = "KSK";
  106|  1.56k|		}
  107|  3.53k|	} else {
  108|  3.53k|		keyinfo = "ZSK";
  109|  3.53k|	}
  110|       |
  111|       |	/* protocol */
  112|  6.27k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  113|  6.27k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  6.27k|	do {                              \
  |  |   51|  6.27k|		isc_region_t *_r = (r);   \
  |  |   52|  6.27k|		unsigned int  _l = (l);   \
  |  |   53|  6.27k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.27k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.27k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.27k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.27k|		_r->base += _l;           \
  |  |   55|  6.27k|		_r->length -= _l;         \
  |  |   56|  6.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.27k]
  |  |  ------------------
  ------------------
  114|  6.27k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  115|  6.27k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  116|       |
  117|       |	/* algorithm */
  118|  6.27k|	algorithm = sr.base[0];
  119|  6.27k|	snprintf(buf, sizeof(buf), "%u", algorithm);
  120|  6.27k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  6.27k|	do {                              \
  |  |   51|  6.27k|		isc_region_t *_r = (r);   \
  |  |   52|  6.27k|		unsigned int  _l = (l);   \
  |  |   53|  6.27k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.27k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.27k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.27k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.27k|		_r->base += _l;           \
  |  |   55|  6.27k|		_r->length -= _l;         \
  |  |   56|  6.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.27k]
  |  |  ------------------
  ------------------
  121|  6.27k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  122|       |
  123|  6.27k|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0 &&
  ------------------
  |  |  195|  6.27k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (123:6): [True: 0, False: 6.27k]
  ------------------
  124|      0|	    algorithm == DNS_KEYALG_PRIVATEDNS)
  ------------------
  |  Branch (124:6): [True: 0, False: 0]
  ------------------
  125|      0|	{
  126|      0|		dns_name_t name;
  127|      0|		dns_name_init(&name);
  128|      0|		dns_name_fromregion(&name, &sr);
  129|      0|		dns_name_format(&name, algbuf, sizeof(algbuf));
  130|  6.27k|	} else if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0 &&
  ------------------
  |  |  195|  6.27k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (130:13): [True: 0, False: 6.27k]
  ------------------
  131|      0|		   algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (131:6): [True: 0, False: 0]
  ------------------
  132|      0|	{
  133|      0|		const unsigned char *in = sr.base + 1;
  134|      0|		ASN1_OBJECT *obj = d2i_ASN1_OBJECT(NULL, &in, *sr.base);
  135|      0|		INSIST(obj != NULL);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  136|      0|		int n = i2t_ASN1_OBJECT(algbuf, sizeof(algbuf), obj);
  137|      0|		ASN1_OBJECT_free(obj);
  138|      0|		if (n == -1 || (size_t)n >= sizeof(algbuf)) {
  ------------------
  |  Branch (138:7): [True: 0, False: 0]
  |  Branch (138:18): [True: 0, False: 0]
  ------------------
  139|      0|			dns_secalg_format((dns_secalg_t)algorithm, algbuf,
  140|      0|					  sizeof(algbuf));
  141|      0|		}
  142|  6.27k|	} else {
  143|  6.27k|		dns_secalg_format((dns_secalg_t)algorithm, algbuf,
  144|  6.27k|				  sizeof(algbuf));
  145|  6.27k|	}
  146|       |
  147|       |	/* key */
  148|  6.27k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  6.27k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (148:6): [True: 0, False: 6.27k]
  ------------------
  149|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  150|      0|	}
  151|  6.27k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  152|       |
  153|  6.27k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  6.27k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (153:6): [True: 6.27k, False: 0]
  ------------------
  154|  6.27k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (154:7): [True: 0, False: 6.27k]
  ------------------
  155|      0|			RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  156|  6.27k|		} else {
  157|  6.27k|			RETERR(isc_base64_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  6.27k|	{                                  \
  |  |  277|  6.27k|		isc_result_t _r = (x);     \
  |  |  278|  6.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.27k|	}
  ------------------
  158|  6.27k|						 tctx->linebreak, target));
  159|  6.27k|		}
  160|  6.27k|	} else {
  161|      0|		dns_rdata_toregion(rdata, &tmpr);
  162|      0|		snprintf(buf, sizeof(buf), "[key id = %u]",
  163|      0|			 dst_region_computeid(&tmpr));
  164|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  165|      0|	}
  166|       |
  167|  6.27k|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|  6.27k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (167:6): [True: 0, False: 6.27k]
  ------------------
  168|      0|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  169|  6.27k|	} else if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  6.27k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (169:13): [True: 0, False: 6.27k]
  ------------------
  170|      0|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  171|      0|	}
  172|       |
  173|  6.27k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  6.27k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (173:6): [True: 0, False: 6.27k]
  ------------------
  174|      0|		RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  175|      0|	}
  176|       |
  177|  6.27k|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|  6.27k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (177:6): [True: 0, False: 6.27k]
  ------------------
  178|      0|		if (rdata->type == dns_rdatatype_dnskey ||
  ------------------
  |  |  162|      0|#define dns_rdatatype_dnskey	((dns_rdatatype_t)dns_rdatatype_dnskey)
  ------------------
  |  Branch (178:7): [True: 0, False: 0]
  ------------------
  179|      0|		    rdata->type == dns_rdatatype_cdnskey)
  ------------------
  |  |  173|      0|#define dns_rdatatype_cdnskey	((dns_rdatatype_t)dns_rdatatype_cdnskey)
  ------------------
  |  Branch (179:7): [True: 0, False: 0]
  ------------------
  180|      0|		{
  181|      0|			RETERR(str_totext(" ; ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  182|      0|			RETERR(str_totext(keyinfo, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  183|      0|		}
  184|      0|		RETERR(str_totext("; alg = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  185|      0|		RETERR(str_totext(algbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  186|      0|		RETERR(str_totext(" ; key id = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  187|      0|		dns_rdata_toregion(rdata, &tmpr);
  188|      0|		snprintf(buf, sizeof(buf), "%u", dst_region_computeid(&tmpr));
  189|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  190|      0|	}
  191|  6.27k|	return ISC_R_SUCCESS;
  192|  6.27k|}

rdata.c:fromwire_keydata:
  251|  1.79k|fromwire_keydata(ARGS_FROMWIRE) {
  252|  1.79k|	isc_region_t sr;
  253|       |
  254|  1.79k|	REQUIRE(type == dns_rdatatype_keydata);
  ------------------
  |  |  198|  1.79k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.79k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.79k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.79k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  255|       |
  256|  1.79k|	UNUSED(type);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  257|  1.79k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  258|  1.79k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  259|       |
  260|  1.79k|	isc_buffer_activeregion(source, &sr);
  261|  1.79k|	isc_buffer_forward(source, sr.length);
  262|  1.79k|	return mem_tobuffer(target, sr.base, sr.length);
  263|  1.79k|}
rdata.c:towire_keydata:
  266|    804|towire_keydata(ARGS_TOWIRE) {
  267|    804|	isc_region_t sr;
  268|       |
  269|    804|	REQUIRE(rdata->type == dns_rdatatype_keydata);
  ------------------
  |  |  198|    804|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    804|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 804, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    804|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  270|       |
  271|    804|	UNUSED(cctx);
  ------------------
  |  |   69|    804|#define UNUSED(x) (void)(x)
  ------------------
  272|       |
  273|    804|	dns_rdata_toregion(rdata, &sr);
  274|    804|	return mem_tobuffer(target, sr.base, sr.length);
  275|    804|}
rdata.c:totext_keydata:
   90|  1.58k|totext_keydata(ARGS_TOTEXT) {
   91|  1.58k|	isc_region_t sr;
   92|  1.58k|	char buf[sizeof("64000")];
   93|  1.58k|	unsigned int flags;
   94|  1.58k|	unsigned char proto, algorithm;
   95|  1.58k|	unsigned long refresh, add, deltime;
   96|  1.58k|	char algbuf[DNS_NAME_FORMATSIZE];
   97|  1.58k|	const char *keyinfo;
   98|       |
   99|  1.58k|	REQUIRE(rdata->type == dns_rdatatype_keydata);
  ------------------
  |  |  198|  1.58k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.58k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.58k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.58k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|       |
  101|  1.58k|	if ((tctx->flags & DNS_STYLEFLAG_KEYDATA) == 0 || rdata->length < 16) {
  ------------------
  |  |  198|  1.58k|#define DNS_STYLEFLAG_KEYDATA 0x00000008ULL
  ------------------
  |  Branch (101:6): [True: 1.58k, False: 0]
  |  Branch (101:52): [True: 0, False: 0]
  ------------------
  102|  1.58k|		return unknown_totext(rdata, tctx, target);
  103|  1.58k|	}
  104|       |
  105|      0|	dns_rdata_toregion(rdata, &sr);
  106|       |
  107|       |	/* refresh timer */
  108|      0|	refresh = uint32_fromregion(&sr);
  109|      0|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  110|      0|	RETERR(dns_time32_totext(refresh, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  111|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  112|       |
  113|       |	/* add hold-down */
  114|      0|	add = uint32_fromregion(&sr);
  115|      0|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  116|      0|	RETERR(dns_time32_totext(add, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  117|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  118|       |
  119|       |	/* remove hold-down */
  120|      0|	deltime = uint32_fromregion(&sr);
  121|      0|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  122|      0|	RETERR(dns_time32_totext(deltime, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  123|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  124|       |
  125|       |	/* flags */
  126|      0|	flags = uint16_fromregion(&sr);
  127|      0|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  128|      0|	snprintf(buf, sizeof(buf), "%u", flags);
  129|      0|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  130|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  131|      0|	if ((flags & DNS_KEYFLAG_KSK) != 0) {
  ------------------
  |  Branch (131:6): [True: 0, False: 0]
  ------------------
  132|      0|		if ((flags & DNS_KEYFLAG_REVOKE) != 0) {
  ------------------
  |  Branch (132:7): [True: 0, False: 0]
  ------------------
  133|      0|			keyinfo = "revoked KSK";
  134|      0|		} else {
  135|      0|			keyinfo = "KSK";
  136|      0|		}
  137|      0|	} else {
  138|      0|		keyinfo = "ZSK";
  139|      0|	}
  140|       |
  141|       |	/* protocol */
  142|      0|	proto = sr.base[0];
  143|      0|	snprintf(buf, sizeof(buf), "%u", proto);
  144|      0|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  145|      0|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  146|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  147|       |
  148|       |	/* algorithm */
  149|      0|	algorithm = sr.base[0];
  150|      0|	snprintf(buf, sizeof(buf), "%u", algorithm);
  151|      0|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  152|      0|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  153|       |
  154|       |	/* Do we have a placeholder KEYDATA record? */
  155|      0|	if (flags == 0 && proto == 0 && algorithm == 0) {
  ------------------
  |  Branch (155:6): [True: 0, False: 0]
  |  Branch (155:20): [True: 0, False: 0]
  |  Branch (155:34): [True: 0, False: 0]
  ------------------
  156|      0|		if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (156:7): [True: 0, False: 0]
  ------------------
  157|      0|			RETERR(str_totext(" ; placeholder", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  158|      0|		}
  159|      0|		return ISC_R_SUCCESS;
  160|      0|	}
  161|       |
  162|       |	/* No Key? */
  163|      0|	if ((flags & 0xc000) == 0xc000) {
  ------------------
  |  Branch (163:6): [True: 0, False: 0]
  ------------------
  164|      0|		return ISC_R_SUCCESS;
  165|      0|	}
  166|       |
  167|       |	/* key */
  168|      0|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (168:6): [True: 0, False: 0]
  ------------------
  169|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  170|      0|	}
  171|      0|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  172|      0|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (172:6): [True: 0, False: 0]
  ------------------
  173|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  174|      0|	} else {
  175|      0|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  176|      0|					 target));
  177|      0|	}
  178|       |
  179|      0|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (179:6): [True: 0, False: 0]
  ------------------
  180|      0|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  181|      0|	} else if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (181:13): [True: 0, False: 0]
  ------------------
  182|      0|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  183|      0|	}
  184|       |
  185|      0|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (185:6): [True: 0, False: 0]
  ------------------
  186|      0|		RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  187|      0|	}
  188|       |
  189|      0|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (189:6): [True: 0, False: 0]
  ------------------
  190|      0|		isc_region_t tmpr;
  191|      0|		char rbuf[ISC_FORMATHTTPTIMESTAMP_SIZE];
  192|      0|		char abuf[ISC_FORMATHTTPTIMESTAMP_SIZE];
  193|      0|		char dbuf[ISC_FORMATHTTPTIMESTAMP_SIZE];
  194|      0|		isc_time_t t;
  195|       |
  196|      0|		RETERR(str_totext(" ; ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  197|      0|		RETERR(str_totext(keyinfo, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  198|      0|		dns_secalg_format((dns_secalg_t)algorithm, algbuf,
  199|      0|				  sizeof(algbuf));
  200|      0|		RETERR(str_totext("; alg = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  201|      0|		RETERR(str_totext(algbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  202|      0|		RETERR(str_totext("; key id = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  203|      0|		dns_rdata_toregion(rdata, &tmpr);
  204|       |		/* Skip over refresh, addhd, and removehd */
  205|      0|		isc_region_consume(&tmpr, 12);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  206|      0|		snprintf(buf, sizeof(buf), "%u", dst_region_computeid(&tmpr));
  207|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  208|       |
  209|      0|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (209:7): [True: 0, False: 0]
  ------------------
  210|      0|			isc_stdtime_t now = isc_stdtime_now();
  211|       |
  212|      0|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  213|      0|			RETERR(str_totext("; next refresh: ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  214|      0|			isc_time_set(&t, refresh, 0);
  215|      0|			isc_time_formathttptimestamp(&t, rbuf, sizeof(rbuf));
  216|      0|			RETERR(str_totext(rbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  217|       |
  218|      0|			if (add == 0U) {
  ------------------
  |  Branch (218:8): [True: 0, False: 0]
  ------------------
  219|      0|				RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  220|      0|				RETERR(str_totext("; no trust", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  221|      0|			} else {
  222|      0|				RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  223|      0|				if (add < now) {
  ------------------
  |  Branch (223:9): [True: 0, False: 0]
  ------------------
  224|      0|					RETERR(str_totext("; trusted since: ",
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  225|      0|							  target));
  226|      0|				} else {
  227|      0|					RETERR(str_totext("; trust pending: ",
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  228|      0|							  target));
  229|      0|				}
  230|      0|				isc_time_set(&t, add, 0);
  231|      0|				isc_time_formathttptimestamp(&t, abuf,
  232|      0|							     sizeof(abuf));
  233|      0|				RETERR(str_totext(abuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  234|      0|			}
  235|       |
  236|      0|			if (deltime != 0U) {
  ------------------
  |  Branch (236:8): [True: 0, False: 0]
  ------------------
  237|      0|				RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  238|      0|				RETERR(str_totext("; removal pending: ",
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  239|      0|						  target));
  240|      0|				isc_time_set(&t, deltime, 0);
  241|      0|				isc_time_formathttptimestamp(&t, dbuf,
  242|      0|							     sizeof(dbuf));
  243|      0|				RETERR(str_totext(dbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  244|      0|			}
  245|      0|		}
  246|      0|	}
  247|      0|	return ISC_R_SUCCESS;
  248|      0|}

rdata.c:fromwire_l32:
   82|  1.89k|fromwire_l32(ARGS_FROMWIRE) {
   83|  1.89k|	isc_region_t sregion;
   84|       |
   85|  1.89k|	REQUIRE(type == dns_rdatatype_l32);
  ------------------
  |  |  198|  1.89k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.89k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.89k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.89k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  1.89k|	UNUSED(type);
  ------------------
  |  |   69|  1.89k|#define UNUSED(x) (void)(x)
  ------------------
   88|  1.89k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.89k|#define UNUSED(x) (void)(x)
  ------------------
   89|  1.89k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.89k|#define UNUSED(x) (void)(x)
  ------------------
   90|       |
   91|  1.89k|	isc_buffer_activeregion(source, &sregion);
   92|  1.89k|	if (sregion.length != 6) {
  ------------------
  |  Branch (92:6): [True: 8, False: 1.88k]
  ------------------
   93|      8|		return DNS_R_FORMERR;
   94|      8|	}
   95|  1.88k|	isc_buffer_forward(source, sregion.length);
   96|  1.88k|	return mem_tobuffer(target, sregion.base, sregion.length);
   97|  1.89k|}
rdata.c:towire_l32:
  100|    686|towire_l32(ARGS_TOWIRE) {
  101|    686|	REQUIRE(rdata->type == dns_rdatatype_l32);
  ------------------
  |  |  198|    686|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    686|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 686, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    686|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|    686|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|    686|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    686|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 686, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    686|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|       |
  104|    686|	UNUSED(cctx);
  ------------------
  |  |   69|    686|#define UNUSED(x) (void)(x)
  ------------------
  105|       |
  106|    686|	return mem_tobuffer(target, rdata->data, rdata->length);
  107|    686|}
rdata.c:totext_l32:
   60|  1.34k|totext_l32(ARGS_TOTEXT) {
   61|  1.34k|	isc_region_t region;
   62|  1.34k|	char buf[sizeof("65000")];
   63|  1.34k|	unsigned short num;
   64|       |
   65|  1.34k|	REQUIRE(rdata->type == dns_rdatatype_l32);
  ------------------
  |  |  198|  1.34k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.34k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.34k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|  1.34k|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|  1.34k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.34k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.34k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.34k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.34k|#define UNUSED(x) (void)(x)
  ------------------
   69|       |
   70|  1.34k|	dns_rdata_toregion(rdata, &region);
   71|  1.34k|	num = uint16_fromregion(&region);
   72|  1.34k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.34k|	do {                              \
  |  |   51|  1.34k|		isc_region_t *_r = (r);   \
  |  |   52|  1.34k|		unsigned int  _l = (l);   \
  |  |   53|  1.34k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.34k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.34k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.34k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.34k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.34k|		_r->base += _l;           \
  |  |   55|  1.34k|		_r->length -= _l;         \
  |  |   56|  1.34k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.34k]
  |  |  ------------------
  ------------------
   73|  1.34k|	snprintf(buf, sizeof(buf), "%u", num);
   74|  1.34k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.34k|	{                                  \
  |  |  277|  1.34k|		isc_result_t _r = (x);     \
  |  |  278|  1.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.34k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.34k|	}
  ------------------
   75|       |
   76|  1.34k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.34k|	{                                  \
  |  |  277|  1.34k|		isc_result_t _r = (x);     \
  |  |  278|  1.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.34k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.34k|	}
  ------------------
   77|       |
   78|       |	return inet_totext(AF_INET, tctx->flags, &region, target);
   79|  1.34k|}

rdata.c:fromwire_l64:
   80|  1.13k|fromwire_l64(ARGS_FROMWIRE) {
   81|  1.13k|	isc_region_t sregion;
   82|       |
   83|  1.13k|	REQUIRE(type == dns_rdatatype_l64);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|  1.13k|	UNUSED(type);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   86|  1.13k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   87|  1.13k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|  1.13k|	isc_buffer_activeregion(source, &sregion);
   90|  1.13k|	if (sregion.length != 10) {
  ------------------
  |  Branch (90:6): [True: 6, False: 1.12k]
  ------------------
   91|      6|		return DNS_R_FORMERR;
   92|      6|	}
   93|  1.12k|	isc_buffer_forward(source, sregion.length);
   94|  1.12k|	return mem_tobuffer(target, sregion.base, sregion.length);
   95|  1.13k|}
rdata.c:towire_l64:
   98|    366|towire_l64(ARGS_TOWIRE) {
   99|    366|	REQUIRE(rdata->type == dns_rdatatype_l64);
  ------------------
  |  |  198|    366|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    366|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 366, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    366|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|    366|	REQUIRE(rdata->length == 10);
  ------------------
  |  |  198|    366|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    366|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 366, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    366|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|    366|	UNUSED(cctx);
  ------------------
  |  |   69|    366|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|    366|	return mem_tobuffer(target, rdata->data, rdata->length);
  105|    366|}
rdata.c:totext_l64:
   53|    727|totext_l64(ARGS_TOTEXT) {
   54|    727|	isc_region_t region;
   55|    727|	char buf[sizeof("xxxx:xxxx:xxxx:xxxx")];
   56|    727|	unsigned short num;
   57|       |
   58|    727|	REQUIRE(rdata->type == dns_rdatatype_l64);
  ------------------
  |  |  198|    727|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    727|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 727, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    727|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|    727|	REQUIRE(rdata->length == 10);
  ------------------
  |  |  198|    727|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    727|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 727, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    727|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|    727|	UNUSED(tctx);
  ------------------
  |  |   69|    727|#define UNUSED(x) (void)(x)
  ------------------
   62|       |
   63|    727|	dns_rdata_toregion(rdata, &region);
   64|    727|	num = uint16_fromregion(&region);
   65|    727|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    727|	do {                              \
  |  |   51|    727|		isc_region_t *_r = (r);   \
  |  |   52|    727|		unsigned int  _l = (l);   \
  |  |   53|    727|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    727|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    727|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 727, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    727|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    727|		_r->base += _l;           \
  |  |   55|    727|		_r->length -= _l;         \
  |  |   56|    727|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 727]
  |  |  ------------------
  ------------------
   66|    727|	snprintf(buf, sizeof(buf), "%u", num);
   67|    727|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    727|	{                                  \
  |  |  277|    727|		isc_result_t _r = (x);     \
  |  |  278|    727|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 727]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    727|	}
  ------------------
   68|       |
   69|    727|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    727|	{                                  \
  |  |  277|    727|		isc_result_t _r = (x);     \
  |  |  278|    727|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 727]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    727|	}
  ------------------
   70|       |
   71|    727|	snprintf(buf, sizeof(buf), "%x:%x:%x:%x",
   72|    727|		 region.base[0] << 8 | region.base[1],
   73|    727|		 region.base[2] << 8 | region.base[3],
   74|    727|		 region.base[4] << 8 | region.base[5],
   75|    727|		 region.base[6] << 8 | region.base[7]);
   76|    727|	return str_totext(buf, target);
   77|    727|}

rdata.c:fromwire_loc:
  558|  5.51k|fromwire_loc(ARGS_FROMWIRE) {
  559|  5.51k|	isc_region_t sr;
  560|  5.51k|	unsigned char c;
  561|  5.51k|	unsigned long latitude;
  562|  5.51k|	unsigned long longitude;
  563|       |
  564|  5.51k|	REQUIRE(type == dns_rdatatype_loc);
  ------------------
  |  |  198|  5.51k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.51k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.51k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.51k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  565|       |
  566|  5.51k|	UNUSED(type);
  ------------------
  |  |   69|  5.51k|#define UNUSED(x) (void)(x)
  ------------------
  567|  5.51k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.51k|#define UNUSED(x) (void)(x)
  ------------------
  568|  5.51k|	UNUSED(dctx);
  ------------------
  |  |   69|  5.51k|#define UNUSED(x) (void)(x)
  ------------------
  569|       |
  570|  5.51k|	isc_buffer_activeregion(source, &sr);
  571|  5.51k|	if (sr.length < 1) {
  ------------------
  |  Branch (571:6): [True: 3, False: 5.51k]
  ------------------
  572|      3|		return ISC_R_UNEXPECTEDEND;
  573|      3|	}
  574|  5.51k|	if (sr.base[0] != 0) {
  ------------------
  |  Branch (574:6): [True: 1.42k, False: 4.08k]
  ------------------
  575|       |		/* Treat as unknown. */
  576|  1.42k|		isc_buffer_forward(source, sr.length);
  577|  1.42k|		return mem_tobuffer(target, sr.base, sr.length);
  578|  1.42k|	}
  579|  4.08k|	if (sr.length < 16) {
  ------------------
  |  Branch (579:6): [True: 2, False: 4.08k]
  ------------------
  580|      2|		return ISC_R_UNEXPECTEDEND;
  581|      2|	}
  582|       |
  583|       |	/*
  584|       |	 * Size.
  585|       |	 */
  586|  4.08k|	c = sr.base[1];
  587|  4.08k|	if (c != 0) {
  ------------------
  |  Branch (587:6): [True: 1.38k, False: 2.70k]
  ------------------
  588|  1.38k|		if ((c & 0xf) > 9 || ((c >> 4) & 0xf) > 9 ||
  ------------------
  |  Branch (588:7): [True: 1, False: 1.38k]
  |  Branch (588:24): [True: 1, False: 1.38k]
  ------------------
  589|  1.38k|		    ((c >> 4) & 0xf) == 0)
  ------------------
  |  Branch (589:7): [True: 2, False: 1.38k]
  ------------------
  590|      4|		{
  591|      4|			return ISC_R_RANGE;
  592|       |
  593|       |			/*
  594|       |			 * Horizontal precision.
  595|       |			 */
  596|      4|		}
  597|  1.38k|	}
  598|       |
  599|       |	/*
  600|       |	 * Horizontal precision.
  601|       |	 */
  602|  4.08k|	c = sr.base[2];
  603|  4.08k|	if (c != 0) {
  ------------------
  |  Branch (603:6): [True: 3.17k, False: 911]
  ------------------
  604|  3.17k|		if ((c & 0xf) > 9 || ((c >> 4) & 0xf) > 9 ||
  ------------------
  |  Branch (604:7): [True: 2, False: 3.16k]
  |  Branch (604:24): [True: 1, False: 3.16k]
  ------------------
  605|  3.16k|		    ((c >> 4) & 0xf) == 0)
  ------------------
  |  Branch (605:7): [True: 2, False: 3.16k]
  ------------------
  606|      5|		{
  607|      5|			return ISC_R_RANGE;
  608|       |
  609|       |			/*
  610|       |			 * Vertical precision.
  611|       |			 */
  612|      5|		}
  613|  3.17k|	}
  614|       |
  615|       |	/*
  616|       |	 * Vertical precision.
  617|       |	 */
  618|  4.07k|	c = sr.base[3];
  619|  4.07k|	if (c != 0) {
  ------------------
  |  Branch (619:6): [True: 2.75k, False: 1.32k]
  ------------------
  620|  2.75k|		if ((c & 0xf) > 9 || ((c >> 4) & 0xf) > 9 ||
  ------------------
  |  Branch (620:7): [True: 2, False: 2.75k]
  |  Branch (620:24): [True: 2, False: 2.74k]
  ------------------
  621|  2.74k|		    ((c >> 4) & 0xf) == 0)
  ------------------
  |  Branch (621:7): [True: 2, False: 2.74k]
  ------------------
  622|      6|		{
  623|      6|			return ISC_R_RANGE;
  624|      6|		}
  625|  2.75k|	}
  626|  4.07k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  627|       |
  628|       |	/*
  629|       |	 * Latitude.
  630|       |	 */
  631|  4.07k|	latitude = uint32_fromregion(&sr);
  632|  4.07k|	if (latitude < (0x80000000UL - 90 * 3600000) ||
  ------------------
  |  Branch (632:6): [True: 32, False: 4.03k]
  ------------------
  633|  4.03k|	    latitude > (0x80000000UL + 90 * 3600000))
  ------------------
  |  Branch (633:6): [True: 2, False: 4.03k]
  ------------------
  634|     34|	{
  635|     34|		return ISC_R_RANGE;
  636|     34|	}
  637|  4.03k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.03k|	do {                              \
  |  |   51|  4.03k|		isc_region_t *_r = (r);   \
  |  |   52|  4.03k|		unsigned int  _l = (l);   \
  |  |   53|  4.03k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.03k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.03k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.03k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.03k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.03k|		_r->base += _l;           \
  |  |   55|  4.03k|		_r->length -= _l;         \
  |  |   56|  4.03k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.03k]
  |  |  ------------------
  ------------------
  638|       |
  639|       |	/*
  640|       |	 * Longitude.
  641|       |	 */
  642|  4.03k|	longitude = uint32_fromregion(&sr);
  643|  4.03k|	if (longitude < (0x80000000UL - 180 * 3600000) ||
  ------------------
  |  Branch (643:6): [True: 35, False: 4.00k]
  ------------------
  644|  4.00k|	    longitude > (0x80000000UL + 180 * 3600000))
  ------------------
  |  Branch (644:6): [True: 11, False: 3.99k]
  ------------------
  645|     46|	{
  646|     46|		return ISC_R_RANGE;
  647|     46|	}
  648|       |
  649|       |	/*
  650|       |	 * Altitude.
  651|       |	 * All values possible.
  652|       |	 */
  653|       |
  654|  3.99k|	isc_buffer_activeregion(source, &sr);
  655|  3.99k|	isc_buffer_forward(source, 16);
  656|  3.99k|	return mem_tobuffer(target, sr.base, 16);
  657|  4.03k|}
rdata.c:towire_loc:
  660|  2.52k|towire_loc(ARGS_TOWIRE) {
  661|  2.52k|	UNUSED(cctx);
  ------------------
  |  |   69|  2.52k|#define UNUSED(x) (void)(x)
  ------------------
  662|       |
  663|  2.52k|	REQUIRE(rdata->type == dns_rdatatype_loc);
  ------------------
  |  |  198|  2.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  664|  2.52k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  665|       |
  666|  2.52k|	return mem_tobuffer(target, rdata->data, rdata->length);
  667|  2.52k|}
rdata.c:totext_loc:
  439|  4.86k|totext_loc(ARGS_TOTEXT) {
  440|  4.86k|	int d1, m1, s1, fs1;
  441|  4.86k|	int d2, m2, s2, fs2;
  442|  4.86k|	unsigned long latitude;
  443|  4.86k|	unsigned long longitude;
  444|  4.86k|	unsigned long altitude;
  445|  4.86k|	bool north;
  446|  4.86k|	bool east;
  447|  4.86k|	bool below;
  448|  4.86k|	isc_region_t sr;
  449|  4.86k|	char sbuf[sizeof("90000000m")];
  450|  4.86k|	char hbuf[sizeof("90000000m")];
  451|  4.86k|	char vbuf[sizeof("90000000m")];
  452|       |	/* "89 59 59.999 N 179 59 59.999 E " */
  453|       |	/* "-42849672.95m 90000000m 90000000m 90000000m"; */
  454|  4.86k|	char buf[8 * 6 + 12 * 1 + 2 * 10 + sizeof(sbuf) + sizeof(hbuf) +
  455|  4.86k|		 sizeof(vbuf)];
  456|  4.86k|	unsigned char size, hp, vp;
  457|  4.86k|	unsigned long poweroften[8] = { 1,     10,     100,	1000,
  458|  4.86k|					10000, 100000, 1000000, 10000000 };
  459|       |
  460|  4.86k|	UNUSED(tctx);
  ------------------
  |  |   69|  4.86k|#define UNUSED(x) (void)(x)
  ------------------
  461|       |
  462|  4.86k|	REQUIRE(rdata->type == dns_rdatatype_loc);
  ------------------
  |  |  198|  4.86k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.86k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.86k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.86k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  463|  4.86k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.86k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.86k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.86k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.86k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  464|       |
  465|  4.86k|	dns_rdata_toregion(rdata, &sr);
  466|       |
  467|  4.86k|	if (sr.base[0] != 0) {
  ------------------
  |  Branch (467:6): [True: 992, False: 3.87k]
  ------------------
  468|    992|		return ISC_R_NOTIMPLEMENTED;
  469|    992|	}
  470|       |
  471|  3.87k|	REQUIRE(rdata->length == 16);
  ------------------
  |  |  198|  3.87k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.87k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  472|       |
  473|  3.87k|	size = sr.base[1];
  474|  3.87k|	INSIST((size & 0x0f) < 10 && (size >> 4) < 10);
  ------------------
  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.75k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.87k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  475|  3.87k|	if ((size & 0x0f) > 1) {
  ------------------
  |  Branch (475:6): [True: 992, False: 2.88k]
  ------------------
  476|    992|		snprintf(sbuf, sizeof(sbuf), "%lum",
  477|    992|			 (size >> 4) * poweroften[(size & 0x0f) - 2]);
  478|  2.88k|	} else {
  479|  2.88k|		snprintf(sbuf, sizeof(sbuf), "0.%02lum",
  480|  2.88k|			 (size >> 4) * poweroften[(size & 0x0f)]);
  481|  2.88k|	}
  482|  3.87k|	hp = sr.base[2];
  483|  3.87k|	INSIST((hp & 0x0f) < 10 && (hp >> 4) < 10);
  ------------------
  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.75k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.87k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  484|  3.87k|	if ((hp & 0x0f) > 1) {
  ------------------
  |  Branch (484:6): [True: 2.68k, False: 1.19k]
  ------------------
  485|  2.68k|		snprintf(hbuf, sizeof(hbuf), "%lum",
  486|  2.68k|			 (hp >> 4) * poweroften[(hp & 0x0f) - 2]);
  487|  2.68k|	} else {
  488|  1.19k|		snprintf(hbuf, sizeof(hbuf), "0.%02lum",
  489|  1.19k|			 (hp >> 4) * poweroften[(hp & 0x0f)]);
  490|  1.19k|	}
  491|  3.87k|	vp = sr.base[3];
  492|  3.87k|	INSIST((vp & 0x0f) < 10 && (vp >> 4) < 10);
  ------------------
  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.75k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.87k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  493|  3.87k|	if ((vp & 0x0f) > 1) {
  ------------------
  |  Branch (493:6): [True: 852, False: 3.02k]
  ------------------
  494|    852|		snprintf(vbuf, sizeof(vbuf), "%lum",
  495|    852|			 (vp >> 4) * poweroften[(vp & 0x0f) - 2]);
  496|  3.02k|	} else {
  497|  3.02k|		snprintf(vbuf, sizeof(vbuf), "0.%02lum",
  498|  3.02k|			 (vp >> 4) * poweroften[(vp & 0x0f)]);
  499|  3.02k|	}
  500|  3.87k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.87k|	do {                              \
  |  |   51|  3.87k|		isc_region_t *_r = (r);   \
  |  |   52|  3.87k|		unsigned int  _l = (l);   \
  |  |   53|  3.87k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.87k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.87k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.87k|		_r->base += _l;           \
  |  |   55|  3.87k|		_r->length -= _l;         \
  |  |   56|  3.87k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.87k]
  |  |  ------------------
  ------------------
  501|       |
  502|  3.87k|	latitude = uint32_fromregion(&sr);
  503|  3.87k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.87k|	do {                              \
  |  |   51|  3.87k|		isc_region_t *_r = (r);   \
  |  |   52|  3.87k|		unsigned int  _l = (l);   \
  |  |   53|  3.87k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.87k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.87k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.87k|		_r->base += _l;           \
  |  |   55|  3.87k|		_r->length -= _l;         \
  |  |   56|  3.87k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.87k]
  |  |  ------------------
  ------------------
  504|  3.87k|	if (latitude >= 0x80000000) {
  ------------------
  |  Branch (504:6): [True: 2.50k, False: 1.37k]
  ------------------
  505|  2.50k|		north = true;
  506|  2.50k|		latitude -= 0x80000000;
  507|  2.50k|	} else {
  508|  1.37k|		north = false;
  509|  1.37k|		latitude = 0x80000000 - latitude;
  510|  1.37k|	}
  511|  3.87k|	fs1 = (int)(latitude % 1000);
  512|  3.87k|	latitude /= 1000;
  513|  3.87k|	s1 = (int)(latitude % 60);
  514|  3.87k|	latitude /= 60;
  515|  3.87k|	m1 = (int)(latitude % 60);
  516|  3.87k|	latitude /= 60;
  517|  3.87k|	d1 = (int)latitude;
  518|  3.87k|	INSIST(latitude <= 90U);
  ------------------
  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.87k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  519|       |
  520|  3.87k|	longitude = uint32_fromregion(&sr);
  521|  3.87k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.87k|	do {                              \
  |  |   51|  3.87k|		isc_region_t *_r = (r);   \
  |  |   52|  3.87k|		unsigned int  _l = (l);   \
  |  |   53|  3.87k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.87k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.87k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.87k|		_r->base += _l;           \
  |  |   55|  3.87k|		_r->length -= _l;         \
  |  |   56|  3.87k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.87k]
  |  |  ------------------
  ------------------
  522|  3.87k|	if (longitude >= 0x80000000) {
  ------------------
  |  Branch (522:6): [True: 1.20k, False: 2.67k]
  ------------------
  523|  1.20k|		east = true;
  524|  1.20k|		longitude -= 0x80000000;
  525|  2.67k|	} else {
  526|  2.67k|		east = false;
  527|  2.67k|		longitude = 0x80000000 - longitude;
  528|  2.67k|	}
  529|  3.87k|	fs2 = (int)(longitude % 1000);
  530|  3.87k|	longitude /= 1000;
  531|  3.87k|	s2 = (int)(longitude % 60);
  532|  3.87k|	longitude /= 60;
  533|  3.87k|	m2 = (int)(longitude % 60);
  534|  3.87k|	longitude /= 60;
  535|  3.87k|	d2 = (int)longitude;
  536|  3.87k|	INSIST(longitude <= 180U);
  ------------------
  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.87k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  537|       |
  538|  3.87k|	altitude = uint32_fromregion(&sr);
  539|  3.87k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.87k|	do {                              \
  |  |   51|  3.87k|		isc_region_t *_r = (r);   \
  |  |   52|  3.87k|		unsigned int  _l = (l);   \
  |  |   53|  3.87k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.87k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.87k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.87k|		_r->base += _l;           \
  |  |   55|  3.87k|		_r->length -= _l;         \
  |  |   56|  3.87k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.87k]
  |  |  ------------------
  ------------------
  540|  3.87k|	if (altitude < 10000000U) {
  ------------------
  |  Branch (540:6): [True: 534, False: 3.34k]
  ------------------
  541|    534|		below = true;
  542|    534|		altitude = 10000000 - altitude;
  543|  3.34k|	} else {
  544|  3.34k|		below = false;
  545|  3.34k|		altitude -= 10000000;
  546|  3.34k|	}
  547|       |
  548|  3.87k|	snprintf(buf, sizeof(buf),
  549|  3.87k|		 "%d %d %d.%03d %s %d %d %d.%03d %s %s%lu.%02lum %s %s %s", d1,
  550|  3.87k|		 m1, s1, fs1, north ? "N" : "S", d2, m2, s2, fs2,
  ------------------
  |  Branch (550:17): [True: 2.50k, False: 1.37k]
  ------------------
  551|  3.87k|		 east ? "E" : "W", below ? "-" : "", altitude / 100,
  ------------------
  |  Branch (551:4): [True: 1.20k, False: 2.67k]
  |  Branch (551:22): [True: 534, False: 3.34k]
  ------------------
  552|  3.87k|		 altitude % 100, sbuf, hbuf, vbuf);
  553|       |
  554|  3.87k|	return str_totext(buf, target);
  555|  4.86k|}

rdata.c:fromwire_lp:
   81|    964|fromwire_lp(ARGS_FROMWIRE) {
   82|    964|	dns_name_t name;
   83|    964|	isc_region_t sregion;
   84|       |
   85|    964|	REQUIRE(type == dns_rdatatype_lp);
  ------------------
  |  |  198|    964|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    964|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 964, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    964|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    964|	UNUSED(type);
  ------------------
  |  |   69|    964|#define UNUSED(x) (void)(x)
  ------------------
   88|    964|	UNUSED(rdclass);
  ------------------
  |  |   69|    964|#define UNUSED(x) (void)(x)
  ------------------
   89|       |
   90|    964|	dctx = dns_decompress_setpermitted(dctx, true);
   91|       |
   92|    964|	dns_name_init(&name);
   93|       |
   94|    964|	isc_buffer_activeregion(source, &sregion);
   95|    964|	if (sregion.length < 2) {
  ------------------
  |  Branch (95:6): [True: 5, False: 959]
  ------------------
   96|      5|		return ISC_R_UNEXPECTEDEND;
   97|      5|	}
   98|    959|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|    959|	{                                  \
  |  |  277|    959|		isc_result_t _r = (x);     \
  |  |  278|    959|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 66, False: 893]
  |  |  ------------------
  |  |  279|     66|			return ((_r));     \
  |  |  280|     66|		}                          \
  |  |  281|    959|	}
  ------------------
   99|    893|	isc_buffer_forward(source, 2);
  100|    893|	return dns_name_fromwire(&name, source, dctx, target);
  101|    959|}
rdata.c:towire_lp:
  104|    422|towire_lp(ARGS_TOWIRE) {
  105|    422|	REQUIRE(rdata->type == dns_rdatatype_lp);
  ------------------
  |  |  198|    422|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    422|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    422|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|    422|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    422|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    422|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    422|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|    422|	UNUSED(cctx);
  ------------------
  |  |   69|    422|#define UNUSED(x) (void)(x)
  ------------------
  109|       |
  110|    422|	return mem_tobuffer(target, rdata->data, rdata->length);
  111|    422|}
rdata.c:totext_lp:
   52|    840|totext_lp(ARGS_TOTEXT) {
   53|    840|	isc_region_t region;
   54|    840|	dns_name_t name;
   55|    840|	dns_name_t prefix;
   56|    840|	unsigned int opts;
   57|    840|	char buf[sizeof("64000")];
   58|    840|	unsigned short num;
   59|       |
   60|    840|	REQUIRE(rdata->type == dns_rdatatype_lp);
  ------------------
  |  |  198|    840|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    840|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 840, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    840|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   61|    840|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    840|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    840|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 840, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    840|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|       |
   63|    840|	dns_name_init(&name);
   64|    840|	dns_name_init(&prefix);
   65|       |
   66|    840|	dns_rdata_toregion(rdata, &region);
   67|    840|	num = uint16_fromregion(&region);
   68|    840|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    840|	do {                              \
  |  |   51|    840|		isc_region_t *_r = (r);   \
  |  |   52|    840|		unsigned int  _l = (l);   \
  |  |   53|    840|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    840|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    840|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 840, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    840|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    840|		_r->base += _l;           \
  |  |   55|    840|		_r->length -= _l;         \
  |  |   56|    840|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 840]
  |  |  ------------------
  ------------------
   69|    840|	snprintf(buf, sizeof(buf), "%u", num);
   70|    840|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    840|	{                                  \
  |  |  277|    840|		isc_result_t _r = (x);     \
  |  |  278|    840|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 840]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    840|	}
  ------------------
   71|       |
   72|    840|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    840|	{                                  \
  |  |  277|    840|		isc_result_t _r = (x);     \
  |  |  278|    840|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 840]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    840|	}
  ------------------
   73|       |
   74|    840|	dns_name_fromregion(&name, &region);
   75|    840|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 840]
  ------------------
   76|    840|							 : 0;
   77|    840|	return dns_name_totext(&prefix, opts, target);
   78|    840|}

rdata.c:fromwire_mb:
   63|  1.16k|fromwire_mb(ARGS_FROMWIRE) {
   64|  1.16k|	dns_name_t name;
   65|       |
   66|  1.16k|	REQUIRE(type == dns_rdatatype_mb);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.16k|	UNUSED(type);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.16k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.16k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.16k|	dns_name_init(&name);
   74|  1.16k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.16k|}
rdata.c:towire_mb:
   78|    572|towire_mb(ARGS_TOWIRE) {
   79|    572|	dns_name_t name;
   80|    572|	isc_region_t region;
   81|       |
   82|    572|	REQUIRE(rdata->type == dns_rdatatype_mb);
  ------------------
  |  |  198|    572|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    572|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 572, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    572|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    572|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    572|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    572|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 572, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    572|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    572|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    572|	dns_name_init(&name);
   88|    572|	dns_rdata_toregion(rdata, &region);
   89|    572|	dns_name_fromregion(&name, &region);
   90|       |
   91|    572|	return dns_name_towire(&name, cctx, target);
   92|    572|}
rdata.c:totext_mb:
   42|  1.13k|totext_mb(ARGS_TOTEXT) {
   43|  1.13k|	isc_region_t region;
   44|  1.13k|	dns_name_t name;
   45|  1.13k|	dns_name_t prefix;
   46|  1.13k|	unsigned int opts;
   47|       |
   48|  1.13k|	REQUIRE(rdata->type == dns_rdatatype_mb);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.13k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.13k|	dns_name_init(&name);
   52|  1.13k|	dns_name_init(&prefix);
   53|       |
   54|  1.13k|	dns_rdata_toregion(rdata, &region);
   55|  1.13k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.13k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.13k]
  ------------------
   58|  1.13k|							 : 0;
   59|  1.13k|	return dns_name_totext(&prefix, opts, target);
   60|  1.13k|}

rdata.c:fromwire_md:
   63|  1.59k|fromwire_md(ARGS_FROMWIRE) {
   64|  1.59k|	dns_name_t name;
   65|       |
   66|  1.59k|	REQUIRE(type == dns_rdatatype_md);
  ------------------
  |  |  198|  1.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.59k|	UNUSED(type);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.59k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.59k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.59k|	dns_name_init(&name);
   74|  1.59k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.59k|}
rdata.c:towire_md:
   78|    798|towire_md(ARGS_TOWIRE) {
   79|    798|	dns_name_t name;
   80|    798|	isc_region_t region;
   81|       |
   82|    798|	REQUIRE(rdata->type == dns_rdatatype_md);
  ------------------
  |  |  198|    798|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    798|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 798, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    798|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    798|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    798|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    798|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 798, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    798|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    798|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    798|	dns_name_init(&name);
   88|    798|	dns_rdata_toregion(rdata, &region);
   89|    798|	dns_name_fromregion(&name, &region);
   90|       |
   91|    798|	return dns_name_towire(&name, cctx, target);
   92|    798|}
rdata.c:totext_md:
   42|  1.57k|totext_md(ARGS_TOTEXT) {
   43|  1.57k|	isc_region_t region;
   44|  1.57k|	dns_name_t name;
   45|  1.57k|	dns_name_t prefix;
   46|  1.57k|	unsigned int opts;
   47|       |
   48|  1.57k|	REQUIRE(rdata->type == dns_rdatatype_md);
  ------------------
  |  |  198|  1.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.57k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.57k|	dns_name_init(&name);
   52|  1.57k|	dns_name_init(&prefix);
   53|       |
   54|  1.57k|	dns_rdata_toregion(rdata, &region);
   55|  1.57k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.57k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.57k]
  ------------------
   58|  1.57k|							 : 0;
   59|  1.57k|	return dns_name_totext(&prefix, opts, target);
   60|  1.57k|}

rdata.c:fromwire_mf:
   63|    921|fromwire_mf(ARGS_FROMWIRE) {
   64|    921|	dns_name_t name;
   65|       |
   66|    921|	REQUIRE(type == dns_rdatatype_mf);
  ------------------
  |  |  198|    921|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    921|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 921, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    921|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|    921|	UNUSED(type);
  ------------------
  |  |   69|    921|#define UNUSED(x) (void)(x)
  ------------------
   69|    921|	UNUSED(rdclass);
  ------------------
  |  |   69|    921|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|    921|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|    921|	dns_name_init(&name);
   74|    921|	return dns_name_fromwire(&name, source, dctx, target);
   75|    921|}
rdata.c:towire_mf:
   78|    459|towire_mf(ARGS_TOWIRE) {
   79|    459|	dns_name_t name;
   80|    459|	isc_region_t region;
   81|       |
   82|    459|	REQUIRE(rdata->type == dns_rdatatype_mf);
  ------------------
  |  |  198|    459|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    459|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 459, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    459|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    459|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    459|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    459|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 459, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    459|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    459|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    459|	dns_name_init(&name);
   88|    459|	dns_rdata_toregion(rdata, &region);
   89|    459|	dns_name_fromregion(&name, &region);
   90|       |
   91|    459|	return dns_name_towire(&name, cctx, target);
   92|    459|}
rdata.c:totext_mf:
   42|    908|totext_mf(ARGS_TOTEXT) {
   43|    908|	isc_region_t region;
   44|    908|	dns_name_t name;
   45|    908|	dns_name_t prefix;
   46|    908|	unsigned int opts;
   47|       |
   48|    908|	REQUIRE(rdata->type == dns_rdatatype_mf);
  ------------------
  |  |  198|    908|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    908|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 908, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    908|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|    908|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    908|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    908|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 908, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    908|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|    908|	dns_name_init(&name);
   52|    908|	dns_name_init(&prefix);
   53|       |
   54|    908|	dns_rdata_toregion(rdata, &region);
   55|    908|	dns_name_fromregion(&name, &region);
   56|       |
   57|    908|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 908]
  ------------------
   58|    908|							 : 0;
   59|    908|	return dns_name_totext(&prefix, opts, target);
   60|    908|}

rdata.c:fromwire_mg:
   63|    981|fromwire_mg(ARGS_FROMWIRE) {
   64|    981|	dns_name_t name;
   65|       |
   66|    981|	REQUIRE(type == dns_rdatatype_mg);
  ------------------
  |  |  198|    981|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    981|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 981, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    981|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|    981|	UNUSED(type);
  ------------------
  |  |   69|    981|#define UNUSED(x) (void)(x)
  ------------------
   69|    981|	UNUSED(rdclass);
  ------------------
  |  |   69|    981|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|    981|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|    981|	dns_name_init(&name);
   74|    981|	return dns_name_fromwire(&name, source, dctx, target);
   75|    981|}
rdata.c:towire_mg:
   78|    453|towire_mg(ARGS_TOWIRE) {
   79|    453|	dns_name_t name;
   80|    453|	isc_region_t region;
   81|       |
   82|    453|	REQUIRE(rdata->type == dns_rdatatype_mg);
  ------------------
  |  |  198|    453|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    453|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 453, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    453|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    453|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    453|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    453|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 453, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    453|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    453|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    453|	dns_name_init(&name);
   88|    453|	dns_rdata_toregion(rdata, &region);
   89|    453|	dns_name_fromregion(&name, &region);
   90|       |
   91|    453|	return dns_name_towire(&name, cctx, target);
   92|    453|}
rdata.c:totext_mg:
   42|    902|totext_mg(ARGS_TOTEXT) {
   43|    902|	isc_region_t region;
   44|    902|	dns_name_t name;
   45|    902|	dns_name_t prefix;
   46|    902|	unsigned int opts;
   47|       |
   48|    902|	REQUIRE(rdata->type == dns_rdatatype_mg);
  ------------------
  |  |  198|    902|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    902|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 902, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    902|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|    902|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    902|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    902|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 902, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    902|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|    902|	dns_name_init(&name);
   52|    902|	dns_name_init(&prefix);
   53|       |
   54|    902|	dns_rdata_toregion(rdata, &region);
   55|    902|	dns_name_fromregion(&name, &region);
   56|       |
   57|    902|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 902]
  ------------------
   58|    902|							 : 0;
   59|    902|	return dns_name_totext(&prefix, opts, target);
   60|    902|}

rdata.c:fromwire_minfo:
   95|  1.39k|fromwire_minfo(ARGS_FROMWIRE) {
   96|  1.39k|	dns_name_t rmail;
   97|  1.39k|	dns_name_t email;
   98|       |
   99|  1.39k|	REQUIRE(type == dns_rdatatype_minfo);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|       |
  101|  1.39k|	UNUSED(type);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
  102|  1.39k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|  1.39k|	dctx = dns_decompress_setpermitted(dctx, true);
  105|       |
  106|  1.39k|	dns_name_init(&rmail);
  107|  1.39k|	dns_name_init(&email);
  108|       |
  109|  1.39k|	RETERR(dns_name_fromwire(&rmail, source, dctx, target));
  ------------------
  |  |  276|  1.39k|	{                                  \
  |  |  277|  1.39k|		isc_result_t _r = (x);     \
  |  |  278|  1.39k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 109, False: 1.28k]
  |  |  ------------------
  |  |  279|    109|			return ((_r));     \
  |  |  280|    109|		}                          \
  |  |  281|  1.39k|	}
  ------------------
  110|  1.28k|	return dns_name_fromwire(&email, source, dctx, target);
  111|  1.39k|}
rdata.c:towire_minfo:
  114|    563|towire_minfo(ARGS_TOWIRE) {
  115|    563|	isc_region_t region;
  116|    563|	dns_name_t rmail;
  117|    563|	dns_name_t email;
  118|       |
  119|    563|	REQUIRE(rdata->type == dns_rdatatype_minfo);
  ------------------
  |  |  198|    563|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    563|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 563, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    563|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  120|    563|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    563|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    563|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 563, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    563|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  121|       |
  122|    563|	dns_compress_setpermitted(cctx, true);
  123|       |
  124|    563|	dns_name_init(&rmail);
  125|    563|	dns_name_init(&email);
  126|       |
  127|    563|	dns_rdata_toregion(rdata, &region);
  128|       |
  129|    563|	dns_name_fromregion(&rmail, &region);
  130|    563|	isc_region_consume(&region, name_length(&rmail));
  ------------------
  |  |   50|    563|	do {                              \
  |  |   51|    563|		isc_region_t *_r = (r);   \
  |  |   52|    563|		unsigned int  _l = (l);   \
  |  |   53|    563|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    563|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    563|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 563, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    563|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    563|		_r->base += _l;           \
  |  |   55|    563|		_r->length -= _l;         \
  |  |   56|    563|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 563]
  |  |  ------------------
  ------------------
  131|       |
  132|    563|	RETERR(dns_name_towire(&rmail, cctx, target));
  ------------------
  |  |  276|    563|	{                                  \
  |  |  277|    563|		isc_result_t _r = (x);     \
  |  |  278|    563|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 562]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    563|	}
  ------------------
  133|       |
  134|    562|	dns_name_fromregion(&rmail, &region);
  135|    562|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|    562|	do {                              \
  |  |   51|    562|		isc_region_t *_r = (r);   \
  |  |   52|    562|		unsigned int  _l = (l);   \
  |  |   53|    562|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    562|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    562|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 562, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    562|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    562|		_r->base += _l;           \
  |  |   55|    562|		_r->length -= _l;         \
  |  |   56|    562|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 562]
  |  |  ------------------
  ------------------
  136|       |
  137|    562|	return dns_name_towire(&rmail, cctx, target);
  138|    563|}
rdata.c:totext_minfo:
   59|  1.11k|totext_minfo(ARGS_TOTEXT) {
   60|  1.11k|	isc_region_t region;
   61|  1.11k|	dns_name_t rmail;
   62|  1.11k|	dns_name_t email;
   63|  1.11k|	dns_name_t prefix;
   64|  1.11k|	unsigned int opts;
   65|       |
   66|  1.11k|	REQUIRE(rdata->type == dns_rdatatype_minfo);
  ------------------
  |  |  198|  1.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  1.11k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|  1.11k|	dns_name_init(&rmail);
   70|  1.11k|	dns_name_init(&email);
   71|  1.11k|	dns_name_init(&prefix);
   72|       |
   73|  1.11k|	dns_rdata_toregion(rdata, &region);
   74|       |
   75|  1.11k|	dns_name_fromregion(&rmail, &region);
   76|  1.11k|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|  1.11k|	do {                              \
  |  |   51|  1.11k|		isc_region_t *_r = (r);   \
  |  |   52|  1.11k|		unsigned int  _l = (l);   \
  |  |   53|  1.11k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.11k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.11k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.11k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.11k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.11k|		_r->base += _l;           \
  |  |   55|  1.11k|		_r->length -= _l;         \
  |  |   56|  1.11k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.11k]
  |  |  ------------------
  ------------------
   77|       |
   78|  1.11k|	dns_name_fromregion(&email, &region);
   79|  1.11k|	isc_region_consume(&region, email.length);
  ------------------
  |  |   50|  1.11k|	do {                              \
  |  |   51|  1.11k|		isc_region_t *_r = (r);   \
  |  |   52|  1.11k|		unsigned int  _l = (l);   \
  |  |   53|  1.11k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.11k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.11k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.11k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.11k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.11k|		_r->base += _l;           \
  |  |   55|  1.11k|		_r->length -= _l;         \
  |  |   56|  1.11k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.11k]
  |  |  ------------------
  ------------------
   80|       |
   81|  1.11k|	opts = name_prefix(&rmail, tctx->origin, &prefix)
  ------------------
  |  Branch (81:9): [True: 0, False: 1.11k]
  ------------------
   82|  1.11k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   83|  1.11k|		       : 0;
   84|  1.11k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.11k|	{                                  \
  |  |  277|  1.11k|		isc_result_t _r = (x);     \
  |  |  278|  1.11k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.11k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.11k|	}
  ------------------
   85|       |
   86|  1.11k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.11k|	{                                  \
  |  |  277|  1.11k|		isc_result_t _r = (x);     \
  |  |  278|  1.11k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.11k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.11k|	}
  ------------------
   87|       |
   88|  1.11k|	opts = name_prefix(&email, tctx->origin, &prefix)
  ------------------
  |  Branch (88:9): [True: 0, False: 1.11k]
  ------------------
   89|  1.11k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   90|  1.11k|		       : 0;
   91|  1.11k|	return dns_name_totext(&prefix, opts, target);
   92|  1.11k|}

rdata.c:fromwire_mr:
   63|  1.35k|fromwire_mr(ARGS_FROMWIRE) {
   64|  1.35k|	dns_name_t name;
   65|       |
   66|  1.35k|	REQUIRE(type == dns_rdatatype_mr);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.35k|	UNUSED(type);
  ------------------
  |  |   69|  1.35k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.35k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.35k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.35k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.35k|	dns_name_init(&name);
   74|  1.35k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.35k|}
rdata.c:towire_mr:
   78|    666|towire_mr(ARGS_TOWIRE) {
   79|    666|	dns_name_t name;
   80|    666|	isc_region_t region;
   81|       |
   82|    666|	REQUIRE(rdata->type == dns_rdatatype_mr);
  ------------------
  |  |  198|    666|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    666|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 666, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    666|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    666|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    666|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    666|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 666, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    666|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    666|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    666|	dns_name_init(&name);
   88|    666|	dns_rdata_toregion(rdata, &region);
   89|    666|	dns_name_fromregion(&name, &region);
   90|       |
   91|    666|	return dns_name_towire(&name, cctx, target);
   92|    666|}
rdata.c:totext_mr:
   42|  1.31k|totext_mr(ARGS_TOTEXT) {
   43|  1.31k|	isc_region_t region;
   44|  1.31k|	dns_name_t name;
   45|  1.31k|	dns_name_t prefix;
   46|  1.31k|	unsigned int opts;
   47|       |
   48|  1.31k|	REQUIRE(rdata->type == dns_rdatatype_mr);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.31k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.31k|	dns_name_init(&name);
   52|  1.31k|	dns_name_init(&prefix);
   53|       |
   54|  1.31k|	dns_rdata_toregion(rdata, &region);
   55|  1.31k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.31k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.31k]
  ------------------
   58|  1.31k|							 : 0;
   59|  1.31k|	return dns_name_totext(&prefix, opts, target);
   60|  1.31k|}

rdata.c:fromwire_mx:
  130|  1.09k|fromwire_mx(ARGS_FROMWIRE) {
  131|  1.09k|	dns_name_t name;
  132|  1.09k|	isc_region_t sregion;
  133|       |
  134|  1.09k|	REQUIRE(type == dns_rdatatype_mx);
  ------------------
  |  |  198|  1.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  135|       |
  136|  1.09k|	UNUSED(type);
  ------------------
  |  |   69|  1.09k|#define UNUSED(x) (void)(x)
  ------------------
  137|  1.09k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.09k|#define UNUSED(x) (void)(x)
  ------------------
  138|       |
  139|  1.09k|	dctx = dns_decompress_setpermitted(dctx, true);
  140|       |
  141|  1.09k|	dns_name_init(&name);
  142|       |
  143|  1.09k|	isc_buffer_activeregion(source, &sregion);
  144|  1.09k|	if (sregion.length < 2) {
  ------------------
  |  Branch (144:6): [True: 4, False: 1.09k]
  ------------------
  145|      4|		return ISC_R_UNEXPECTEDEND;
  146|      4|	}
  147|  1.09k|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|  1.09k|	{                                  \
  |  |  277|  1.09k|		isc_result_t _r = (x);     \
  |  |  278|  1.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 102, False: 990]
  |  |  ------------------
  |  |  279|    102|			return ((_r));     \
  |  |  280|    102|		}                          \
  |  |  281|  1.09k|	}
  ------------------
  148|    990|	isc_buffer_forward(source, 2);
  149|    990|	return dns_name_fromwire(&name, source, dctx, target);
  150|  1.09k|}
rdata.c:towire_mx:
  153|    456|towire_mx(ARGS_TOWIRE) {
  154|    456|	dns_name_t name;
  155|    456|	isc_region_t region;
  156|       |
  157|    456|	REQUIRE(rdata->type == dns_rdatatype_mx);
  ------------------
  |  |  198|    456|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    456|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 456, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    456|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  158|    456|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    456|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    456|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 456, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    456|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  159|       |
  160|    456|	dns_compress_setpermitted(cctx, true);
  161|       |
  162|    456|	dns_rdata_toregion(rdata, &region);
  163|    456|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    456|	{                                  \
  |  |  277|    456|		isc_result_t _r = (x);     \
  |  |  278|    456|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 455]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    456|	}
  ------------------
  164|    455|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    455|	do {                              \
  |  |   51|    455|		isc_region_t *_r = (r);   \
  |  |   52|    455|		unsigned int  _l = (l);   \
  |  |   53|    455|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    455|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    455|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 455, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    455|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    455|		_r->base += _l;           \
  |  |   55|    455|		_r->length -= _l;         \
  |  |   56|    455|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 455]
  |  |  ------------------
  ------------------
  165|       |
  166|    455|	dns_name_init(&name);
  167|    455|	dns_name_fromregion(&name, &region);
  168|       |
  169|    455|	return dns_name_towire(&name, cctx, target);
  170|    456|}
rdata.c:totext_mx:
  101|    890|totext_mx(ARGS_TOTEXT) {
  102|    890|	isc_region_t region;
  103|    890|	dns_name_t name;
  104|    890|	dns_name_t prefix;
  105|    890|	unsigned int opts;
  106|    890|	char buf[sizeof("64000")];
  107|    890|	unsigned short num;
  108|       |
  109|    890|	REQUIRE(rdata->type == dns_rdatatype_mx);
  ------------------
  |  |  198|    890|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    890|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 890, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    890|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  110|    890|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    890|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    890|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 890, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    890|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  111|       |
  112|    890|	dns_name_init(&name);
  113|    890|	dns_name_init(&prefix);
  114|       |
  115|    890|	dns_rdata_toregion(rdata, &region);
  116|    890|	num = uint16_fromregion(&region);
  117|    890|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    890|	do {                              \
  |  |   51|    890|		isc_region_t *_r = (r);   \
  |  |   52|    890|		unsigned int  _l = (l);   \
  |  |   53|    890|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    890|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    890|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 890, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    890|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    890|		_r->base += _l;           \
  |  |   55|    890|		_r->length -= _l;         \
  |  |   56|    890|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 890]
  |  |  ------------------
  ------------------
  118|    890|	snprintf(buf, sizeof(buf), "%u", num);
  119|    890|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    890|	{                                  \
  |  |  277|    890|		isc_result_t _r = (x);     \
  |  |  278|    890|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 890]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    890|	}
  ------------------
  120|       |
  121|    890|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    890|	{                                  \
  |  |  277|    890|		isc_result_t _r = (x);     \
  |  |  278|    890|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 890]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    890|	}
  ------------------
  122|       |
  123|    890|	dns_name_fromregion(&name, &region);
  124|    890|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (124:9): [True: 0, False: 890]
  ------------------
  125|    890|							 : 0;
  126|    890|	return dns_name_totext(&prefix, opts, target);
  127|    890|}

rdata.c:fromwire_naptr:
  303|  7.03k|fromwire_naptr(ARGS_FROMWIRE) {
  304|  7.03k|	dns_name_t name;
  305|  7.03k|	isc_region_t sr;
  306|  7.03k|	unsigned char *regex;
  307|       |
  308|  7.03k|	REQUIRE(type == dns_rdatatype_naptr);
  ------------------
  |  |  198|  7.03k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.03k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 7.03k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  7.03k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  309|       |
  310|  7.03k|	UNUSED(type);
  ------------------
  |  |   69|  7.03k|#define UNUSED(x) (void)(x)
  ------------------
  311|  7.03k|	UNUSED(rdclass);
  ------------------
  |  |   69|  7.03k|#define UNUSED(x) (void)(x)
  ------------------
  312|       |
  313|  7.03k|	dctx = dns_decompress_setpermitted(dctx, false);
  314|       |
  315|  7.03k|	dns_name_init(&name);
  316|       |
  317|       |	/*
  318|       |	 * Order, preference.
  319|       |	 */
  320|  7.03k|	isc_buffer_activeregion(source, &sr);
  321|  7.03k|	if (sr.length < 4) {
  ------------------
  |  Branch (321:6): [True: 5, False: 7.03k]
  ------------------
  322|      5|		return ISC_R_UNEXPECTEDEND;
  323|      5|	}
  324|  7.03k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  7.03k|	{                                  \
  |  |  277|  7.03k|		isc_result_t _r = (x);     \
  |  |  278|  7.03k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 198, False: 6.83k]
  |  |  ------------------
  |  |  279|    198|			return ((_r));     \
  |  |  280|    198|		}                          \
  |  |  281|  7.03k|	}
  ------------------
  325|  6.83k|	isc_buffer_forward(source, 4);
  326|       |
  327|       |	/*
  328|       |	 * Flags.
  329|       |	 */
  330|  6.83k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  6.83k|	{                                  \
  |  |  277|  6.83k|		isc_result_t _r = (x);     \
  |  |  278|  6.83k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 206, False: 6.62k]
  |  |  ------------------
  |  |  279|    206|			return ((_r));     \
  |  |  280|    206|		}                          \
  |  |  281|  6.83k|	}
  ------------------
  331|       |
  332|       |	/*
  333|       |	 * Service.
  334|       |	 */
  335|  6.62k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  6.62k|	{                                  \
  |  |  277|  6.62k|		isc_result_t _r = (x);     \
  |  |  278|  6.62k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 197, False: 6.43k]
  |  |  ------------------
  |  |  279|    197|			return ((_r));     \
  |  |  280|    197|		}                          \
  |  |  281|  6.62k|	}
  ------------------
  336|       |
  337|       |	/*
  338|       |	 * Regexp.
  339|       |	 */
  340|  6.43k|	regex = isc_buffer_used(target);
  ------------------
  |  |  149|  6.43k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  341|  6.43k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  6.43k|	{                                  \
  |  |  277|  6.43k|		isc_result_t _r = (x);     \
  |  |  278|  6.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 486, False: 5.94k]
  |  |  ------------------
  |  |  279|    486|			return ((_r));     \
  |  |  280|    486|		}                          \
  |  |  281|  6.43k|	}
  ------------------
  342|  5.94k|	RETERR(txt_valid_regex(regex));
  ------------------
  |  |  276|  5.94k|	{                                  \
  |  |  277|  5.94k|		isc_result_t _r = (x);     \
  |  |  278|  5.94k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 418, False: 5.52k]
  |  |  ------------------
  |  |  279|    418|			return ((_r));     \
  |  |  280|    418|		}                          \
  |  |  281|  5.94k|	}
  ------------------
  343|       |
  344|       |	/*
  345|       |	 * Replacement.
  346|       |	 */
  347|  5.52k|	return dns_name_fromwire(&name, source, dctx, target);
  348|  5.94k|}
rdata.c:txt_valid_regex:
   28|  5.94k|txt_valid_regex(const unsigned char *txt) {
   29|  5.94k|	unsigned int nsub = 0;
   30|  5.94k|	char regex[256];
   31|  5.94k|	char *cp;
   32|  5.94k|	bool flags = false;
   33|  5.94k|	bool replace = false;
   34|  5.94k|	unsigned char c;
   35|  5.94k|	unsigned char delim;
   36|  5.94k|	unsigned int len;
   37|  5.94k|	int n;
   38|       |
   39|  5.94k|	len = *txt++;
   40|  5.94k|	if (len == 0U) {
  ------------------
  |  Branch (40:6): [True: 1.35k, False: 4.58k]
  ------------------
   41|  1.35k|		return ISC_R_SUCCESS;
   42|  1.35k|	}
   43|       |
   44|  4.58k|	delim = *txt++;
   45|  4.58k|	len--;
   46|       |
   47|       |	/*
   48|       |	 * Digits, backslash and flags can't be delimiters.
   49|       |	 */
   50|  4.58k|	switch (delim) {
  ------------------
  |  Branch (50:10): [True: 16, False: 4.57k]
  ------------------
   51|      1|	case '0':
  ------------------
  |  Branch (51:2): [True: 1, False: 4.58k]
  ------------------
   52|      2|	case '1':
  ------------------
  |  Branch (52:2): [True: 1, False: 4.58k]
  ------------------
   53|      3|	case '2':
  ------------------
  |  Branch (53:2): [True: 1, False: 4.58k]
  ------------------
   54|      4|	case '3':
  ------------------
  |  Branch (54:2): [True: 1, False: 4.58k]
  ------------------
   55|      5|	case '4':
  ------------------
  |  Branch (55:2): [True: 1, False: 4.58k]
  ------------------
   56|      6|	case '5':
  ------------------
  |  Branch (56:2): [True: 1, False: 4.58k]
  ------------------
   57|      7|	case '6':
  ------------------
  |  Branch (57:2): [True: 1, False: 4.58k]
  ------------------
   58|      8|	case '7':
  ------------------
  |  Branch (58:2): [True: 1, False: 4.58k]
  ------------------
   59|      9|	case '8':
  ------------------
  |  Branch (59:2): [True: 1, False: 4.58k]
  ------------------
   60|     10|	case '9':
  ------------------
  |  Branch (60:2): [True: 1, False: 4.58k]
  ------------------
   61|     11|	case '\\':
  ------------------
  |  Branch (61:2): [True: 1, False: 4.58k]
  ------------------
   62|     12|	case 'i':
  ------------------
  |  Branch (62:2): [True: 1, False: 4.58k]
  ------------------
   63|     16|	case 0:
  ------------------
  |  Branch (63:2): [True: 4, False: 4.58k]
  ------------------
   64|     16|		return DNS_R_SYNTAX;
   65|  4.58k|	}
   66|       |
   67|  4.57k|	cp = regex;
   68|   407k|	while (len-- > 0) {
  ------------------
  |  Branch (68:9): [True: 403k, False: 4.54k]
  ------------------
   69|   403k|		c = *txt++;
   70|   403k|		if (c == 0) {
  ------------------
  |  Branch (70:7): [True: 13, False: 403k]
  ------------------
   71|     13|			return DNS_R_SYNTAX;
   72|     13|		}
   73|   403k|		if (c == delim && !replace) {
  ------------------
  |  Branch (73:7): [True: 9.04k, False: 394k]
  |  Branch (73:21): [True: 4.55k, False: 4.48k]
  ------------------
   74|  4.55k|			replace = true;
   75|  4.55k|			continue;
   76|   398k|		} else if (c == delim && !flags) {
  ------------------
  |  Branch (76:14): [True: 4.48k, False: 394k]
  |  Branch (76:28): [True: 4.48k, False: 4]
  ------------------
   77|  4.48k|			flags = true;
   78|  4.48k|			continue;
   79|   394k|		} else if (c == delim) {
  ------------------
  |  Branch (79:14): [True: 4, False: 394k]
  ------------------
   80|      4|			return DNS_R_SYNTAX;
   81|      4|		}
   82|       |		/*
   83|       |		 * Flags are not escaped.
   84|       |		 */
   85|   394k|		if (flags) {
  ------------------
  |  Branch (85:7): [True: 252, False: 394k]
  ------------------
   86|    252|			switch (c) {
   87|    249|			case 'i':
  ------------------
  |  Branch (87:4): [True: 249, False: 3]
  ------------------
   88|    249|				continue;
   89|      3|			default:
  ------------------
  |  Branch (89:4): [True: 3, False: 249]
  ------------------
   90|      3|				return DNS_R_SYNTAX;
   91|    252|			}
   92|    252|		}
   93|   394k|		if (!replace) {
  ------------------
  |  Branch (93:7): [True: 351k, False: 42.3k]
  ------------------
   94|   351k|			*cp++ = c;
   95|   351k|		}
   96|   394k|		if (c == '\\') {
  ------------------
  |  Branch (96:7): [True: 19.0k, False: 375k]
  ------------------
   97|  19.0k|			if (len == 0) {
  ------------------
  |  Branch (97:8): [True: 4, False: 19.0k]
  ------------------
   98|      4|				return DNS_R_SYNTAX;
   99|      4|			}
  100|  19.0k|			c = *txt++;
  101|  19.0k|			if (c == 0) {
  ------------------
  |  Branch (101:8): [True: 2, False: 19.0k]
  ------------------
  102|      2|				return DNS_R_SYNTAX;
  103|      2|			}
  104|  19.0k|			len--;
  105|  19.0k|			if (replace) {
  ------------------
  |  Branch (105:8): [True: 10.9k, False: 8.14k]
  ------------------
  106|  10.9k|				switch (c) {
  ------------------
  |  Branch (106:13): [True: 7.12k, False: 3.78k]
  ------------------
  107|      2|				case '0':
  ------------------
  |  Branch (107:5): [True: 2, False: 10.9k]
  ------------------
  108|      2|					return DNS_R_SYNTAX;
  109|    850|				case '1':
  ------------------
  |  Branch (109:5): [True: 850, False: 10.0k]
  ------------------
  110|    850|					if (nsub < 1) {
  ------------------
  |  Branch (110:10): [True: 574, False: 276]
  ------------------
  111|    574|						nsub = 1;
  112|    574|					}
  113|    850|					break;
  114|    821|				case '2':
  ------------------
  |  Branch (114:5): [True: 821, False: 10.0k]
  ------------------
  115|    821|					if (nsub < 2) {
  ------------------
  |  Branch (115:10): [True: 305, False: 516]
  ------------------
  116|    305|						nsub = 2;
  117|    305|					}
  118|    821|					break;
  119|    801|				case '3':
  ------------------
  |  Branch (119:5): [True: 801, False: 10.1k]
  ------------------
  120|    801|					if (nsub < 3) {
  ------------------
  |  Branch (120:10): [True: 276, False: 525]
  ------------------
  121|    276|						nsub = 3;
  122|    276|					}
  123|    801|					break;
  124|  1.26k|				case '4':
  ------------------
  |  Branch (124:5): [True: 1.26k, False: 9.63k]
  ------------------
  125|  1.26k|					if (nsub < 4) {
  ------------------
  |  Branch (125:10): [True: 453, False: 814]
  ------------------
  126|    453|						nsub = 4;
  127|    453|					}
  128|  1.26k|					break;
  129|  1.68k|				case '5':
  ------------------
  |  Branch (129:5): [True: 1.68k, False: 9.22k]
  ------------------
  130|  1.68k|					if (nsub < 5) {
  ------------------
  |  Branch (130:10): [True: 544, False: 1.13k]
  ------------------
  131|    544|						nsub = 5;
  132|    544|					}
  133|  1.68k|					break;
  134|    624|				case '6':
  ------------------
  |  Branch (134:5): [True: 624, False: 10.2k]
  ------------------
  135|    624|					if (nsub < 6) {
  ------------------
  |  Branch (135:10): [True: 409, False: 215]
  ------------------
  136|    409|						nsub = 6;
  137|    409|					}
  138|    624|					break;
  139|    228|				case '7':
  ------------------
  |  Branch (139:5): [True: 228, False: 10.6k]
  ------------------
  140|    228|					if (nsub < 7) {
  ------------------
  |  Branch (140:10): [True: 103, False: 125]
  ------------------
  141|    103|						nsub = 7;
  142|    103|					}
  143|    228|					break;
  144|    462|				case '8':
  ------------------
  |  Branch (144:5): [True: 462, False: 10.4k]
  ------------------
  145|    462|					if (nsub < 8) {
  ------------------
  |  Branch (145:10): [True: 162, False: 300]
  ------------------
  146|    162|						nsub = 8;
  147|    162|					}
  148|    462|					break;
  149|    388|				case '9':
  ------------------
  |  Branch (149:5): [True: 388, False: 10.5k]
  ------------------
  150|    388|					if (nsub < 9) {
  ------------------
  |  Branch (150:10): [True: 224, False: 164]
  ------------------
  151|    224|						nsub = 9;
  152|    224|					}
  153|    388|					break;
  154|  10.9k|				}
  155|  10.9k|			}
  156|  19.0k|			if (!replace) {
  ------------------
  |  Branch (156:8): [True: 8.14k, False: 10.9k]
  ------------------
  157|  8.14k|				*cp++ = c;
  158|  8.14k|			}
  159|  19.0k|		}
  160|   394k|	}
  161|  4.54k|	if (!flags) {
  ------------------
  |  Branch (161:6): [True: 72, False: 4.47k]
  ------------------
  162|     72|		return DNS_R_SYNTAX;
  163|     72|	}
  164|  4.47k|	*cp = '\0';
  165|  4.47k|	n = isc_regex_validate(regex);
  166|  4.47k|	if (n < 0 || nsub > (unsigned int)n) {
  ------------------
  |  Branch (166:6): [True: 297, False: 4.17k]
  |  Branch (166:15): [True: 5, False: 4.17k]
  ------------------
  167|    302|		return DNS_R_SYNTAX;
  168|    302|	}
  169|  4.17k|	return ISC_R_SUCCESS;
  170|  4.47k|}
rdata.c:towire_naptr:
  351|  2.25k|towire_naptr(ARGS_TOWIRE) {
  352|  2.25k|	dns_name_t name;
  353|  2.25k|	isc_region_t sr;
  354|       |
  355|  2.25k|	REQUIRE(rdata->type == dns_rdatatype_naptr);
  ------------------
  |  |  198|  2.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  356|  2.25k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  357|       |
  358|  2.25k|	dns_compress_setpermitted(cctx, false);
  359|       |	/*
  360|       |	 * Order, preference.
  361|       |	 */
  362|  2.25k|	dns_rdata_toregion(rdata, &sr);
  363|  2.25k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.25k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  364|  2.25k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
  365|       |
  366|       |	/*
  367|       |	 * Flags.
  368|       |	 */
  369|  2.25k|	RETERR(mem_tobuffer(target, sr.base, sr.base[0] + 1));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.25k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  370|  2.25k|	isc_region_consume(&sr, sr.base[0] + 1);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
  371|       |
  372|       |	/*
  373|       |	 * Service.
  374|       |	 */
  375|  2.25k|	RETERR(mem_tobuffer(target, sr.base, sr.base[0] + 1));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.25k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  376|  2.25k|	isc_region_consume(&sr, sr.base[0] + 1);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
  377|       |
  378|       |	/*
  379|       |	 * Regexp.
  380|       |	 */
  381|  2.25k|	RETERR(mem_tobuffer(target, sr.base, sr.base[0] + 1));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.25k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  382|  2.25k|	isc_region_consume(&sr, sr.base[0] + 1);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
  383|       |
  384|       |	/*
  385|       |	 * Replacement.
  386|       |	 */
  387|  2.25k|	dns_name_init(&name);
  388|  2.25k|	dns_name_fromregion(&name, &sr);
  389|  2.25k|	return dns_name_towire(&name, cctx, target);
  390|  2.25k|}
rdata.c:totext_naptr:
  241|  4.63k|totext_naptr(ARGS_TOTEXT) {
  242|  4.63k|	isc_region_t region;
  243|  4.63k|	dns_name_t name;
  244|  4.63k|	dns_name_t prefix;
  245|  4.63k|	unsigned int opts;
  246|  4.63k|	char buf[sizeof("64000")];
  247|  4.63k|	unsigned short num;
  248|       |
  249|  4.63k|	REQUIRE(rdata->type == dns_rdatatype_naptr);
  ------------------
  |  |  198|  4.63k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.63k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.63k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.63k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  250|  4.63k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.63k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.63k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.63k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.63k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  251|       |
  252|  4.63k|	dns_name_init(&name);
  253|  4.63k|	dns_name_init(&prefix);
  254|       |
  255|  4.63k|	dns_rdata_toregion(rdata, &region);
  256|       |
  257|       |	/*
  258|       |	 * Order.
  259|       |	 */
  260|  4.63k|	num = uint16_fromregion(&region);
  261|  4.63k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  4.63k|	do {                              \
  |  |   51|  4.63k|		isc_region_t *_r = (r);   \
  |  |   52|  4.63k|		unsigned int  _l = (l);   \
  |  |   53|  4.63k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.63k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.63k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.63k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.63k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.63k|		_r->base += _l;           \
  |  |   55|  4.63k|		_r->length -= _l;         \
  |  |   56|  4.63k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.63k]
  |  |  ------------------
  ------------------
  262|  4.63k|	snprintf(buf, sizeof(buf), "%u", num);
  263|  4.63k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  264|  4.63k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  265|       |
  266|       |	/*
  267|       |	 * Preference.
  268|       |	 */
  269|  4.63k|	num = uint16_fromregion(&region);
  270|  4.63k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  4.63k|	do {                              \
  |  |   51|  4.63k|		isc_region_t *_r = (r);   \
  |  |   52|  4.63k|		unsigned int  _l = (l);   \
  |  |   53|  4.63k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.63k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.63k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.63k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.63k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.63k|		_r->base += _l;           \
  |  |   55|  4.63k|		_r->length -= _l;         \
  |  |   56|  4.63k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.63k]
  |  |  ------------------
  ------------------
  271|  4.63k|	snprintf(buf, sizeof(buf), "%u", num);
  272|  4.63k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  273|  4.63k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  274|       |
  275|       |	/*
  276|       |	 * Flags.
  277|       |	 */
  278|  4.63k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  279|  4.63k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  280|       |
  281|       |	/*
  282|       |	 * Service.
  283|       |	 */
  284|  4.63k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  285|  4.63k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  286|       |
  287|       |	/*
  288|       |	 * Regexp.
  289|       |	 */
  290|  4.63k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  291|  4.63k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.63k|	{                                  \
  |  |  277|  4.63k|		isc_result_t _r = (x);     \
  |  |  278|  4.63k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.63k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.63k|	}
  ------------------
  292|       |
  293|       |	/*
  294|       |	 * Replacement.
  295|       |	 */
  296|  4.63k|	dns_name_fromregion(&name, &region);
  297|  4.63k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (297:9): [True: 0, False: 4.63k]
  ------------------
  298|  4.63k|							 : 0;
  299|  4.63k|	return dns_name_totext(&prefix, opts, target);
  300|  4.63k|}

rdata.c:fromwire_nid:
   80|  1.20k|fromwire_nid(ARGS_FROMWIRE) {
   81|  1.20k|	isc_region_t sregion;
   82|       |
   83|  1.20k|	REQUIRE(type == dns_rdatatype_nid);
  ------------------
  |  |  198|  1.20k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.20k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.20k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|  1.20k|	UNUSED(type);
  ------------------
  |  |   69|  1.20k|#define UNUSED(x) (void)(x)
  ------------------
   86|  1.20k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.20k|#define UNUSED(x) (void)(x)
  ------------------
   87|  1.20k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.20k|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|  1.20k|	isc_buffer_activeregion(source, &sregion);
   90|  1.20k|	if (sregion.length != 10) {
  ------------------
  |  Branch (90:6): [True: 7, False: 1.20k]
  ------------------
   91|      7|		return DNS_R_FORMERR;
   92|      7|	}
   93|  1.20k|	isc_buffer_forward(source, sregion.length);
   94|  1.20k|	return mem_tobuffer(target, sregion.base, sregion.length);
   95|  1.20k|}
rdata.c:towire_nid:
   98|    401|towire_nid(ARGS_TOWIRE) {
   99|    401|	REQUIRE(rdata->type == dns_rdatatype_nid);
  ------------------
  |  |  198|    401|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    401|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 401, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    401|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|    401|	REQUIRE(rdata->length == 10);
  ------------------
  |  |  198|    401|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    401|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 401, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    401|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|    401|	UNUSED(cctx);
  ------------------
  |  |   69|    401|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|    401|	return mem_tobuffer(target, rdata->data, rdata->length);
  105|    401|}
rdata.c:totext_nid:
   53|    795|totext_nid(ARGS_TOTEXT) {
   54|    795|	isc_region_t region;
   55|    795|	char buf[sizeof("xxxx:xxxx:xxxx:xxxx")];
   56|    795|	unsigned short num;
   57|       |
   58|    795|	REQUIRE(rdata->type == dns_rdatatype_nid);
  ------------------
  |  |  198|    795|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    795|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 795, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    795|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|    795|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    795|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    795|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 795, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    795|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|    795|	UNUSED(tctx);
  ------------------
  |  |   69|    795|#define UNUSED(x) (void)(x)
  ------------------
   62|       |
   63|    795|	dns_rdata_toregion(rdata, &region);
   64|    795|	num = uint16_fromregion(&region);
   65|    795|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    795|	do {                              \
  |  |   51|    795|		isc_region_t *_r = (r);   \
  |  |   52|    795|		unsigned int  _l = (l);   \
  |  |   53|    795|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    795|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    795|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 795, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    795|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    795|		_r->base += _l;           \
  |  |   55|    795|		_r->length -= _l;         \
  |  |   56|    795|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 795]
  |  |  ------------------
  ------------------
   66|    795|	snprintf(buf, sizeof(buf), "%u", num);
   67|    795|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    795|	{                                  \
  |  |  277|    795|		isc_result_t _r = (x);     \
  |  |  278|    795|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 795]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    795|	}
  ------------------
   68|       |
   69|    795|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    795|	{                                  \
  |  |  277|    795|		isc_result_t _r = (x);     \
  |  |  278|    795|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 795]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    795|	}
  ------------------
   70|       |
   71|    795|	snprintf(buf, sizeof(buf), "%x:%x:%x:%x",
   72|    795|		 region.base[0] << 8 | region.base[1],
   73|    795|		 region.base[2] << 8 | region.base[3],
   74|    795|		 region.base[4] << 8 | region.base[5],
   75|    795|		 region.base[6] << 8 | region.base[7]);
   76|    795|	return str_totext(buf, target);
   77|    795|}

rdata.c:fromwire_ninfo:
   35|  1.10k|fromwire_ninfo(ARGS_FROMWIRE) {
   36|  1.10k|	REQUIRE(type == dns_rdatatype_ninfo);
  ------------------
  |  |  198|  1.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.10k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.10k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.10k|}
rdata.c:towire_ninfo:
   42|    481|towire_ninfo(ARGS_TOWIRE) {
   43|    481|	REQUIRE(rdata->type == dns_rdatatype_ninfo);
  ------------------
  |  |  198|    481|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    481|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 481, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    481|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    481|	UNUSED(cctx);
  ------------------
  |  |   69|    481|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    481|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    481|}
rdata.c:totext_ninfo:
   27|    949|totext_ninfo(ARGS_TOTEXT) {
   28|    949|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    949|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    949|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 949, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    949|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    949|	REQUIRE(rdata->type == dns_rdatatype_ninfo);
  ------------------
  |  |  198|    949|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    949|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 949, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    949|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    949|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    949|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    949|}

rdata.c:fromwire_ns:
   77|  3.33k|fromwire_ns(ARGS_FROMWIRE) {
   78|  3.33k|	dns_name_t name;
   79|       |
   80|  3.33k|	REQUIRE(type == dns_rdatatype_ns);
  ------------------
  |  |  198|  3.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|       |
   82|  3.33k|	UNUSED(type);
  ------------------
  |  |   69|  3.33k|#define UNUSED(x) (void)(x)
  ------------------
   83|  3.33k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.33k|#define UNUSED(x) (void)(x)
  ------------------
   84|       |
   85|  3.33k|	dctx = dns_decompress_setpermitted(dctx, true);
   86|       |
   87|  3.33k|	dns_name_init(&name);
   88|  3.33k|	return dns_name_fromwire(&name, source, dctx, target);
   89|  3.33k|}
rdata.c:towire_ns:
   92|  1.35k|towire_ns(ARGS_TOWIRE) {
   93|  1.35k|	dns_name_t name;
   94|  1.35k|	isc_region_t region;
   95|       |
   96|  1.35k|	REQUIRE(rdata->type == dns_rdatatype_ns);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   97|  1.35k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   98|       |
   99|  1.35k|	dns_compress_setpermitted(cctx, true);
  100|       |
  101|  1.35k|	dns_name_init(&name);
  102|  1.35k|	dns_rdata_toregion(rdata, &region);
  103|  1.35k|	dns_name_fromregion(&name, &region);
  104|       |
  105|  1.35k|	return dns_name_towire(&name, cctx, target);
  106|  1.35k|}
rdata.c:totext_ns:
   56|  2.66k|totext_ns(ARGS_TOTEXT) {
   57|  2.66k|	isc_region_t region;
   58|  2.66k|	dns_name_t name;
   59|  2.66k|	dns_name_t prefix;
   60|  2.66k|	unsigned int opts;
   61|       |
   62|  2.66k|	REQUIRE(rdata->type == dns_rdatatype_ns);
  ------------------
  |  |  198|  2.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   63|  2.66k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   64|       |
   65|  2.66k|	dns_name_init(&name);
   66|  2.66k|	dns_name_init(&prefix);
   67|       |
   68|  2.66k|	dns_rdata_toregion(rdata, &region);
   69|  2.66k|	dns_name_fromregion(&name, &region);
   70|       |
   71|  2.66k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (71:9): [True: 0, False: 2.66k]
  ------------------
   72|  2.66k|							 : 0;
   73|  2.66k|	return dns_name_totext(&prefix, opts, target);
   74|  2.66k|}

rdata.c:fromwire_nsec3:
  196|  4.14k|fromwire_nsec3(ARGS_FROMWIRE) {
  197|  4.14k|	isc_region_t sr, rr;
  198|  4.14k|	unsigned int hash, saltlen, hashlen;
  199|       |
  200|  4.14k|	REQUIRE(type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  4.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  201|       |
  202|  4.14k|	UNUSED(type);
  ------------------
  |  |   69|  4.14k|#define UNUSED(x) (void)(x)
  ------------------
  203|  4.14k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.14k|#define UNUSED(x) (void)(x)
  ------------------
  204|  4.14k|	UNUSED(dctx);
  ------------------
  |  |   69|  4.14k|#define UNUSED(x) (void)(x)
  ------------------
  205|       |
  206|  4.14k|	isc_buffer_activeregion(source, &sr);
  207|  4.14k|	rr = sr;
  208|       |
  209|       |	/* hash(1), flags(1), iteration(2), saltlen(1) */
  210|  4.14k|	if (sr.length < 5U) {
  ------------------
  |  Branch (210:6): [True: 5, False: 4.13k]
  ------------------
  211|      5|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      5|	{                                  \
  |  |  277|      5|		isc_result_t _r = (x);     \
  |  |  278|      5|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 5, False: 0]
  |  |  ------------------
  |  |  279|      5|			return ((_r));     \
  |  |  280|      5|		}                          \
  |  |  281|      5|	}
  ------------------
  212|      0|	}
  213|  4.13k|	hash = sr.base[0];
  214|  4.13k|	saltlen = sr.base[4];
  215|  4.13k|	isc_region_consume(&sr, 5);
  ------------------
  |  |   50|  4.13k|	do {                              \
  |  |   51|  4.13k|		isc_region_t *_r = (r);   \
  |  |   52|  4.13k|		unsigned int  _l = (l);   \
  |  |   53|  4.13k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.13k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.13k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.13k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.13k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.13k|		_r->base += _l;           \
  |  |   55|  4.13k|		_r->length -= _l;         \
  |  |   56|  4.13k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.13k]
  |  |  ------------------
  ------------------
  216|       |
  217|  4.13k|	if (sr.length < saltlen) {
  ------------------
  |  Branch (217:6): [True: 5, False: 4.13k]
  ------------------
  218|      5|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      5|	{                                  \
  |  |  277|      5|		isc_result_t _r = (x);     \
  |  |  278|      5|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 5, False: 0]
  |  |  ------------------
  |  |  279|      5|			return ((_r));     \
  |  |  280|      5|		}                          \
  |  |  281|      5|	}
  ------------------
  219|      0|	}
  220|  4.13k|	isc_region_consume(&sr, saltlen);
  ------------------
  |  |   50|  4.13k|	do {                              \
  |  |   51|  4.13k|		isc_region_t *_r = (r);   \
  |  |   52|  4.13k|		unsigned int  _l = (l);   \
  |  |   53|  4.13k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.13k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.13k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.13k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.13k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.13k|		_r->base += _l;           \
  |  |   55|  4.13k|		_r->length -= _l;         \
  |  |   56|  4.13k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.13k]
  |  |  ------------------
  ------------------
  221|       |
  222|  4.13k|	if (sr.length < 1U) {
  ------------------
  |  Branch (222:6): [True: 1, False: 4.13k]
  ------------------
  223|      1|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      1|	{                                  \
  |  |  277|      1|		isc_result_t _r = (x);     \
  |  |  278|      1|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 0]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|      1|	}
  ------------------
  224|      0|	}
  225|  4.13k|	hashlen = sr.base[0];
  226|  4.13k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.13k|	do {                              \
  |  |   51|  4.13k|		isc_region_t *_r = (r);   \
  |  |   52|  4.13k|		unsigned int  _l = (l);   \
  |  |   53|  4.13k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.13k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.13k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.13k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.13k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.13k|		_r->base += _l;           \
  |  |   55|  4.13k|		_r->length -= _l;         \
  |  |   56|  4.13k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.13k]
  |  |  ------------------
  ------------------
  227|       |
  228|  4.13k|	switch (hash) {
  229|    756|	case dns_hash_sha1:
  ------------------
  |  Branch (229:2): [True: 756, False: 3.37k]
  ------------------
  230|    756|		if (hashlen != ISC_SHA1_DIGESTLENGTH || sr.length < hashlen) {
  ------------------
  |  |   50|  1.51k|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  |  Branch (230:7): [True: 9, False: 747]
  |  Branch (230:43): [True: 2, False: 745]
  ------------------
  231|     11|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     11|	{                                  \
  |  |  277|     11|		isc_result_t _r = (x);     \
  |  |  278|     11|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 11, False: 0]
  |  |  ------------------
  |  |  279|     11|			return ((_r));     \
  |  |  280|     11|		}                          \
  |  |  281|     11|	}
  ------------------
  232|      0|		}
  233|    745|		break;
  234|  3.37k|	default:
  ------------------
  |  Branch (234:2): [True: 3.37k, False: 756]
  ------------------
  235|  3.37k|		if (hashlen < 1 || hashlen > NSEC3_MAX_HASH_LENGTH ||
  ------------------
  |  |   34|  6.74k|#define NSEC3_MAX_HASH_LENGTH 39
  ------------------
  |  Branch (235:7): [True: 5, False: 3.36k]
  |  Branch (235:22): [True: 1, False: 3.36k]
  ------------------
  236|  3.36k|		    sr.length < hashlen)
  ------------------
  |  Branch (236:7): [True: 3, False: 3.36k]
  ------------------
  237|      9|		{
  238|      9|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      9|	{                                  \
  |  |  277|      9|		isc_result_t _r = (x);     \
  |  |  278|      9|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 9, False: 0]
  |  |  ------------------
  |  |  279|      9|			return ((_r));     \
  |  |  280|      9|		}                          \
  |  |  281|      9|	}
  ------------------
  239|      0|		}
  240|  3.36k|		break;
  241|  4.13k|	}
  242|  4.11k|	isc_region_consume(&sr, hashlen);
  ------------------
  |  |   50|  4.11k|	do {                              \
  |  |   51|  4.11k|		isc_region_t *_r = (r);   \
  |  |   52|  4.11k|		unsigned int  _l = (l);   \
  |  |   53|  4.11k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.11k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.11k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.11k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.11k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.11k|		_r->base += _l;           \
  |  |   55|  4.11k|		_r->length -= _l;         \
  |  |   56|  4.11k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.11k]
  |  |  ------------------
  ------------------
  243|       |
  244|  4.11k|	RETERR(typemap_test(&sr, true));
  ------------------
  |  |  276|  4.11k|	{                                  \
  |  |  277|  4.11k|		isc_result_t _r = (x);     \
  |  |  278|  4.11k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 47, False: 4.06k]
  |  |  ------------------
  |  |  279|     47|			return ((_r));     \
  |  |  280|     47|		}                          \
  |  |  281|  4.11k|	}
  ------------------
  245|       |
  246|  4.06k|	RETERR(mem_tobuffer(target, rr.base, rr.length));
  ------------------
  |  |  276|  4.06k|	{                                  \
  |  |  277|  4.06k|		isc_result_t _r = (x);     \
  |  |  278|  4.06k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 135, False: 3.92k]
  |  |  ------------------
  |  |  279|    135|			return ((_r));     \
  |  |  280|    135|		}                          \
  |  |  281|  4.06k|	}
  ------------------
  247|  3.92k|	isc_buffer_forward(source, rr.length);
  248|  3.92k|	return ISC_R_SUCCESS;
  249|  4.06k|}
rdata.c:towire_nsec3:
  252|  1.80k|towire_nsec3(ARGS_TOWIRE) {
  253|  1.80k|	isc_region_t sr;
  254|       |
  255|  1.80k|	REQUIRE(rdata->type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  1.80k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.80k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.80k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.80k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  256|  1.80k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.80k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.80k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.80k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.80k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  257|       |
  258|  1.80k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.80k|#define UNUSED(x) (void)(x)
  ------------------
  259|       |
  260|  1.80k|	dns_rdata_toregion(rdata, &sr);
  261|  1.80k|	return mem_tobuffer(target, sr.base, sr.length);
  262|  1.80k|}
rdata.c:totext_nsec3:
  120|  3.57k|totext_nsec3(ARGS_TOTEXT) {
  121|  3.57k|	isc_region_t sr;
  122|  3.57k|	unsigned int i, j;
  123|  3.57k|	unsigned char hash;
  124|  3.57k|	unsigned char flags;
  125|  3.57k|	char buf[sizeof("TYPE65535")];
  126|  3.57k|	uint32_t iterations;
  127|       |
  128|  3.57k|	REQUIRE(rdata->type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  3.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|  3.57k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|  3.57k|	dns_rdata_toregion(rdata, &sr);
  132|       |
  133|       |	/* Hash */
  134|  3.57k|	hash = uint8_fromregion(&sr);
  135|  3.57k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.57k|	do {                              \
  |  |   51|  3.57k|		isc_region_t *_r = (r);   \
  |  |   52|  3.57k|		unsigned int  _l = (l);   \
  |  |   53|  3.57k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.57k|		_r->base += _l;           \
  |  |   55|  3.57k|		_r->length -= _l;         \
  |  |   56|  3.57k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.57k]
  |  |  ------------------
  ------------------
  136|  3.57k|	snprintf(buf, sizeof(buf), "%u ", hash);
  137|  3.57k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.57k|	{                                  \
  |  |  277|  3.57k|		isc_result_t _r = (x);     \
  |  |  278|  3.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.57k|	}
  ------------------
  138|       |
  139|       |	/* Flags */
  140|  3.57k|	flags = uint8_fromregion(&sr);
  141|  3.57k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.57k|	do {                              \
  |  |   51|  3.57k|		isc_region_t *_r = (r);   \
  |  |   52|  3.57k|		unsigned int  _l = (l);   \
  |  |   53|  3.57k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.57k|		_r->base += _l;           \
  |  |   55|  3.57k|		_r->length -= _l;         \
  |  |   56|  3.57k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.57k]
  |  |  ------------------
  ------------------
  142|  3.57k|	snprintf(buf, sizeof(buf), "%u ", flags);
  143|  3.57k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.57k|	{                                  \
  |  |  277|  3.57k|		isc_result_t _r = (x);     \
  |  |  278|  3.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.57k|	}
  ------------------
  144|       |
  145|       |	/* Iterations */
  146|  3.57k|	iterations = uint16_fromregion(&sr);
  147|  3.57k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.57k|	do {                              \
  |  |   51|  3.57k|		isc_region_t *_r = (r);   \
  |  |   52|  3.57k|		unsigned int  _l = (l);   \
  |  |   53|  3.57k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.57k|		_r->base += _l;           \
  |  |   55|  3.57k|		_r->length -= _l;         \
  |  |   56|  3.57k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.57k]
  |  |  ------------------
  ------------------
  148|  3.57k|	snprintf(buf, sizeof(buf), "%u ", iterations);
  149|  3.57k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.57k|	{                                  \
  |  |  277|  3.57k|		isc_result_t _r = (x);     \
  |  |  278|  3.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.57k|	}
  ------------------
  150|       |
  151|       |	/* Salt */
  152|  3.57k|	j = uint8_fromregion(&sr);
  153|  3.57k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.57k|	do {                              \
  |  |   51|  3.57k|		isc_region_t *_r = (r);   \
  |  |   52|  3.57k|		unsigned int  _l = (l);   \
  |  |   53|  3.57k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.57k|		_r->base += _l;           \
  |  |   55|  3.57k|		_r->length -= _l;         \
  |  |   56|  3.57k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.57k]
  |  |  ------------------
  ------------------
  154|  3.57k|	INSIST(j <= sr.length);
  ------------------
  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  155|       |
  156|  3.57k|	if (j != 0) {
  ------------------
  |  Branch (156:6): [True: 1.26k, False: 2.30k]
  ------------------
  157|  1.26k|		i = sr.length;
  158|  1.26k|		sr.length = j;
  159|  1.26k|		RETERR(isc_hex_totext(&sr, 1, "", target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  160|  1.26k|		sr.length = i - j;
  161|  2.30k|	} else {
  162|  2.30k|		RETERR(str_totext("-", target));
  ------------------
  |  |  276|  2.30k|	{                                  \
  |  |  277|  2.30k|		isc_result_t _r = (x);     \
  |  |  278|  2.30k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.30k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.30k|	}
  ------------------
  163|  2.30k|	}
  164|       |
  165|  3.57k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.57k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (165:6): [True: 0, False: 3.57k]
  ------------------
  166|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  167|      0|	}
  168|  3.57k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.57k|	{                                  \
  |  |  277|  3.57k|		isc_result_t _r = (x);     \
  |  |  278|  3.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.57k|	}
  ------------------
  169|       |
  170|       |	/* Next hash */
  171|  3.57k|	j = uint8_fromregion(&sr);
  172|  3.57k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.57k|	do {                              \
  |  |   51|  3.57k|		isc_region_t *_r = (r);   \
  |  |   52|  3.57k|		unsigned int  _l = (l);   \
  |  |   53|  3.57k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.57k|		_r->base += _l;           \
  |  |   55|  3.57k|		_r->length -= _l;         \
  |  |   56|  3.57k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.57k]
  |  |  ------------------
  ------------------
  173|  3.57k|	INSIST(j <= sr.length);
  ------------------
  |  |  202|  3.57k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.57k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.57k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  174|       |
  175|  3.57k|	i = sr.length;
  176|  3.57k|	sr.length = j;
  177|  3.57k|	RETERR(isc_base32hexnp_totext(&sr, 1, "", target));
  ------------------
  |  |  276|  3.57k|	{                                  \
  |  |  277|  3.57k|		isc_result_t _r = (x);     \
  |  |  278|  3.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.57k|	}
  ------------------
  178|  3.57k|	sr.length = i - j;
  179|       |
  180|       |	/*
  181|       |	 * Don't leave a trailing space when there's no typemap present.
  182|       |	 */
  183|  3.57k|	if (((tctx->flags & DNS_STYLEFLAG_MULTILINE) == 0) && (sr.length > 0)) {
  ------------------
  |  |  191|  3.57k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (183:6): [True: 3.57k, False: 0]
  |  Branch (183:56): [True: 1.15k, False: 2.42k]
  ------------------
  184|  1.15k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.15k|	{                                  \
  |  |  277|  1.15k|		isc_result_t _r = (x);     \
  |  |  278|  1.15k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.15k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.15k|	}
  ------------------
  185|  1.15k|	}
  186|  3.57k|	RETERR(typemap_totext(&sr, tctx, target));
  ------------------
  |  |  276|  3.57k|	{                                  \
  |  |  277|  3.57k|		isc_result_t _r = (x);     \
  |  |  278|  3.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.57k|	}
  ------------------
  187|       |
  188|  3.57k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.57k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (188:6): [True: 0, False: 3.57k]
  ------------------
  189|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  190|      0|	}
  191|       |
  192|  3.57k|	return ISC_R_SUCCESS;
  193|  3.57k|}
rdata.c:checkowner_nsec3:
  395|  5.06k|checkowner_nsec3(ARGS_CHECKOWNER) {
  396|  5.06k|	unsigned char owner[NSEC3_MAX_HASH_LENGTH];
  397|  5.06k|	isc_buffer_t buffer;
  398|  5.06k|	dns_label_t label;
  399|       |
  400|  5.06k|	REQUIRE(type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  5.06k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.06k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.06k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.06k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  401|       |
  402|  5.06k|	UNUSED(type);
  ------------------
  |  |   69|  5.06k|#define UNUSED(x) (void)(x)
  ------------------
  403|  5.06k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.06k|#define UNUSED(x) (void)(x)
  ------------------
  404|  5.06k|	UNUSED(wildcard);
  ------------------
  |  |   69|  5.06k|#define UNUSED(x) (void)(x)
  ------------------
  405|       |
  406|       |	/*
  407|       |	 * First label is a base32hex string without padding.
  408|       |	 */
  409|  5.06k|	dns_name_getlabel(name, 0, &label);
  410|  5.06k|	isc_region_consume(&label, 1);
  ------------------
  |  |   50|  5.06k|	do {                              \
  |  |   51|  5.06k|		isc_region_t *_r = (r);   \
  |  |   52|  5.06k|		unsigned int  _l = (l);   \
  |  |   53|  5.06k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.06k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.06k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.06k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.06k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.06k|		_r->base += _l;           \
  |  |   55|  5.06k|		_r->length -= _l;         \
  |  |   56|  5.06k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.06k]
  |  |  ------------------
  ------------------
  411|  5.06k|	isc_buffer_init(&buffer, owner, sizeof(owner));
  412|  5.06k|	if (isc_base32hexnp_decoderegion(&label, &buffer) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (412:6): [True: 5.04k, False: 19]
  ------------------
  413|  5.04k|		return true;
  414|  5.04k|	}
  415|       |
  416|     19|	return false;
  417|  5.06k|}

rdata.c:fromwire_nsec3param:
  144|  1.31k|fromwire_nsec3param(ARGS_FROMWIRE) {
  145|  1.31k|	isc_region_t sr, rr;
  146|  1.31k|	unsigned int saltlen;
  147|       |
  148|  1.31k|	REQUIRE(type == dns_rdatatype_nsec3param);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  149|       |
  150|  1.31k|	UNUSED(type);
  ------------------
  |  |   69|  1.31k|#define UNUSED(x) (void)(x)
  ------------------
  151|  1.31k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.31k|#define UNUSED(x) (void)(x)
  ------------------
  152|  1.31k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.31k|#define UNUSED(x) (void)(x)
  ------------------
  153|       |
  154|  1.31k|	isc_buffer_activeregion(source, &sr);
  155|  1.31k|	rr = sr;
  156|       |
  157|       |	/* hash(1), flags(1), iterations(2), saltlen(1) */
  158|  1.31k|	if (sr.length < 5U) {
  ------------------
  |  Branch (158:6): [True: 6, False: 1.30k]
  ------------------
  159|      6|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  160|      0|	}
  161|  1.30k|	saltlen = sr.base[4];
  162|  1.30k|	isc_region_consume(&sr, 5);
  ------------------
  |  |   50|  1.30k|	do {                              \
  |  |   51|  1.30k|		isc_region_t *_r = (r);   \
  |  |   52|  1.30k|		unsigned int  _l = (l);   \
  |  |   53|  1.30k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.30k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.30k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.30k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.30k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.30k|		_r->base += _l;           \
  |  |   55|  1.30k|		_r->length -= _l;         \
  |  |   56|  1.30k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.30k]
  |  |  ------------------
  ------------------
  163|       |
  164|  1.30k|	if (sr.length != saltlen) {
  ------------------
  |  Branch (164:6): [True: 13, False: 1.29k]
  ------------------
  165|     13|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     13|	{                                  \
  |  |  277|     13|		isc_result_t _r = (x);     \
  |  |  278|     13|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 13, False: 0]
  |  |  ------------------
  |  |  279|     13|			return ((_r));     \
  |  |  280|     13|		}                          \
  |  |  281|     13|	}
  ------------------
  166|      0|	}
  167|  1.29k|	isc_region_consume(&sr, saltlen);
  ------------------
  |  |   50|  1.29k|	do {                              \
  |  |   51|  1.29k|		isc_region_t *_r = (r);   \
  |  |   52|  1.29k|		unsigned int  _l = (l);   \
  |  |   53|  1.29k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.29k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.29k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.29k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.29k|		_r->base += _l;           \
  |  |   55|  1.29k|		_r->length -= _l;         \
  |  |   56|  1.29k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.29k]
  |  |  ------------------
  ------------------
  168|  1.29k|	RETERR(mem_tobuffer(target, rr.base, rr.length));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 83, False: 1.21k]
  |  |  ------------------
  |  |  279|     83|			return ((_r));     \
  |  |  280|     83|		}                          \
  |  |  281|  1.29k|	}
  ------------------
  169|  1.21k|	isc_buffer_forward(source, rr.length);
  170|  1.21k|	return ISC_R_SUCCESS;
  171|  1.29k|}
rdata.c:towire_nsec3param:
  174|    563|towire_nsec3param(ARGS_TOWIRE) {
  175|    563|	isc_region_t sr;
  176|       |
  177|    563|	REQUIRE(rdata->type == dns_rdatatype_nsec3param);
  ------------------
  |  |  198|    563|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    563|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 563, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    563|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  178|    563|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    563|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    563|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 563, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    563|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  179|       |
  180|    563|	UNUSED(cctx);
  ------------------
  |  |   69|    563|#define UNUSED(x) (void)(x)
  ------------------
  181|       |
  182|    563|	dns_rdata_toregion(rdata, &sr);
  183|    563|	return mem_tobuffer(target, sr.base, sr.length);
  184|    563|}
rdata.c:totext_nsec3param:
   94|  1.10k|totext_nsec3param(ARGS_TOTEXT) {
   95|  1.10k|	isc_region_t sr;
   96|  1.10k|	unsigned int i, j;
   97|  1.10k|	unsigned char hash;
   98|  1.10k|	unsigned char flags;
   99|  1.10k|	char buf[sizeof("65535 ")];
  100|  1.10k|	uint32_t iterations;
  101|       |
  102|  1.10k|	REQUIRE(rdata->type == dns_rdatatype_nsec3param);
  ------------------
  |  |  198|  1.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|  1.10k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|       |
  105|  1.10k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.10k|#define UNUSED(x) (void)(x)
  ------------------
  106|       |
  107|  1.10k|	dns_rdata_toregion(rdata, &sr);
  108|       |
  109|  1.10k|	hash = uint8_fromregion(&sr);
  110|  1.10k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.10k|	do {                              \
  |  |   51|  1.10k|		isc_region_t *_r = (r);   \
  |  |   52|  1.10k|		unsigned int  _l = (l);   \
  |  |   53|  1.10k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.10k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.10k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.10k|		_r->base += _l;           \
  |  |   55|  1.10k|		_r->length -= _l;         \
  |  |   56|  1.10k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.10k]
  |  |  ------------------
  ------------------
  111|       |
  112|  1.10k|	flags = uint8_fromregion(&sr);
  113|  1.10k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.10k|	do {                              \
  |  |   51|  1.10k|		isc_region_t *_r = (r);   \
  |  |   52|  1.10k|		unsigned int  _l = (l);   \
  |  |   53|  1.10k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.10k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.10k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.10k|		_r->base += _l;           \
  |  |   55|  1.10k|		_r->length -= _l;         \
  |  |   56|  1.10k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.10k]
  |  |  ------------------
  ------------------
  114|       |
  115|  1.10k|	iterations = uint16_fromregion(&sr);
  116|  1.10k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.10k|	do {                              \
  |  |   51|  1.10k|		isc_region_t *_r = (r);   \
  |  |   52|  1.10k|		unsigned int  _l = (l);   \
  |  |   53|  1.10k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.10k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.10k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.10k|		_r->base += _l;           \
  |  |   55|  1.10k|		_r->length -= _l;         \
  |  |   56|  1.10k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.10k]
  |  |  ------------------
  ------------------
  117|       |
  118|  1.10k|	snprintf(buf, sizeof(buf), "%u ", hash);
  119|  1.10k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.10k|	{                                  \
  |  |  277|  1.10k|		isc_result_t _r = (x);     \
  |  |  278|  1.10k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.10k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.10k|	}
  ------------------
  120|       |
  121|  1.10k|	snprintf(buf, sizeof(buf), "%u ", flags);
  122|  1.10k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.10k|	{                                  \
  |  |  277|  1.10k|		isc_result_t _r = (x);     \
  |  |  278|  1.10k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.10k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.10k|	}
  ------------------
  123|       |
  124|  1.10k|	snprintf(buf, sizeof(buf), "%u ", iterations);
  125|  1.10k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.10k|	{                                  \
  |  |  277|  1.10k|		isc_result_t _r = (x);     \
  |  |  278|  1.10k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.10k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.10k|	}
  ------------------
  126|       |
  127|  1.10k|	j = uint8_fromregion(&sr);
  128|  1.10k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.10k|	do {                              \
  |  |   51|  1.10k|		isc_region_t *_r = (r);   \
  |  |   52|  1.10k|		unsigned int  _l = (l);   \
  |  |   53|  1.10k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.10k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.10k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.10k|		_r->base += _l;           \
  |  |   55|  1.10k|		_r->length -= _l;         \
  |  |   56|  1.10k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.10k]
  |  |  ------------------
  ------------------
  129|  1.10k|	INSIST(j <= sr.length);
  ------------------
  |  |  202|  1.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.10k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|  1.10k|	if (j != 0) {
  ------------------
  |  Branch (131:6): [True: 652, False: 456]
  ------------------
  132|    652|		i = sr.length;
  133|    652|		sr.length = j;
  134|    652|		RETERR(isc_hex_totext(&sr, 1, "", target));
  ------------------
  |  |  276|    652|	{                                  \
  |  |  277|    652|		isc_result_t _r = (x);     \
  |  |  278|    652|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 652]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    652|	}
  ------------------
  135|    652|		sr.length = i - j;
  136|    652|	} else {
  137|    456|		RETERR(str_totext("-", target));
  ------------------
  |  |  276|    456|	{                                  \
  |  |  277|    456|		isc_result_t _r = (x);     \
  |  |  278|    456|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 456]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    456|	}
  ------------------
  138|    456|	}
  139|       |
  140|  1.10k|	return ISC_R_SUCCESS;
  141|  1.10k|}

rdata.c:fromwire_nsec:
   77|  2.59k|fromwire_nsec(ARGS_FROMWIRE) {
   78|  2.59k|	isc_region_t sr;
   79|  2.59k|	dns_name_t name;
   80|       |
   81|  2.59k|	REQUIRE(type == dns_rdatatype_nsec);
  ------------------
  |  |  198|  2.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|       |
   83|  2.59k|	UNUSED(type);
  ------------------
  |  |   69|  2.59k|#define UNUSED(x) (void)(x)
  ------------------
   84|  2.59k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.59k|#define UNUSED(x) (void)(x)
  ------------------
   85|       |
   86|  2.59k|	dctx = dns_decompress_setpermitted(dctx, false);
   87|       |
   88|  2.59k|	dns_name_init(&name);
   89|  2.59k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  2.59k|	{                                  \
  |  |  277|  2.59k|		isc_result_t _r = (x);     \
  |  |  278|  2.59k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 40, False: 2.55k]
  |  |  ------------------
  |  |  279|     40|			return ((_r));     \
  |  |  280|     40|		}                          \
  |  |  281|  2.59k|	}
  ------------------
   90|       |
   91|  2.55k|	isc_buffer_activeregion(source, &sr);
   92|  2.55k|	RETERR(typemap_test(&sr, false));
  ------------------
  |  |  276|  2.55k|	{                                  \
  |  |  277|  2.55k|		isc_result_t _r = (x);     \
  |  |  278|  2.55k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 32, False: 2.52k]
  |  |  ------------------
  |  |  279|     32|			return ((_r));     \
  |  |  280|     32|		}                          \
  |  |  281|  2.55k|	}
  ------------------
   93|  2.52k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.52k|	{                                  \
  |  |  277|  2.52k|		isc_result_t _r = (x);     \
  |  |  278|  2.52k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 40, False: 2.48k]
  |  |  ------------------
  |  |  279|     40|			return ((_r));     \
  |  |  280|     40|		}                          \
  |  |  281|  2.52k|	}
  ------------------
   94|  2.48k|	isc_buffer_forward(source, sr.length);
   95|  2.48k|	return ISC_R_SUCCESS;
   96|  2.52k|}
rdata.c:towire_nsec:
   99|  1.16k|towire_nsec(ARGS_TOWIRE) {
  100|  1.16k|	isc_region_t sr;
  101|  1.16k|	dns_name_t name;
  102|       |
  103|  1.16k|	REQUIRE(rdata->type == dns_rdatatype_nsec);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|  1.16k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|       |
  106|  1.16k|	dns_compress_setpermitted(cctx, false);
  107|  1.16k|	dns_name_init(&name);
  108|  1.16k|	dns_rdata_toregion(rdata, &sr);
  109|  1.16k|	dns_name_fromregion(&name, &sr);
  110|  1.16k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.16k|	do {                              \
  |  |   51|  1.16k|		isc_region_t *_r = (r);   \
  |  |   52|  1.16k|		unsigned int  _l = (l);   \
  |  |   53|  1.16k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.16k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.16k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.16k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.16k|		_r->base += _l;           \
  |  |   55|  1.16k|		_r->length -= _l;         \
  |  |   56|  1.16k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.16k]
  |  |  ------------------
  ------------------
  111|  1.16k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.16k|	{                                  \
  |  |  277|  1.16k|		isc_result_t _r = (x);     \
  |  |  278|  1.16k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.16k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.16k|	}
  ------------------
  112|       |
  113|  1.16k|	return mem_tobuffer(target, sr.base, sr.length);
  114|  1.16k|}
rdata.c:totext_nsec:
   53|  2.26k|totext_nsec(ARGS_TOTEXT) {
   54|  2.26k|	isc_region_t sr;
   55|  2.26k|	dns_name_t name;
   56|       |
   57|  2.26k|	REQUIRE(rdata->type == dns_rdatatype_nsec);
  ------------------
  |  |  198|  2.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|  2.26k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|       |
   60|  2.26k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.26k|#define UNUSED(x) (void)(x)
  ------------------
   61|       |
   62|  2.26k|	dns_name_init(&name);
   63|  2.26k|	dns_rdata_toregion(rdata, &sr);
   64|  2.26k|	dns_name_fromregion(&name, &sr);
   65|  2.26k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  2.26k|	do {                              \
  |  |   51|  2.26k|		isc_region_t *_r = (r);   \
  |  |   52|  2.26k|		unsigned int  _l = (l);   \
  |  |   53|  2.26k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.26k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.26k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.26k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.26k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.26k|		_r->base += _l;           \
  |  |   55|  2.26k|		_r->length -= _l;         \
  |  |   56|  2.26k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.26k]
  |  |  ------------------
  ------------------
   66|  2.26k|	RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|  2.26k|	{                                  \
  |  |  277|  2.26k|		isc_result_t _r = (x);     \
  |  |  278|  2.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.26k|	}
  ------------------
   67|       |	/*
   68|       |	 * Don't leave a trailing space when there's no typemap present.
   69|       |	 */
   70|  2.26k|	if (sr.length > 0) {
  ------------------
  |  Branch (70:6): [True: 2.26k, False: 0]
  ------------------
   71|  2.26k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.26k|	{                                  \
  |  |  277|  2.26k|		isc_result_t _r = (x);     \
  |  |  278|  2.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.26k|	}
  ------------------
   72|  2.26k|	}
   73|  2.26k|	return typemap_totext(&sr, NULL, target);
   74|  2.26k|}

rdata.c:fromwire_null:
   42|  4.68k|fromwire_null(ARGS_FROMWIRE) {
   43|  4.68k|	isc_region_t sr;
   44|       |
   45|  4.68k|	REQUIRE(type == dns_rdatatype_null);
  ------------------
  |  |  198|  4.68k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.68k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.68k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.68k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|       |
   47|  4.68k|	UNUSED(type);
  ------------------
  |  |   69|  4.68k|#define UNUSED(x) (void)(x)
  ------------------
   48|  4.68k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.68k|#define UNUSED(x) (void)(x)
  ------------------
   49|  4.68k|	UNUSED(dctx);
  ------------------
  |  |   69|  4.68k|#define UNUSED(x) (void)(x)
  ------------------
   50|       |
   51|  4.68k|	isc_buffer_activeregion(source, &sr);
   52|  4.68k|	isc_buffer_forward(source, sr.length);
   53|  4.68k|	return mem_tobuffer(target, sr.base, sr.length);
   54|  4.68k|}
rdata.c:towire_null:
   57|  2.16k|towire_null(ARGS_TOWIRE) {
   58|  2.16k|	REQUIRE(rdata->type == dns_rdatatype_null);
  ------------------
  |  |  198|  2.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|       |
   60|  2.16k|	UNUSED(cctx);
  ------------------
  |  |   69|  2.16k|#define UNUSED(x) (void)(x)
  ------------------
   61|       |
   62|  2.16k|	return mem_tobuffer(target, rdata->data, rdata->length);
   63|  2.16k|}
rdata.c:totext_null:
   35|  4.35k|totext_null(ARGS_TOTEXT) {
   36|  4.35k|	REQUIRE(rdata->type == dns_rdatatype_null);
  ------------------
  |  |  198|  4.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  4.35k|	return unknown_totext(rdata, tctx, target);
   39|  4.35k|}

rdata.c:fromwire_nxt:
  136|  2.65k|fromwire_nxt(ARGS_FROMWIRE) {
  137|  2.65k|	isc_region_t sr;
  138|  2.65k|	dns_name_t name;
  139|       |
  140|  2.65k|	REQUIRE(type == dns_rdatatype_nxt);
  ------------------
  |  |  198|  2.65k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.65k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.65k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.65k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  141|       |
  142|  2.65k|	UNUSED(type);
  ------------------
  |  |   69|  2.65k|#define UNUSED(x) (void)(x)
  ------------------
  143|  2.65k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.65k|#define UNUSED(x) (void)(x)
  ------------------
  144|       |
  145|  2.65k|	dctx = dns_decompress_setpermitted(dctx, false);
  146|       |
  147|  2.65k|	dns_name_init(&name);
  148|  2.65k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  2.65k|	{                                  \
  |  |  277|  2.65k|		isc_result_t _r = (x);     \
  |  |  278|  2.65k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 116, False: 2.53k]
  |  |  ------------------
  |  |  279|    116|			return ((_r));     \
  |  |  280|    116|		}                          \
  |  |  281|  2.65k|	}
  ------------------
  149|       |
  150|  2.53k|	isc_buffer_activeregion(source, &sr);
  151|  2.53k|	if (sr.length > 0 && ((sr.base[0] & 0x80) != 0 || sr.length > 16 ||
  ------------------
  |  Branch (151:6): [True: 1.82k, False: 709]
  |  Branch (151:24): [True: 6, False: 1.82k]
  |  Branch (151:52): [True: 10, False: 1.81k]
  ------------------
  152|  1.81k|			      sr.base[sr.length - 1] == 0))
  ------------------
  |  Branch (152:10): [True: 2, False: 1.80k]
  ------------------
  153|     18|	{
  154|     18|		return DNS_R_BADBITMAP;
  155|     18|	}
  156|  2.51k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.51k|	{                                  \
  |  |  277|  2.51k|		isc_result_t _r = (x);     \
  |  |  278|  2.51k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 77, False: 2.44k]
  |  |  ------------------
  |  |  279|     77|			return ((_r));     \
  |  |  280|     77|		}                          \
  |  |  281|  2.51k|	}
  ------------------
  157|  2.44k|	isc_buffer_forward(source, sr.length);
  158|  2.44k|	return ISC_R_SUCCESS;
  159|  2.51k|}
rdata.c:towire_nxt:
  162|  1.21k|towire_nxt(ARGS_TOWIRE) {
  163|  1.21k|	isc_region_t sr;
  164|  1.21k|	dns_name_t name;
  165|       |
  166|  1.21k|	REQUIRE(rdata->type == dns_rdatatype_nxt);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  167|  1.21k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  168|       |
  169|  1.21k|	dns_compress_setpermitted(cctx, false);
  170|  1.21k|	dns_name_init(&name);
  171|  1.21k|	dns_rdata_toregion(rdata, &sr);
  172|  1.21k|	dns_name_fromregion(&name, &sr);
  173|  1.21k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.21k|	do {                              \
  |  |   51|  1.21k|		isc_region_t *_r = (r);   \
  |  |   52|  1.21k|		unsigned int  _l = (l);   \
  |  |   53|  1.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.21k|		_r->base += _l;           \
  |  |   55|  1.21k|		_r->length -= _l;         \
  |  |   56|  1.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.21k]
  |  |  ------------------
  ------------------
  174|  1.21k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.21k|	{                                  \
  |  |  277|  1.21k|		isc_result_t _r = (x);     \
  |  |  278|  1.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.21k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.21k|	}
  ------------------
  175|       |
  176|  1.21k|	return mem_tobuffer(target, sr.base, sr.length);
  177|  1.21k|}
rdata.c:totext_nxt:
   90|  2.37k|totext_nxt(ARGS_TOTEXT) {
   91|  2.37k|	isc_region_t sr;
   92|  2.37k|	unsigned int i, j, opts;
   93|  2.37k|	dns_name_t name;
   94|  2.37k|	dns_name_t prefix;
   95|       |
   96|  2.37k|	REQUIRE(rdata->type == dns_rdatatype_nxt);
  ------------------
  |  |  198|  2.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   97|  2.37k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   98|       |
   99|  2.37k|	dns_name_init(&name);
  100|  2.37k|	dns_name_init(&prefix);
  101|  2.37k|	dns_rdata_toregion(rdata, &sr);
  102|  2.37k|	dns_name_fromregion(&name, &sr);
  103|  2.37k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  2.37k|	do {                              \
  |  |   51|  2.37k|		isc_region_t *_r = (r);   \
  |  |   52|  2.37k|		unsigned int  _l = (l);   \
  |  |   53|  2.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.37k|		_r->base += _l;           \
  |  |   55|  2.37k|		_r->length -= _l;         \
  |  |   56|  2.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.37k]
  |  |  ------------------
  ------------------
  104|  2.37k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (104:9): [True: 0, False: 2.37k]
  ------------------
  105|  2.37k|							 : 0;
  106|  2.37k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  2.37k|	{                                  \
  |  |  277|  2.37k|		isc_result_t _r = (x);     \
  |  |  278|  2.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.37k|	}
  ------------------
  107|       |
  108|  11.0k|	for (i = 0; i < sr.length; i++) {
  ------------------
  |  Branch (108:14): [True: 8.66k, False: 2.37k]
  ------------------
  109|  8.66k|		if (sr.base[i] != 0) {
  ------------------
  |  Branch (109:7): [True: 6.78k, False: 1.87k]
  ------------------
  110|  61.0k|			for (j = 0; j < 8; j++) {
  ------------------
  |  Branch (110:16): [True: 54.2k, False: 6.78k]
  ------------------
  111|  54.2k|				if ((sr.base[i] & (0x80 >> j)) != 0) {
  ------------------
  |  Branch (111:9): [True: 21.0k, False: 33.2k]
  ------------------
  112|  21.0k|					{
  113|  21.0k|						dns_rdatatype_t t = i * 8 + j;
  114|  21.0k|						RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  21.0k|	{                                  \
  |  |  277|  21.0k|		isc_result_t _r = (x);     \
  |  |  278|  21.0k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 21.0k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  21.0k|	}
  ------------------
  115|  21.0k|						if (dns_rdatatype_isknown(t)) {
  ------------------
  |  Branch (115:11): [True: 16.9k, False: 4.13k]
  ------------------
  116|  16.9k|							RETERR(dns_rdatatype_totext(
  ------------------
  |  |  276|  16.9k|	{                                  \
  |  |  277|  16.9k|		isc_result_t _r = (x);     \
  |  |  278|  16.9k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 16.9k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  16.9k|	}
  ------------------
  117|  16.9k|								t, target));
  118|  16.9k|						} else {
  119|  4.13k|							char buf[sizeof("6553"
  120|  4.13k|									"5")];
  121|  4.13k|							snprintf(buf,
  122|  4.13k|								 sizeof(buf),
  123|  4.13k|								 "%u", t);
  124|  4.13k|							RETERR(str_totext(
  ------------------
  |  |  276|  4.13k|	{                                  \
  |  |  277|  4.13k|		isc_result_t _r = (x);     \
  |  |  278|  4.13k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.13k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.13k|	}
  ------------------
  125|  4.13k|								buf, target));
  126|  4.13k|						}
  127|  21.0k|					}
  128|  21.0k|				}
  129|  54.2k|			}
  130|  6.78k|		}
  131|  8.66k|	}
  132|  2.37k|	return ISC_R_SUCCESS;
  133|  2.37k|}

rdata.c:fromwire_openpgpkey:
   70|  1.49k|fromwire_openpgpkey(ARGS_FROMWIRE) {
   71|  1.49k|	isc_region_t sr;
   72|       |
   73|  1.49k|	REQUIRE(type == dns_rdatatype_openpgpkey);
  ------------------
  |  |  198|  1.49k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.49k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.49k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.49k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|       |
   75|  1.49k|	UNUSED(type);
  ------------------
  |  |   69|  1.49k|#define UNUSED(x) (void)(x)
  ------------------
   76|  1.49k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.49k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.49k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.49k|#define UNUSED(x) (void)(x)
  ------------------
   78|       |
   79|       |	/*
   80|       |	 * Keyring.
   81|       |	 */
   82|  1.49k|	isc_buffer_activeregion(source, &sr);
   83|  1.49k|	if (sr.length < 1) {
  ------------------
  |  Branch (83:6): [True: 3, False: 1.49k]
  ------------------
   84|      3|		return ISC_R_UNEXPECTEDEND;
   85|      3|	}
   86|  1.49k|	isc_buffer_forward(source, sr.length);
   87|  1.49k|	return mem_tobuffer(target, sr.base, sr.length);
   88|  1.49k|}
rdata.c:towire_openpgpkey:
   91|    544|towire_openpgpkey(ARGS_TOWIRE) {
   92|    544|	isc_region_t sr;
   93|       |
   94|    544|	REQUIRE(rdata->type == dns_rdatatype_openpgpkey);
  ------------------
  |  |  198|    544|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    544|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 544, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    544|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|    544|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    544|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    544|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 544, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    544|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|       |
   97|    544|	UNUSED(cctx);
  ------------------
  |  |   69|    544|#define UNUSED(x) (void)(x)
  ------------------
   98|       |
   99|    544|	dns_rdata_toregion(rdata, &sr);
  100|    544|	return mem_tobuffer(target, sr.base, sr.length);
  101|    544|}
rdata.c:totext_openpgpkey:
   36|  1.07k|totext_openpgpkey(ARGS_TOTEXT) {
   37|  1.07k|	isc_region_t sr;
   38|       |
   39|  1.07k|	REQUIRE(rdata->type == dns_rdatatype_openpgpkey);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|  1.07k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  1.07k|	dns_rdata_toregion(rdata, &sr);
   43|       |
   44|       |	/*
   45|       |	 * Keyring
   46|       |	 */
   47|  1.07k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (47:6): [True: 0, False: 1.07k]
  ------------------
   48|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   49|      0|	}
   50|       |
   51|  1.07k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  1.07k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (51:6): [True: 1.07k, False: 0]
  ------------------
   52|  1.07k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (52:7): [True: 0, False: 1.07k]
  ------------------
   53|      0|			RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   54|  1.07k|		} else {
   55|  1.07k|			RETERR(isc_base64_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  1.07k|	{                                  \
  |  |  277|  1.07k|		isc_result_t _r = (x);     \
  |  |  278|  1.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.07k|	}
  ------------------
   56|  1.07k|						 tctx->linebreak, target));
   57|  1.07k|		}
   58|  1.07k|	} else {
   59|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   60|      0|	}
   61|       |
   62|  1.07k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (62:6): [True: 0, False: 1.07k]
  ------------------
   63|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   64|      0|	}
   65|       |
   66|  1.07k|	return ISC_R_SUCCESS;
   67|  1.07k|}

rdata.c:compare_opt:
  314|  3.84k|compare_opt(ARGS_COMPARE) {
  315|  3.84k|	isc_region_t r1;
  316|  3.84k|	isc_region_t r2;
  317|       |
  318|  3.84k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  3.84k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.84k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.84k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.84k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  319|  3.84k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  3.84k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.84k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.84k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.84k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  320|  3.84k|	REQUIRE(rdata1->type == dns_rdatatype_opt);
  ------------------
  |  |  198|  3.84k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.84k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.84k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.84k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  321|       |
  322|  3.84k|	dns_rdata_toregion(rdata1, &r1);
  323|  3.84k|	dns_rdata_toregion(rdata2, &r2);
  324|  3.84k|	return isc_region_compare(&r1, &r2);
  325|  3.84k|}
rdata.c:fromwire_opt:
   95|  10.8k|fromwire_opt(ARGS_FROMWIRE) {
   96|  10.8k|	dns_fixedname_t fixed;
   97|  10.8k|	dns_name_t *name;
   98|  10.8k|	isc_buffer_t b;
   99|  10.8k|	isc_region_t sregion;
  100|  10.8k|	isc_region_t tregion;
  101|  10.8k|	isc_result_t result;
  102|  10.8k|	uint16_t length;
  103|  10.8k|	uint16_t opt;
  104|  10.8k|	unsigned int total;
  105|       |
  106|  10.8k|	REQUIRE(type == dns_rdatatype_opt);
  ------------------
  |  |  198|  10.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  10.8k|	UNUSED(type);
  ------------------
  |  |   69|  10.8k|#define UNUSED(x) (void)(x)
  ------------------
  109|  10.8k|	UNUSED(rdclass);
  ------------------
  |  |   69|  10.8k|#define UNUSED(x) (void)(x)
  ------------------
  110|       |
  111|  10.8k|	dctx = dns_decompress_setpermitted(dctx, false);
  112|       |
  113|  10.8k|	isc_buffer_activeregion(source, &sregion);
  114|  10.8k|	if (sregion.length == 0) {
  ------------------
  |  Branch (114:6): [True: 5.54k, False: 5.30k]
  ------------------
  115|  5.54k|		return ISC_R_SUCCESS;
  116|  5.54k|	}
  117|  5.30k|	total = 0;
  118|   773k|	while (sregion.length != 0) {
  ------------------
  |  Branch (118:9): [True: 768k, False: 5.09k]
  ------------------
  119|   768k|		if (sregion.length < 4) {
  ------------------
  |  Branch (119:7): [True: 7, False: 768k]
  ------------------
  120|      7|			return ISC_R_UNEXPECTEDEND;
  121|      7|		}
  122|   768k|		opt = uint16_fromregion(&sregion);
  123|   768k|		isc_region_consume(&sregion, 2);
  ------------------
  |  |   50|   768k|	do {                              \
  |  |   51|   768k|		isc_region_t *_r = (r);   \
  |  |   52|   768k|		unsigned int  _l = (l);   \
  |  |   53|   768k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   768k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   768k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 768k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   768k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   768k|		_r->base += _l;           \
  |  |   55|   768k|		_r->length -= _l;         \
  |  |   56|   768k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 768k]
  |  |  ------------------
  ------------------
  124|   768k|		length = uint16_fromregion(&sregion);
  125|   768k|		isc_region_consume(&sregion, 2);
  ------------------
  |  |   50|   768k|	do {                              \
  |  |   51|   768k|		isc_region_t *_r = (r);   \
  |  |   52|   768k|		unsigned int  _l = (l);   \
  |  |   53|   768k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   768k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   768k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 768k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   768k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   768k|		_r->base += _l;           \
  |  |   55|   768k|		_r->length -= _l;         \
  |  |   56|   768k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 768k]
  |  |  ------------------
  ------------------
  126|   768k|		total += 4;
  127|   768k|		if (sregion.length < length) {
  ------------------
  |  Branch (127:7): [True: 22, False: 768k]
  ------------------
  128|     22|			return ISC_R_UNEXPECTEDEND;
  129|     22|		}
  130|   768k|		switch (opt) {
  131|  6.39k|		case DNS_OPT_LLQ:
  ------------------
  |  Branch (131:3): [True: 6.39k, False: 762k]
  ------------------
  132|  6.39k|			if (length != 18U) {
  ------------------
  |  Branch (132:8): [True: 17, False: 6.37k]
  ------------------
  133|     17|				return DNS_R_OPTERR;
  134|     17|			}
  135|  6.37k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  6.37k|	do {                              \
  |  |   51|  6.37k|		isc_region_t *_r = (r);   \
  |  |   52|  6.37k|		unsigned int  _l = (l);   \
  |  |   53|  6.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.37k|		_r->base += _l;           \
  |  |   55|  6.37k|		_r->length -= _l;         \
  |  |   56|  6.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.37k]
  |  |  ------------------
  ------------------
  136|  6.37k|			break;
  137|  22.1k|		case DNS_OPT_UL:
  ------------------
  |  Branch (137:3): [True: 22.1k, False: 746k]
  ------------------
  138|  22.1k|			if (length != 4U && length != 8U) {
  ------------------
  |  Branch (138:8): [True: 9.28k, False: 12.8k]
  |  Branch (138:24): [True: 4, False: 9.27k]
  ------------------
  139|      4|				return DNS_R_OPTERR;
  140|      4|			}
  141|  22.0k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  22.0k|	do {                              \
  |  |   51|  22.0k|		isc_region_t *_r = (r);   \
  |  |   52|  22.0k|		unsigned int  _l = (l);   \
  |  |   53|  22.0k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  22.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  22.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 22.0k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  22.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  22.0k|		_r->base += _l;           \
  |  |   55|  22.0k|		_r->length -= _l;         \
  |  |   56|  22.0k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 22.0k]
  |  |  ------------------
  ------------------
  142|  22.0k|			break;
  143|  24.8k|		case DNS_OPT_CLIENT_SUBNET: {
  ------------------
  |  Branch (143:3): [True: 24.8k, False: 743k]
  ------------------
  144|  24.8k|			uint16_t family;
  145|  24.8k|			uint8_t addrlen;
  146|  24.8k|			uint8_t scope;
  147|  24.8k|			uint8_t addrbytes;
  148|       |
  149|  24.8k|			if (length < 4) {
  ------------------
  |  Branch (149:8): [True: 2, False: 24.8k]
  ------------------
  150|      2|				return DNS_R_OPTERR;
  151|      2|			}
  152|  24.8k|			family = uint16_fromregion(&sregion);
  153|  24.8k|			isc_region_consume(&sregion, 2);
  ------------------
  |  |   50|  24.8k|	do {                              \
  |  |   51|  24.8k|		isc_region_t *_r = (r);   \
  |  |   52|  24.8k|		unsigned int  _l = (l);   \
  |  |   53|  24.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.8k|		_r->base += _l;           \
  |  |   55|  24.8k|		_r->length -= _l;         \
  |  |   56|  24.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.8k]
  |  |  ------------------
  ------------------
  154|  24.8k|			addrlen = uint8_fromregion(&sregion);
  155|  24.8k|			isc_region_consume(&sregion, 1);
  ------------------
  |  |   50|  24.8k|	do {                              \
  |  |   51|  24.8k|		isc_region_t *_r = (r);   \
  |  |   52|  24.8k|		unsigned int  _l = (l);   \
  |  |   53|  24.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.8k|		_r->base += _l;           \
  |  |   55|  24.8k|		_r->length -= _l;         \
  |  |   56|  24.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.8k]
  |  |  ------------------
  ------------------
  156|  24.8k|			scope = uint8_fromregion(&sregion);
  157|  24.8k|			isc_region_consume(&sregion, 1);
  ------------------
  |  |   50|  24.8k|	do {                              \
  |  |   51|  24.8k|		isc_region_t *_r = (r);   \
  |  |   52|  24.8k|		unsigned int  _l = (l);   \
  |  |   53|  24.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.8k|		_r->base += _l;           \
  |  |   55|  24.8k|		_r->length -= _l;         \
  |  |   56|  24.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.8k]
  |  |  ------------------
  ------------------
  158|       |
  159|  24.8k|			switch (family) {
  160|  9.53k|			case 0:
  ------------------
  |  Branch (160:4): [True: 9.53k, False: 15.2k]
  ------------------
  161|       |				/*
  162|       |				 * XXXMUKS: In queries and replies, if
  163|       |				 * FAMILY is set to 0, SOURCE
  164|       |				 * PREFIX-LENGTH and SCOPE PREFIX-LENGTH
  165|       |				 * must be 0 and ADDRESS should not be
  166|       |				 * present as the address and prefix
  167|       |				 * lengths don't make sense because the
  168|       |				 * family is unknown.
  169|       |				 */
  170|  9.53k|				if (addrlen != 0U || scope != 0U) {
  ------------------
  |  Branch (170:9): [True: 7, False: 9.52k]
  |  Branch (170:26): [True: 9, False: 9.51k]
  ------------------
  171|     16|					return DNS_R_OPTERR;
  172|     16|				}
  173|  9.51k|				break;
  174|  9.51k|			case 1:
  ------------------
  |  Branch (174:4): [True: 3.84k, False: 20.9k]
  ------------------
  175|  3.84k|				if (addrlen > 32U || scope > 32U) {
  ------------------
  |  Branch (175:9): [True: 2, False: 3.84k]
  |  Branch (175:26): [True: 3, False: 3.84k]
  ------------------
  176|      5|					return DNS_R_OPTERR;
  177|      5|				}
  178|  3.84k|				break;
  179|  11.4k|			case 2:
  ------------------
  |  Branch (179:4): [True: 11.4k, False: 13.3k]
  ------------------
  180|  11.4k|				if (addrlen > 128U || scope > 128U) {
  ------------------
  |  Branch (180:9): [True: 1, False: 11.4k]
  |  Branch (180:27): [True: 2, False: 11.4k]
  ------------------
  181|      3|					return DNS_R_OPTERR;
  182|      3|				}
  183|  11.4k|				break;
  184|  11.4k|			default:
  ------------------
  |  Branch (184:4): [True: 3, False: 24.8k]
  ------------------
  185|      3|				return DNS_R_OPTERR;
  186|  24.8k|			}
  187|  24.7k|			addrbytes = (addrlen + 7) / 8;
  188|  24.7k|			if (addrbytes + 4 != length) {
  ------------------
  |  Branch (188:8): [True: 14, False: 24.7k]
  ------------------
  189|     14|				return DNS_R_OPTERR;
  190|     14|			}
  191|       |
  192|  24.7k|			if (addrbytes != 0U && (addrlen % 8) != 0) {
  ------------------
  |  Branch (192:8): [True: 3.35k, False: 21.4k]
  |  Branch (192:27): [True: 3.15k, False: 201]
  ------------------
  193|  3.15k|				uint8_t bits = ~0U << (8 - (addrlen % 8));
  194|  3.15k|				bits &= sregion.base[addrbytes - 1];
  195|  3.15k|				if (bits != sregion.base[addrbytes - 1]) {
  ------------------
  |  Branch (195:9): [True: 1, False: 3.15k]
  ------------------
  196|      1|					return DNS_R_OPTERR;
  197|      1|				}
  198|  3.15k|			}
  199|  24.7k|			isc_region_consume(&sregion, addrbytes);
  ------------------
  |  |   50|  24.7k|	do {                              \
  |  |   51|  24.7k|		isc_region_t *_r = (r);   \
  |  |   52|  24.7k|		unsigned int  _l = (l);   \
  |  |   53|  24.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.7k|		_r->base += _l;           \
  |  |   55|  24.7k|		_r->length -= _l;         \
  |  |   56|  24.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.7k]
  |  |  ------------------
  ------------------
  200|  24.7k|			break;
  201|  24.7k|		}
  202|  31.3k|		case DNS_OPT_EXPIRE:
  ------------------
  |  Branch (202:3): [True: 31.3k, False: 737k]
  ------------------
  203|       |			/*
  204|       |			 * Request has zero length.  Response is 32 bits.
  205|       |			 */
  206|  31.3k|			if (length != 0 && length != 4) {
  ------------------
  |  Branch (206:8): [True: 21.1k, False: 10.1k]
  |  Branch (206:23): [True: 1, False: 21.1k]
  ------------------
  207|      1|				return DNS_R_OPTERR;
  208|      1|			}
  209|  31.3k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  31.3k|	do {                              \
  |  |   51|  31.3k|		isc_region_t *_r = (r);   \
  |  |   52|  31.3k|		unsigned int  _l = (l);   \
  |  |   53|  31.3k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  31.3k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  31.3k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 31.3k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  31.3k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  31.3k|		_r->base += _l;           \
  |  |   55|  31.3k|		_r->length -= _l;         \
  |  |   56|  31.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 31.3k]
  |  |  ------------------
  ------------------
  210|  31.3k|			break;
  211|  2.23k|		case DNS_OPT_COOKIE:
  ------------------
  |  Branch (211:3): [True: 2.23k, False: 766k]
  ------------------
  212|       |			/*
  213|       |			 * Client cookie alone has length 8.
  214|       |			 * Client + server cookie is 8 + [8..32].
  215|       |			 */
  216|  2.23k|			if (length != 8 && (length < 16 || length > 40)) {
  ------------------
  |  Branch (216:8): [True: 488, False: 1.74k]
  |  Branch (216:24): [True: 6, False: 482]
  |  Branch (216:39): [True: 1, False: 481]
  ------------------
  217|      7|				return DNS_R_OPTERR;
  218|      7|			}
  219|  2.22k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  2.22k|	do {                              \
  |  |   51|  2.22k|		isc_region_t *_r = (r);   \
  |  |   52|  2.22k|		unsigned int  _l = (l);   \
  |  |   53|  2.22k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.22k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.22k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.22k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.22k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.22k|		_r->base += _l;           \
  |  |   55|  2.22k|		_r->length -= _l;         \
  |  |   56|  2.22k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.22k]
  |  |  ------------------
  ------------------
  220|  2.22k|			break;
  221|  3.39k|		case DNS_OPT_KEY_TAG:
  ------------------
  |  Branch (221:3): [True: 3.39k, False: 765k]
  ------------------
  222|  3.39k|			if (length == 0 || (length % 2) != 0) {
  ------------------
  |  Branch (222:8): [True: 1, False: 3.39k]
  |  Branch (222:23): [True: 1, False: 3.39k]
  ------------------
  223|      2|				return DNS_R_OPTERR;
  224|      2|			}
  225|  3.39k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  3.39k|	do {                              \
  |  |   51|  3.39k|		isc_region_t *_r = (r);   \
  |  |   52|  3.39k|		unsigned int  _l = (l);   \
  |  |   53|  3.39k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.39k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.39k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.39k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.39k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.39k|		_r->base += _l;           \
  |  |   55|  3.39k|		_r->length -= _l;         \
  |  |   56|  3.39k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.39k]
  |  |  ------------------
  ------------------
  226|  3.39k|			break;
  227|  15.7k|		case DNS_OPT_EDE:
  ------------------
  |  Branch (227:3): [True: 15.7k, False: 752k]
  ------------------
  228|  15.7k|			if (length < 2) {
  ------------------
  |  Branch (228:8): [True: 1, False: 15.7k]
  ------------------
  229|      1|				return DNS_R_OPTERR;
  230|      1|			}
  231|       |			/* UTF-8 Byte Order Mark is not permitted. RFC 5198 */
  232|  15.7k|			if (isc_utf8_bom(sregion.base + 2, length - 2)) {
  ------------------
  |  Branch (232:8): [True: 1, False: 15.7k]
  ------------------
  233|      1|				return DNS_R_OPTERR;
  234|      1|			}
  235|       |			/*
  236|       |			 * The EXTRA-TEXT field is specified as UTF-8, and
  237|       |			 * therefore must be validated for correctness
  238|       |			 * according to RFC 3269 security considerations.
  239|       |			 */
  240|  15.7k|			if (!isc_utf8_valid(sregion.base + 2, length - 2)) {
  ------------------
  |  Branch (240:8): [True: 85, False: 15.7k]
  ------------------
  241|     85|				return DNS_R_OPTERR;
  242|     85|			}
  243|  15.7k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  15.7k|	do {                              \
  |  |   51|  15.7k|		isc_region_t *_r = (r);   \
  |  |   52|  15.7k|		unsigned int  _l = (l);   \
  |  |   53|  15.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  15.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  15.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 15.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  15.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  15.7k|		_r->base += _l;           \
  |  |   55|  15.7k|		_r->length -= _l;         \
  |  |   56|  15.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 15.7k]
  |  |  ------------------
  ------------------
  244|  15.7k|			break;
  245|    743|		case DNS_OPT_CLIENT_TAG:
  ------------------
  |  Branch (245:3): [True: 743, False: 767k]
  ------------------
  246|    743|			FALLTHROUGH;
  ------------------
  |  |  101|    743|#define FALLTHROUGH [[fallthrough]]
  ------------------
  247|  1.57k|		case DNS_OPT_SERVER_TAG:
  ------------------
  |  Branch (247:3): [True: 830, False: 767k]
  ------------------
  248|  1.57k|			if (length != 2) {
  ------------------
  |  Branch (248:8): [True: 6, False: 1.56k]
  ------------------
  249|      6|				return DNS_R_OPTERR;
  250|      6|			}
  251|  1.56k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  1.56k|	do {                              \
  |  |   51|  1.56k|		isc_region_t *_r = (r);   \
  |  |   52|  1.56k|		unsigned int  _l = (l);   \
  |  |   53|  1.56k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.56k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.56k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.56k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.56k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.56k|		_r->base += _l;           \
  |  |   55|  1.56k|		_r->length -= _l;         \
  |  |   56|  1.56k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.56k]
  |  |  ------------------
  ------------------
  252|  1.56k|			break;
  253|  2.90k|		case DNS_OPT_REPORT_CHANNEL:
  ------------------
  |  Branch (253:3): [True: 2.90k, False: 765k]
  ------------------
  254|       |			/* A domain name in wire format. RFC 9567 */
  255|  2.90k|			if (length == 0 || length > DNS_NAME_MAXWIRE) {
  ------------------
  |  |  190|  2.90k|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (255:8): [True: 1, False: 2.90k]
  |  Branch (255:23): [True: 1, False: 2.90k]
  ------------------
  256|      2|				return DNS_R_OPTERR;
  257|      2|			}
  258|  2.90k|			isc_buffer_init(&b, sregion.base, length);
  259|  2.90k|			isc_buffer_add(&b, length);
  260|  2.90k|			isc_buffer_setactive(&b, length);
  261|  2.90k|			name = dns_fixedname_initname(&fixed);
  262|  2.90k|			result = dns_name_fromwire(name, &b, dctx, NULL);
  263|  2.90k|			if (result != ISC_R_SUCCESS || name->length != length ||
  ------------------
  |  Branch (263:8): [True: 1, False: 2.90k]
  |  Branch (263:35): [True: 1, False: 2.90k]
  ------------------
  264|  2.90k|			    !dns_name_isabsolute(name))
  ------------------
  |  Branch (264:8): [True: 0, False: 2.90k]
  ------------------
  265|      2|			{
  266|      2|				return DNS_R_OPTERR;
  267|      2|			}
  268|  2.90k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  2.90k|	do {                              \
  |  |   51|  2.90k|		isc_region_t *_r = (r);   \
  |  |   52|  2.90k|		unsigned int  _l = (l);   \
  |  |   53|  2.90k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.90k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.90k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.90k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.90k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.90k|		_r->base += _l;           \
  |  |   55|  2.90k|		_r->length -= _l;         \
  |  |   56|  2.90k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.90k]
  |  |  ------------------
  ------------------
  269|  2.90k|			break;
  270|  72.4k|		case DNS_OPT_ZONEVERSION:
  ------------------
  |  Branch (270:3): [True: 72.4k, False: 696k]
  ------------------
  271|  72.4k|			if (length == 0) {
  ------------------
  |  Branch (271:8): [True: 13.5k, False: 58.8k]
  ------------------
  272|       |				/* Request */
  273|  13.5k|				break;
  274|  13.5k|			}
  275|       |			/* Labels and Type */
  276|  58.8k|			if (length < 2) {
  ------------------
  |  Branch (276:8): [True: 1, False: 58.8k]
  ------------------
  277|      1|				return DNS_R_OPTERR;
  278|      1|			}
  279|       |			/* Type 0 (serial), length is 6. */
  280|  58.8k|			if (sregion.base[1] == 0 && length != 6) {
  ------------------
  |  Branch (280:8): [True: 1.04k, False: 57.8k]
  |  Branch (280:32): [True: 5, False: 1.03k]
  ------------------
  281|      5|				return DNS_R_OPTERR;
  282|      5|			}
  283|  58.8k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  58.8k|	do {                              \
  |  |   51|  58.8k|		isc_region_t *_r = (r);   \
  |  |   52|  58.8k|		unsigned int  _l = (l);   \
  |  |   53|  58.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  58.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  58.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 58.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  58.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  58.8k|		_r->base += _l;           \
  |  |   55|  58.8k|		_r->length -= _l;         \
  |  |   56|  58.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 58.8k]
  |  |  ------------------
  ------------------
  284|  58.8k|			break;
  285|   585k|		default:
  ------------------
  |  Branch (285:3): [True: 585k, False: 182k]
  ------------------
  286|   585k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|   585k|	do {                              \
  |  |   51|   585k|		isc_region_t *_r = (r);   \
  |  |   52|   585k|		unsigned int  _l = (l);   \
  |  |   53|   585k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   585k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   585k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 585k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   585k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   585k|		_r->base += _l;           \
  |  |   55|   585k|		_r->length -= _l;         \
  |  |   56|   585k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 585k]
  |  |  ------------------
  ------------------
  287|   585k|			break;
  288|   768k|		}
  289|   768k|		total += length;
  290|   768k|	}
  291|       |
  292|  5.09k|	isc_buffer_activeregion(source, &sregion);
  293|  5.09k|	isc_buffer_availableregion(target, &tregion);
  294|  5.09k|	if (tregion.length < total) {
  ------------------
  |  Branch (294:6): [True: 555, False: 4.54k]
  ------------------
  295|    555|		return ISC_R_NOSPACE;
  296|    555|	}
  297|  4.54k|	memmove(tregion.base, sregion.base, total);
  298|  4.54k|	isc_buffer_forward(source, total);
  299|  4.54k|	isc_buffer_add(target, total);
  300|       |
  301|  4.54k|	return ISC_R_SUCCESS;
  302|  5.09k|}
rdata.c:towire_opt:
  305|  4.79k|towire_opt(ARGS_TOWIRE) {
  306|  4.79k|	REQUIRE(rdata->type == dns_rdatatype_opt);
  ------------------
  |  |  198|  4.79k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.79k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.79k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.79k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  307|       |
  308|  4.79k|	UNUSED(cctx);
  ------------------
  |  |   69|  4.79k|#define UNUSED(x) (void)(x)
  ------------------
  309|       |
  310|  4.79k|	return mem_tobuffer(target, rdata->data, rdata->length);
  311|  4.79k|}
rdata.c:totext_opt:
   45|  5.03k|totext_opt(ARGS_TOTEXT) {
   46|  5.03k|	isc_region_t r;
   47|  5.03k|	isc_region_t or;
   48|  5.03k|	uint16_t option;
   49|  5.03k|	uint16_t length;
   50|  5.03k|	char buf[sizeof("64000 64000")];
   51|       |
   52|       |	/*
   53|       |	 * OPT records do not have a text format.
   54|       |	 */
   55|       |
   56|  5.03k|	REQUIRE(rdata->type == dns_rdatatype_opt);
  ------------------
  |  |  198|  5.03k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.03k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.03k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.03k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|  5.03k|	dns_rdata_toregion(rdata, &r);
   59|  15.7k|	while (r.length > 0) {
  ------------------
  |  Branch (59:9): [True: 10.7k, False: 5.03k]
  ------------------
   60|  10.7k|		option = uint16_fromregion(&r);
   61|  10.7k|		isc_region_consume(&r, 2);
  ------------------
  |  |   50|  10.7k|	do {                              \
  |  |   51|  10.7k|		isc_region_t *_r = (r);   \
  |  |   52|  10.7k|		unsigned int  _l = (l);   \
  |  |   53|  10.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  10.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  10.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 10.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  10.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  10.7k|		_r->base += _l;           \
  |  |   55|  10.7k|		_r->length -= _l;         \
  |  |   56|  10.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 10.7k]
  |  |  ------------------
  ------------------
   62|  10.7k|		length = uint16_fromregion(&r);
   63|  10.7k|		isc_region_consume(&r, 2);
  ------------------
  |  |   50|  10.7k|	do {                              \
  |  |   51|  10.7k|		isc_region_t *_r = (r);   \
  |  |   52|  10.7k|		unsigned int  _l = (l);   \
  |  |   53|  10.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  10.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  10.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 10.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  10.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  10.7k|		_r->base += _l;           \
  |  |   55|  10.7k|		_r->length -= _l;         \
  |  |   56|  10.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 10.7k]
  |  |  ------------------
  ------------------
   64|  10.7k|		snprintf(buf, sizeof(buf), "%u %u", option, length);
   65|  10.7k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  10.7k|	{                                  \
  |  |  277|  10.7k|		isc_result_t _r = (x);     \
  |  |  278|  10.7k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 10.7k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  10.7k|	}
  ------------------
   66|  10.7k|		INSIST(r.length >= length);
  ------------------
  |  |  202|  10.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  10.7k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 10.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  10.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  10.7k|		if (length > 0) {
  ------------------
  |  Branch (67:7): [True: 5.80k, False: 4.91k]
  ------------------
   68|  5.80k|			if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  5.80k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (68:8): [True: 0, False: 5.80k]
  ------------------
   69|      0|				RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   70|      0|			}
   71|  5.80k|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  5.80k|	{                                  \
  |  |  277|  5.80k|		isc_result_t _r = (x);     \
  |  |  278|  5.80k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.80k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.80k|	}
  ------------------
   72|  5.80k|			or = r;
   73|  5.80k|			or.length = length;
   74|  5.80k|			if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (74:8): [True: 0, False: 5.80k]
  ------------------
   75|      0|				RETERR(isc_base64_totext(&or, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   76|  5.80k|			} else {
   77|  5.80k|				RETERR(isc_base64_totext(&or, tctx->width - 2,
  ------------------
  |  |  276|  5.80k|	{                                  \
  |  |  277|  5.80k|		isc_result_t _r = (x);     \
  |  |  278|  5.80k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.80k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.80k|	}
  ------------------
   78|  5.80k|							 tctx->linebreak,
   79|  5.80k|							 target));
   80|  5.80k|			}
   81|  5.80k|			isc_region_consume(&r, length);
  ------------------
  |  |   50|  5.80k|	do {                              \
  |  |   51|  5.80k|		isc_region_t *_r = (r);   \
  |  |   52|  5.80k|		unsigned int  _l = (l);   \
  |  |   53|  5.80k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.80k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.80k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.80k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.80k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.80k|		_r->base += _l;           \
  |  |   55|  5.80k|		_r->length -= _l;         \
  |  |   56|  5.80k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.80k]
  |  |  ------------------
  ------------------
   82|  5.80k|			if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  5.80k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (82:8): [True: 0, False: 5.80k]
  ------------------
   83|      0|				RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   84|      0|			}
   85|  5.80k|		}
   86|  10.7k|		if (r.length > 0) {
  ------------------
  |  Branch (86:7): [True: 9.01k, False: 1.70k]
  ------------------
   87|  9.01k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  9.01k|	{                                  \
  |  |  277|  9.01k|		isc_result_t _r = (x);     \
  |  |  278|  9.01k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 9.01k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  9.01k|	}
  ------------------
   88|  9.01k|		}
   89|  10.7k|	}
   90|       |
   91|  5.03k|	return ISC_R_SUCCESS;
   92|  5.03k|}

rdata.c:fromwire_ptr:
   81|    817|fromwire_ptr(ARGS_FROMWIRE) {
   82|    817|	dns_name_t name;
   83|       |
   84|    817|	REQUIRE(type == dns_rdatatype_ptr);
  ------------------
  |  |  198|    817|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    817|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 817, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    817|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|       |
   86|    817|	UNUSED(type);
  ------------------
  |  |   69|    817|#define UNUSED(x) (void)(x)
  ------------------
   87|    817|	UNUSED(rdclass);
  ------------------
  |  |   69|    817|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    817|	dctx = dns_decompress_setpermitted(dctx, true);
   90|       |
   91|    817|	dns_name_init(&name);
   92|    817|	return dns_name_fromwire(&name, source, dctx, target);
   93|    817|}
rdata.c:towire_ptr:
   96|    406|towire_ptr(ARGS_TOWIRE) {
   97|    406|	dns_name_t name;
   98|    406|	isc_region_t region;
   99|       |
  100|    406|	REQUIRE(rdata->type == dns_rdatatype_ptr);
  ------------------
  |  |  198|    406|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    406|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 406, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    406|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|    406|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    406|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    406|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 406, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    406|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|       |
  103|    406|	dns_compress_setpermitted(cctx, true);
  104|       |
  105|    406|	dns_name_init(&name);
  106|    406|	dns_rdata_toregion(rdata, &region);
  107|    406|	dns_name_fromregion(&name, &region);
  108|       |
  109|    406|	return dns_name_towire(&name, cctx, target);
  110|    406|}
rdata.c:totext_ptr:
   60|    808|totext_ptr(ARGS_TOTEXT) {
   61|    808|	isc_region_t region;
   62|    808|	dns_name_t name;
   63|    808|	dns_name_t prefix;
   64|    808|	unsigned int opts;
   65|       |
   66|    808|	REQUIRE(rdata->type == dns_rdatatype_ptr);
  ------------------
  |  |  198|    808|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    808|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 808, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    808|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|    808|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    808|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    808|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 808, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    808|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|    808|	dns_name_init(&name);
   70|    808|	dns_name_init(&prefix);
   71|       |
   72|    808|	dns_rdata_toregion(rdata, &region);
   73|    808|	dns_name_fromregion(&name, &region);
   74|       |
   75|    808|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 808]
  ------------------
   76|    808|							 : 0;
   77|    808|	return dns_name_totext(&prefix, opts, target);
   78|    808|}

rdata.c:compare_resinfo:
   51|    809|compare_resinfo(ARGS_COMPARE) {
   52|    809|	isc_region_t r1;
   53|    809|	isc_region_t r2;
   54|       |
   55|    809|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|    809|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    809|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 809, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    809|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    809|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|    809|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    809|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 809, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    809|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|    809|	REQUIRE(rdata1->type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|    809|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    809|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 809, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    809|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|       |
   59|    809|	dns_rdata_toregion(rdata1, &r1);
   60|    809|	dns_rdata_toregion(rdata2, &r2);
   61|    809|	return isc_region_compare(&r1, &r2);
   62|    809|}
rdata.c:fromwire_resinfo:
   35|  1.60k|fromwire_resinfo(ARGS_FROMWIRE) {
   36|  1.60k|	REQUIRE(type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|  1.60k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.60k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.60k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.60k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.60k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.60k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.60k|}
rdata.c:towire_resinfo:
   42|    455|towire_resinfo(ARGS_TOWIRE) {
   43|    455|	REQUIRE(rdata->type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|    455|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    455|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 455, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    455|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    455|	UNUSED(cctx);
  ------------------
  |  |   69|    455|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    455|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    455|}
rdata.c:totext_resinfo:
   27|    911|totext_resinfo(ARGS_TOTEXT) {
   28|    911|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    911|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    911|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 911, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    911|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    911|	REQUIRE(rdata->type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|    911|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    911|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 911, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    911|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    911|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    911|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    911|}

rdata.c:fromwire_rkey:
   35|  1.36k|fromwire_rkey(ARGS_FROMWIRE) {
   36|  1.36k|	REQUIRE(type == dns_rdatatype_rkey);
  ------------------
  |  |  198|  1.36k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.36k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.36k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.36k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.36k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.36k|}
rdata.c:towire_rkey:
   42|    655|towire_rkey(ARGS_TOWIRE) {
   43|    655|	isc_region_t sr;
   44|       |
   45|    655|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    655|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    655|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 655, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    655|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|    655|	REQUIRE(rdata->type == dns_rdatatype_rkey);
  ------------------
  |  |  198|    655|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    655|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 655, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    655|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|    655|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    655|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    655|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 655, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    655|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   48|       |
   49|    655|	UNUSED(cctx);
  ------------------
  |  |   69|    655|#define UNUSED(x) (void)(x)
  ------------------
   50|       |
   51|    655|	dns_rdata_toregion(rdata, &sr);
   52|    655|	return mem_tobuffer(target, sr.base, sr.length);
   53|    655|}
rdata.c:totext_rkey:
   27|  1.29k|totext_rkey(ARGS_TOTEXT) {
   28|  1.29k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  1.29k|	REQUIRE(rdata->type == dns_rdatatype_rkey);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|  1.29k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  1.29k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|  1.29k|}

rdata.c:fromwire_rp:
  100|  1.25k|fromwire_rp(ARGS_FROMWIRE) {
  101|  1.25k|	dns_name_t rmail;
  102|  1.25k|	dns_name_t email;
  103|       |
  104|  1.25k|	REQUIRE(type == dns_rdatatype_rp);
  ------------------
  |  |  198|  1.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|       |
  106|  1.25k|	UNUSED(type);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
  107|  1.25k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
  108|       |
  109|  1.25k|	dctx = dns_decompress_setpermitted(dctx, false);
  110|       |
  111|  1.25k|	dns_name_init(&rmail);
  112|  1.25k|	dns_name_init(&email);
  113|       |
  114|  1.25k|	RETERR(dns_name_fromwire(&rmail, source, dctx, target));
  ------------------
  |  |  276|  1.25k|	{                                  \
  |  |  277|  1.25k|		isc_result_t _r = (x);     \
  |  |  278|  1.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 90, False: 1.16k]
  |  |  ------------------
  |  |  279|     90|			return ((_r));     \
  |  |  280|     90|		}                          \
  |  |  281|  1.25k|	}
  ------------------
  115|  1.16k|	return dns_name_fromwire(&email, source, dctx, target);
  116|  1.25k|}
rdata.c:towire_rp:
  119|    543|towire_rp(ARGS_TOWIRE) {
  120|    543|	isc_region_t region;
  121|    543|	dns_name_t rmail;
  122|    543|	dns_name_t email;
  123|       |
  124|    543|	REQUIRE(rdata->type == dns_rdatatype_rp);
  ------------------
  |  |  198|    543|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    543|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 543, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    543|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  125|    543|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    543|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    543|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 543, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    543|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  126|       |
  127|    543|	dns_compress_setpermitted(cctx, false);
  128|    543|	dns_name_init(&rmail);
  129|    543|	dns_name_init(&email);
  130|       |
  131|    543|	dns_rdata_toregion(rdata, &region);
  132|       |
  133|    543|	dns_name_fromregion(&rmail, &region);
  134|    543|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|    543|	do {                              \
  |  |   51|    543|		isc_region_t *_r = (r);   \
  |  |   52|    543|		unsigned int  _l = (l);   \
  |  |   53|    543|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    543|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    543|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 543, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    543|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    543|		_r->base += _l;           \
  |  |   55|    543|		_r->length -= _l;         \
  |  |   56|    543|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 543]
  |  |  ------------------
  ------------------
  135|       |
  136|    543|	RETERR(dns_name_towire(&rmail, cctx, target));
  ------------------
  |  |  276|    543|	{                                  \
  |  |  277|    543|		isc_result_t _r = (x);     \
  |  |  278|    543|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 542]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    543|	}
  ------------------
  137|       |
  138|    542|	dns_name_fromregion(&rmail, &region);
  139|    542|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|    542|	do {                              \
  |  |   51|    542|		isc_region_t *_r = (r);   \
  |  |   52|    542|		unsigned int  _l = (l);   \
  |  |   53|    542|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    542|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    542|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 542, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    542|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    542|		_r->base += _l;           \
  |  |   55|    542|		_r->length -= _l;         \
  |  |   56|    542|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 542]
  |  |  ------------------
  ------------------
  140|       |
  141|    542|	return dns_name_towire(&rmail, cctx, target);
  142|    543|}
rdata.c:totext_rp:
   64|  1.08k|totext_rp(ARGS_TOTEXT) {
   65|  1.08k|	isc_region_t region;
   66|  1.08k|	dns_name_t rmail;
   67|  1.08k|	dns_name_t email;
   68|  1.08k|	dns_name_t prefix;
   69|  1.08k|	unsigned int opts;
   70|       |
   71|  1.08k|	REQUIRE(rdata->type == dns_rdatatype_rp);
  ------------------
  |  |  198|  1.08k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.08k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.08k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|  1.08k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.08k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.08k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.08k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|       |
   74|  1.08k|	dns_name_init(&rmail);
   75|  1.08k|	dns_name_init(&email);
   76|  1.08k|	dns_name_init(&prefix);
   77|       |
   78|  1.08k|	dns_rdata_toregion(rdata, &region);
   79|       |
   80|  1.08k|	dns_name_fromregion(&rmail, &region);
   81|  1.08k|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|  1.08k|	do {                              \
  |  |   51|  1.08k|		isc_region_t *_r = (r);   \
  |  |   52|  1.08k|		unsigned int  _l = (l);   \
  |  |   53|  1.08k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.08k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.08k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.08k|		_r->base += _l;           \
  |  |   55|  1.08k|		_r->length -= _l;         \
  |  |   56|  1.08k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.08k]
  |  |  ------------------
  ------------------
   82|       |
   83|  1.08k|	dns_name_fromregion(&email, &region);
   84|  1.08k|	isc_region_consume(&region, email.length);
  ------------------
  |  |   50|  1.08k|	do {                              \
  |  |   51|  1.08k|		isc_region_t *_r = (r);   \
  |  |   52|  1.08k|		unsigned int  _l = (l);   \
  |  |   53|  1.08k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.08k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.08k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.08k|		_r->base += _l;           \
  |  |   55|  1.08k|		_r->length -= _l;         \
  |  |   56|  1.08k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.08k]
  |  |  ------------------
  ------------------
   85|       |
   86|  1.08k|	opts = name_prefix(&rmail, tctx->origin, &prefix)
  ------------------
  |  Branch (86:9): [True: 0, False: 1.08k]
  ------------------
   87|  1.08k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   88|  1.08k|		       : 0;
   89|  1.08k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.08k|	{                                  \
  |  |  277|  1.08k|		isc_result_t _r = (x);     \
  |  |  278|  1.08k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.08k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.08k|	}
  ------------------
   90|       |
   91|  1.08k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.08k|	{                                  \
  |  |  277|  1.08k|		isc_result_t _r = (x);     \
  |  |  278|  1.08k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.08k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.08k|	}
  ------------------
   92|       |
   93|  1.08k|	opts = name_prefix(&email, tctx->origin, &prefix)
  ------------------
  |  Branch (93:9): [True: 0, False: 1.08k]
  ------------------
   94|  1.08k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   95|  1.08k|		       : 0;
   96|  1.08k|	return dns_name_totext(&prefix, opts, target);
   97|  1.08k|}

rdata.c:fromwire_rrsig:
  305|  4.27k|fromwire_rrsig(ARGS_FROMWIRE) {
  306|  4.27k|	isc_region_t sr;
  307|  4.27k|	dns_name_t name;
  308|  4.27k|	unsigned char algorithm;
  309|  4.27k|	unsigned char labels;
  310|       |
  311|  4.27k|	REQUIRE(type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  4.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  312|       |
  313|  4.27k|	UNUSED(type);
  ------------------
  |  |   69|  4.27k|#define UNUSED(x) (void)(x)
  ------------------
  314|  4.27k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.27k|#define UNUSED(x) (void)(x)
  ------------------
  315|       |
  316|  4.27k|	dctx = dns_decompress_setpermitted(dctx, false);
  317|       |
  318|  4.27k|	isc_buffer_activeregion(source, &sr);
  319|       |	/*
  320|       |	 * type covered: 2
  321|       |	 * algorithm: 1
  322|       |	 * labels: 1
  323|       |	 * original ttl: 4
  324|       |	 * signature expiration: 4
  325|       |	 * time signed: 4
  326|       |	 * key footprint: 2
  327|       |	 */
  328|  4.27k|	if (sr.length < 18) {
  ------------------
  |  Branch (328:6): [True: 3, False: 4.27k]
  ------------------
  329|      3|		return ISC_R_UNEXPECTEDEND;
  330|      3|	}
  331|       |
  332|  4.27k|	algorithm = sr.base[2];
  333|  4.27k|	labels = sr.base[3];
  334|       |
  335|  4.27k|	isc_buffer_forward(source, 18);
  336|  4.27k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  4.27k|	{                                  \
  |  |  277|  4.27k|		isc_result_t _r = (x);     \
  |  |  278|  4.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 223, False: 4.05k]
  |  |  ------------------
  |  |  279|    223|			return ((_r));     \
  |  |  280|    223|		}                          \
  |  |  281|  4.27k|	}
  ------------------
  337|       |
  338|       |	/*
  339|       |	 * Signer.
  340|       |	 */
  341|  4.05k|	dns_name_init(&name);
  342|  4.05k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  4.05k|	{                                  \
  |  |  277|  4.05k|		isc_result_t _r = (x);     \
  |  |  278|  4.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 83, False: 3.97k]
  |  |  ------------------
  |  |  279|     83|			return ((_r));     \
  |  |  280|     83|		}                          \
  |  |  281|  4.05k|	}
  ------------------
  343|       |
  344|       |	/*
  345|       |	 * (RRSIG labels doesn't include the root label, so add one
  346|       |	 * to normalize it before checking against the signer.)
  347|       |	 */
  348|  3.97k|	if ((labels + 1) < dns_name_countlabels(&name)) {
  ------------------
  |  Branch (348:6): [True: 2, False: 3.96k]
  ------------------
  349|      2|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      2|	{                                  \
  |  |  277|      2|		isc_result_t _r = (x);     \
  |  |  278|      2|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 0]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|      2|	}
  ------------------
  350|      0|	}
  351|       |
  352|       |	/*
  353|       |	 * Sig.
  354|       |	 */
  355|  3.96k|	isc_buffer_activeregion(source, &sr);
  356|  3.96k|	if (sr.length < 1) {
  ------------------
  |  Branch (356:6): [True: 4, False: 3.96k]
  ------------------
  357|      4|		return DNS_R_FORMERR;
  358|      4|	}
  359|       |
  360|  3.96k|	if (algorithm == DNS_KEYALG_PRIVATEDNS ||
  ------------------
  |  Branch (360:6): [True: 131, False: 3.83k]
  ------------------
  361|  3.83k|	    algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (361:6): [True: 251, False: 3.58k]
  ------------------
  362|    382|	{
  363|    382|		isc_buffer_t b = *source;
  364|    382|		RETERR(check_private(&b, algorithm));
  ------------------
  |  |  276|    382|	{                                  \
  |  |  277|    382|		isc_result_t _r = (x);     \
  |  |  278|    382|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 376]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|    382|	}
  ------------------
  365|    376|	}
  366|       |
  367|  3.95k|	isc_buffer_forward(source, sr.length);
  368|  3.95k|	return mem_tobuffer(target, sr.base, sr.length);
  369|  3.96k|}
rdata.c:towire_rrsig:
  372|  1.68k|towire_rrsig(ARGS_TOWIRE) {
  373|  1.68k|	isc_region_t sr;
  374|  1.68k|	dns_name_t name;
  375|       |
  376|  1.68k|	REQUIRE(rdata->type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  1.68k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.68k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.68k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.68k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  377|  1.68k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.68k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.68k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.68k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.68k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  378|       |
  379|  1.68k|	dns_compress_setpermitted(cctx, false);
  380|  1.68k|	dns_rdata_toregion(rdata, &sr);
  381|       |	/*
  382|       |	 * type covered: 2
  383|       |	 * algorithm: 1
  384|       |	 * labels: 1
  385|       |	 * original ttl: 4
  386|       |	 * signature expiration: 4
  387|       |	 * time signed: 4
  388|       |	 * key footprint: 2
  389|       |	 */
  390|  1.68k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  1.68k|	{                                  \
  |  |  277|  1.68k|		isc_result_t _r = (x);     \
  |  |  278|  1.68k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 1.68k]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|  1.68k|	}
  ------------------
  391|  1.68k|	isc_region_consume(&sr, 18);
  ------------------
  |  |   50|  1.68k|	do {                              \
  |  |   51|  1.68k|		isc_region_t *_r = (r);   \
  |  |   52|  1.68k|		unsigned int  _l = (l);   \
  |  |   53|  1.68k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.68k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.68k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.68k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.68k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.68k|		_r->base += _l;           \
  |  |   55|  1.68k|		_r->length -= _l;         \
  |  |   56|  1.68k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.68k]
  |  |  ------------------
  ------------------
  392|       |
  393|       |	/*
  394|       |	 * Signer.
  395|       |	 */
  396|  1.68k|	dns_name_init(&name);
  397|  1.68k|	dns_name_fromregion(&name, &sr);
  398|  1.68k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.68k|	do {                              \
  |  |   51|  1.68k|		isc_region_t *_r = (r);   \
  |  |   52|  1.68k|		unsigned int  _l = (l);   \
  |  |   53|  1.68k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.68k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.68k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.68k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.68k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.68k|		_r->base += _l;           \
  |  |   55|  1.68k|		_r->length -= _l;         \
  |  |   56|  1.68k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.68k]
  |  |  ------------------
  ------------------
  399|  1.68k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.68k|	{                                  \
  |  |  277|  1.68k|		isc_result_t _r = (x);     \
  |  |  278|  1.68k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.68k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.68k|	}
  ------------------
  400|       |
  401|       |	/*
  402|       |	 * Signature.
  403|       |	 */
  404|  1.68k|	return mem_tobuffer(target, sr.base, sr.length);
  405|  1.68k|}
rdata.c:totext_rrsig:
  188|  3.37k|totext_rrsig(ARGS_TOTEXT) {
  189|  3.37k|	isc_region_t sr;
  190|  3.37k|	char buf[sizeof("4294967295")]; /* Also TYPE65000. */
  191|  3.37k|	dns_rdatatype_t covered;
  192|  3.37k|	unsigned long ttl;
  193|  3.37k|	unsigned long when;
  194|  3.37k|	unsigned long exp;
  195|  3.37k|	unsigned long foot;
  196|  3.37k|	dns_name_t name;
  197|       |
  198|  3.37k|	REQUIRE(rdata->type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  3.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  199|  3.37k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  200|       |
  201|  3.37k|	dns_rdata_toregion(rdata, &sr);
  202|       |
  203|       |	/*
  204|       |	 * Type covered.
  205|       |	 */
  206|  3.37k|	covered = uint16_fromregion(&sr);
  207|  3.37k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  208|       |	/*
  209|       |	 * XXXAG We should have something like dns_rdatatype_isknown()
  210|       |	 * that does the right thing with type 0.
  211|       |	 */
  212|  3.37k|	if (dns_rdatatype_isknown(covered) && covered != 0) {
  ------------------
  |  Branch (212:6): [True: 1.96k, False: 1.40k]
  |  Branch (212:40): [True: 1.96k, False: 0]
  ------------------
  213|  1.96k|		RETERR(dns_rdatatype_totext(covered, target));
  ------------------
  |  |  276|  1.96k|	{                                  \
  |  |  277|  1.96k|		isc_result_t _r = (x);     \
  |  |  278|  1.96k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.96k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.96k|	}
  ------------------
  214|  1.96k|	} else {
  215|  1.40k|		snprintf(buf, sizeof(buf), "TYPE%u", covered);
  216|  1.40k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.40k|	{                                  \
  |  |  277|  1.40k|		isc_result_t _r = (x);     \
  |  |  278|  1.40k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.40k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.40k|	}
  ------------------
  217|  1.40k|	}
  218|  3.37k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  219|       |
  220|       |	/*
  221|       |	 * Algorithm.
  222|       |	 */
  223|  3.37k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  224|  3.37k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  225|  3.37k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  226|  3.37k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  227|       |
  228|       |	/*
  229|       |	 * Labels.
  230|       |	 */
  231|  3.37k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  232|  3.37k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  233|  3.37k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  234|  3.37k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  235|       |
  236|       |	/*
  237|       |	 * Ttl.
  238|       |	 */
  239|  3.37k|	ttl = uint32_fromregion(&sr);
  240|  3.37k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  241|  3.37k|	snprintf(buf, sizeof(buf), "%lu", ttl);
  242|  3.37k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  243|       |
  244|  3.37k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.37k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (244:6): [True: 0, False: 3.37k]
  ------------------
  245|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  246|      0|	}
  247|  3.37k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  248|       |
  249|       |	/*
  250|       |	 * Sig exp.
  251|       |	 */
  252|  3.37k|	exp = uint32_fromregion(&sr);
  253|  3.37k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  254|  3.37k|	RETERR(dns_time32_totext(exp, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  255|  3.37k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  256|       |
  257|       |	/*
  258|       |	 * Time signed.
  259|       |	 */
  260|  3.37k|	when = uint32_fromregion(&sr);
  261|  3.37k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  262|  3.37k|	RETERR(dns_time32_totext(when, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  263|  3.37k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  264|       |
  265|       |	/*
  266|       |	 * Footprint.
  267|       |	 */
  268|  3.37k|	foot = uint16_fromregion(&sr);
  269|  3.37k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  270|  3.37k|	snprintf(buf, sizeof(buf), "%lu", foot);
  271|  3.37k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  272|  3.37k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  273|       |
  274|       |	/*
  275|       |	 * Signer.
  276|       |	 */
  277|  3.37k|	dns_name_init(&name);
  278|  3.37k|	dns_name_fromregion(&name, &sr);
  279|  3.37k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  3.37k|	do {                              \
  |  |   51|  3.37k|		isc_region_t *_r = (r);   \
  |  |   52|  3.37k|		unsigned int  _l = (l);   \
  |  |   53|  3.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.37k|		_r->base += _l;           \
  |  |   55|  3.37k|		_r->length -= _l;         \
  |  |   56|  3.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.37k]
  |  |  ------------------
  ------------------
  280|  3.37k|	RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  281|       |
  282|       |	/*
  283|       |	 * Sig.
  284|       |	 */
  285|  3.37k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  286|  3.37k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  3.37k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (286:6): [True: 3.37k, False: 0]
  ------------------
  287|  3.37k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (287:7): [True: 0, False: 3.37k]
  ------------------
  288|      0|			RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  289|  3.37k|		} else {
  290|  3.37k|			RETERR(isc_base64_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  3.37k|	{                                  \
  |  |  277|  3.37k|		isc_result_t _r = (x);     \
  |  |  278|  3.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.37k|	}
  ------------------
  291|  3.37k|						 tctx->linebreak, target));
  292|  3.37k|		}
  293|  3.37k|	} else {
  294|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  295|      0|	}
  296|       |
  297|  3.37k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.37k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (297:6): [True: 0, False: 3.37k]
  ------------------
  298|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  299|      0|	}
  300|       |
  301|  3.37k|	return ISC_R_SUCCESS;
  302|  3.37k|}
rdata.c:covers_rrsig:
  643|  3.80k|covers_rrsig(dns_rdata_t *rdata) {
  644|  3.80k|	dns_rdatatype_t type;
  645|  3.80k|	isc_region_t r;
  646|       |
  647|  3.80k|	REQUIRE(rdata->type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  3.80k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.80k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.80k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.80k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  648|       |
  649|  3.80k|	dns_rdata_toregion(rdata, &r);
  650|  3.80k|	type = uint16_fromregion(&r);
  651|       |
  652|  3.80k|	return type;
  653|  3.80k|}

rdata.c:fromwire_rt:
   94|  1.24k|fromwire_rt(ARGS_FROMWIRE) {
   95|  1.24k|	dns_name_t name;
   96|  1.24k|	isc_region_t sregion;
   97|  1.24k|	isc_region_t tregion;
   98|       |
   99|  1.24k|	REQUIRE(type == dns_rdatatype_rt);
  ------------------
  |  |  198|  1.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|       |
  101|  1.24k|	UNUSED(type);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
  102|  1.24k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|  1.24k|	dctx = dns_decompress_setpermitted(dctx, false);
  105|       |
  106|  1.24k|	dns_name_init(&name);
  107|       |
  108|  1.24k|	isc_buffer_activeregion(source, &sregion);
  109|  1.24k|	isc_buffer_availableregion(target, &tregion);
  110|  1.24k|	if (tregion.length < 2) {
  ------------------
  |  Branch (110:6): [True: 210, False: 1.03k]
  ------------------
  111|    210|		return ISC_R_NOSPACE;
  112|    210|	}
  113|  1.03k|	if (sregion.length < 2) {
  ------------------
  |  Branch (113:6): [True: 9, False: 1.02k]
  ------------------
  114|      9|		return ISC_R_UNEXPECTEDEND;
  115|      9|	}
  116|  1.02k|	memmove(tregion.base, sregion.base, 2);
  117|  1.02k|	isc_buffer_forward(source, 2);
  118|  1.02k|	isc_buffer_add(target, 2);
  119|  1.02k|	return dns_name_fromwire(&name, source, dctx, target);
  120|  1.03k|}
rdata.c:towire_rt:
  123|    402|towire_rt(ARGS_TOWIRE) {
  124|    402|	dns_name_t name;
  125|    402|	isc_region_t region;
  126|    402|	isc_region_t tr;
  127|       |
  128|    402|	REQUIRE(rdata->type == dns_rdatatype_rt);
  ------------------
  |  |  198|    402|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    402|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 402, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    402|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|    402|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    402|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    402|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 402, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    402|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|    402|	dns_compress_setpermitted(cctx, false);
  132|    402|	isc_buffer_availableregion(target, &tr);
  133|    402|	dns_rdata_toregion(rdata, &region);
  134|    402|	if (tr.length < 2) {
  ------------------
  |  Branch (134:6): [True: 1, False: 401]
  ------------------
  135|      1|		return ISC_R_NOSPACE;
  136|      1|	}
  137|    401|	memmove(tr.base, region.base, 2);
  138|    401|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    401|	do {                              \
  |  |   51|    401|		isc_region_t *_r = (r);   \
  |  |   52|    401|		unsigned int  _l = (l);   \
  |  |   53|    401|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    401|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    401|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 401, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    401|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    401|		_r->base += _l;           \
  |  |   55|    401|		_r->length -= _l;         \
  |  |   56|    401|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 401]
  |  |  ------------------
  ------------------
  139|    401|	isc_buffer_add(target, 2);
  140|       |
  141|    401|	dns_name_init(&name);
  142|    401|	dns_name_fromregion(&name, &region);
  143|       |
  144|    401|	return dns_name_towire(&name, cctx, target);
  145|    402|}
rdata.c:totext_rt:
   67|    803|totext_rt(ARGS_TOTEXT) {
   68|    803|	isc_region_t region;
   69|    803|	dns_name_t name;
   70|    803|	dns_name_t prefix;
   71|    803|	unsigned int opts;
   72|    803|	char buf[sizeof("64000")];
   73|    803|	unsigned short num;
   74|       |
   75|    803|	REQUIRE(rdata->type == dns_rdatatype_rt);
  ------------------
  |  |  198|    803|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    803|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 803, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    803|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   76|    803|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    803|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    803|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 803, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    803|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   77|       |
   78|    803|	dns_name_init(&name);
   79|    803|	dns_name_init(&prefix);
   80|       |
   81|    803|	dns_rdata_toregion(rdata, &region);
   82|    803|	num = uint16_fromregion(&region);
   83|    803|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    803|	do {                              \
  |  |   51|    803|		isc_region_t *_r = (r);   \
  |  |   52|    803|		unsigned int  _l = (l);   \
  |  |   53|    803|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    803|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    803|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 803, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    803|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    803|		_r->base += _l;           \
  |  |   55|    803|		_r->length -= _l;         \
  |  |   56|    803|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 803]
  |  |  ------------------
  ------------------
   84|    803|	snprintf(buf, sizeof(buf), "%u", num);
   85|    803|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    803|	{                                  \
  |  |  277|    803|		isc_result_t _r = (x);     \
  |  |  278|    803|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 803]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    803|	}
  ------------------
   86|    803|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    803|	{                                  \
  |  |  277|    803|		isc_result_t _r = (x);     \
  |  |  278|    803|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 803]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    803|	}
  ------------------
   87|    803|	dns_name_fromregion(&name, &region);
   88|    803|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (88:9): [True: 0, False: 803]
  ------------------
   89|    803|							 : 0;
   90|    803|	return dns_name_totext(&prefix, opts, target);
   91|    803|}

rdata.c:fromwire_sig:
  258|  4.94k|fromwire_sig(ARGS_FROMWIRE) {
  259|  4.94k|	isc_region_t sr;
  260|  4.94k|	dns_name_t name;
  261|  4.94k|	unsigned char algorithm;
  262|       |
  263|  4.94k|	REQUIRE(type == dns_rdatatype_sig);
  ------------------
  |  |  198|  4.94k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.94k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.94k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.94k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  264|       |
  265|  4.94k|	UNUSED(type);
  ------------------
  |  |   69|  4.94k|#define UNUSED(x) (void)(x)
  ------------------
  266|  4.94k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.94k|#define UNUSED(x) (void)(x)
  ------------------
  267|       |
  268|  4.94k|	dctx = dns_decompress_setpermitted(dctx, false);
  269|       |
  270|  4.94k|	isc_buffer_activeregion(source, &sr);
  271|       |	/*
  272|       |	 * type covered: 2
  273|       |	 * algorithm: 1
  274|       |	 * labels: 1
  275|       |	 * original ttl: 4
  276|       |	 * signature expiration: 4
  277|       |	 * time signed: 4
  278|       |	 * key footprint: 2
  279|       |	 */
  280|  4.94k|	if (sr.length < 18) {
  ------------------
  |  Branch (280:6): [True: 4, False: 4.94k]
  ------------------
  281|      4|		return ISC_R_UNEXPECTEDEND;
  282|      4|	}
  283|       |
  284|  4.94k|	algorithm = sr.base[2];
  285|       |
  286|  4.94k|	isc_buffer_forward(source, 18);
  287|  4.94k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  4.94k|	{                                  \
  |  |  277|  4.94k|		isc_result_t _r = (x);     \
  |  |  278|  4.94k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 235, False: 4.70k]
  |  |  ------------------
  |  |  279|    235|			return ((_r));     \
  |  |  280|    235|		}                          \
  |  |  281|  4.94k|	}
  ------------------
  288|       |
  289|       |	/*
  290|       |	 * Signer.
  291|       |	 */
  292|  4.70k|	dns_name_init(&name);
  293|  4.70k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  4.70k|	{                                  \
  |  |  277|  4.70k|		isc_result_t _r = (x);     \
  |  |  278|  4.70k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 203, False: 4.50k]
  |  |  ------------------
  |  |  279|    203|			return ((_r));     \
  |  |  280|    203|		}                          \
  |  |  281|  4.70k|	}
  ------------------
  294|       |
  295|       |	/*
  296|       |	 * Sig.
  297|       |	 */
  298|  4.50k|	isc_buffer_activeregion(source, &sr);
  299|  4.50k|	if (sr.length == 0) {
  ------------------
  |  Branch (299:6): [True: 1, False: 4.50k]
  ------------------
  300|      1|		return ISC_R_UNEXPECTEDEND;
  301|      1|	}
  302|       |
  303|  4.50k|	if (algorithm == DNS_KEYALG_PRIVATEDNS ||
  ------------------
  |  Branch (303:6): [True: 298, False: 4.20k]
  ------------------
  304|  4.20k|	    algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (304:6): [True: 70, False: 4.13k]
  ------------------
  305|    368|	{
  306|    368|		isc_buffer_t b = *source;
  307|    368|		RETERR(check_private(&b, algorithm));
  ------------------
  |  |  276|    368|	{                                  \
  |  |  277|    368|		isc_result_t _r = (x);     \
  |  |  278|    368|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 362]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|    368|	}
  ------------------
  308|    362|	}
  309|       |
  310|  4.49k|	isc_buffer_forward(source, sr.length);
  311|  4.49k|	return mem_tobuffer(target, sr.base, sr.length);
  312|  4.50k|}
rdata.c:towire_sig:
  315|  1.77k|towire_sig(ARGS_TOWIRE) {
  316|  1.77k|	isc_region_t sr;
  317|  1.77k|	dns_name_t name;
  318|       |
  319|  1.77k|	REQUIRE(rdata->type == dns_rdatatype_sig);
  ------------------
  |  |  198|  1.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  320|  1.77k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  321|       |
  322|  1.77k|	dns_compress_setpermitted(cctx, false);
  323|  1.77k|	dns_rdata_toregion(rdata, &sr);
  324|       |	/*
  325|       |	 * type covered: 2
  326|       |	 * algorithm: 1
  327|       |	 * labels: 1
  328|       |	 * original ttl: 4
  329|       |	 * signature expiration: 4
  330|       |	 * time signed: 4
  331|       |	 * key footprint: 2
  332|       |	 */
  333|  1.77k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  1.77k|	{                                  \
  |  |  277|  1.77k|		isc_result_t _r = (x);     \
  |  |  278|  1.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.77k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.77k|	}
  ------------------
  334|  1.77k|	isc_region_consume(&sr, 18);
  ------------------
  |  |   50|  1.77k|	do {                              \
  |  |   51|  1.77k|		isc_region_t *_r = (r);   \
  |  |   52|  1.77k|		unsigned int  _l = (l);   \
  |  |   53|  1.77k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.77k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.77k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.77k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.77k|		_r->base += _l;           \
  |  |   55|  1.77k|		_r->length -= _l;         \
  |  |   56|  1.77k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.77k]
  |  |  ------------------
  ------------------
  335|       |
  336|       |	/*
  337|       |	 * Signer.
  338|       |	 */
  339|  1.77k|	dns_name_init(&name);
  340|  1.77k|	dns_name_fromregion(&name, &sr);
  341|  1.77k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.77k|	do {                              \
  |  |   51|  1.77k|		isc_region_t *_r = (r);   \
  |  |   52|  1.77k|		unsigned int  _l = (l);   \
  |  |   53|  1.77k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.77k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.77k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.77k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.77k|		_r->base += _l;           \
  |  |   55|  1.77k|		_r->length -= _l;         \
  |  |   56|  1.77k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.77k]
  |  |  ------------------
  ------------------
  342|  1.77k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.77k|	{                                  \
  |  |  277|  1.77k|		isc_result_t _r = (x);     \
  |  |  278|  1.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.77k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.77k|	}
  ------------------
  343|       |
  344|       |	/*
  345|       |	 * Signature.
  346|       |	 */
  347|  1.77k|	return mem_tobuffer(target, sr.base, sr.length);
  348|  1.77k|}
rdata.c:totext_sig:
  141|  3.61k|totext_sig(ARGS_TOTEXT) {
  142|  3.61k|	isc_region_t sr;
  143|  3.61k|	char buf[sizeof("4294967295")];
  144|  3.61k|	dns_rdatatype_t covered;
  145|  3.61k|	unsigned long ttl;
  146|  3.61k|	unsigned long when;
  147|  3.61k|	unsigned long exp;
  148|  3.61k|	unsigned long foot;
  149|  3.61k|	dns_name_t name;
  150|  3.61k|	dns_name_t prefix;
  151|  3.61k|	unsigned int opts;
  152|       |
  153|  3.61k|	REQUIRE(rdata->type == dns_rdatatype_sig);
  ------------------
  |  |  198|  3.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  154|  3.61k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  155|       |
  156|  3.61k|	dns_rdata_toregion(rdata, &sr);
  157|       |
  158|       |	/*
  159|       |	 * Type covered.
  160|       |	 */
  161|  3.61k|	covered = uint16_fromregion(&sr);
  162|  3.61k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  163|       |	/*
  164|       |	 * XXXAG We should have something like dns_rdatatype_isknown()
  165|       |	 * that does the right thing with type 0.
  166|       |	 */
  167|  3.61k|	if (dns_rdatatype_isknown(covered) && covered != 0) {
  ------------------
  |  Branch (167:6): [True: 1.17k, False: 2.44k]
  |  Branch (167:40): [True: 1.17k, False: 0]
  ------------------
  168|  1.17k|		RETERR(dns_rdatatype_totext(covered, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  169|  2.44k|	} else {
  170|  2.44k|		snprintf(buf, sizeof(buf), "%u", covered);
  171|  2.44k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.44k|	{                                  \
  |  |  277|  2.44k|		isc_result_t _r = (x);     \
  |  |  278|  2.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.44k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.44k|	}
  ------------------
  172|  2.44k|	}
  173|  3.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  174|       |
  175|       |	/*
  176|       |	 * Algorithm.
  177|       |	 */
  178|  3.61k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  179|  3.61k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  180|  3.61k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  181|  3.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  182|       |
  183|       |	/*
  184|       |	 * Labels.
  185|       |	 */
  186|  3.61k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  187|  3.61k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  188|  3.61k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  189|  3.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  190|       |
  191|       |	/*
  192|       |	 * Ttl.
  193|       |	 */
  194|  3.61k|	ttl = uint32_fromregion(&sr);
  195|  3.61k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  196|  3.61k|	snprintf(buf, sizeof(buf), "%lu", ttl);
  197|  3.61k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  198|  3.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  199|       |
  200|       |	/*
  201|       |	 * Sig exp.
  202|       |	 */
  203|  3.61k|	exp = uint32_fromregion(&sr);
  204|  3.61k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  205|  3.61k|	RETERR(dns_time32_totext(exp, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  206|       |
  207|  3.61k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.61k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (207:6): [True: 0, False: 3.61k]
  ------------------
  208|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  209|      0|	}
  210|  3.61k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  211|       |
  212|       |	/*
  213|       |	 * Time signed.
  214|       |	 */
  215|  3.61k|	when = uint32_fromregion(&sr);
  216|  3.61k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  217|  3.61k|	RETERR(dns_time32_totext(when, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  218|  3.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  219|       |
  220|       |	/*
  221|       |	 * Footprint.
  222|       |	 */
  223|  3.61k|	foot = uint16_fromregion(&sr);
  224|  3.61k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  225|  3.61k|	snprintf(buf, sizeof(buf), "%lu", foot);
  226|  3.61k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  227|  3.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  228|       |
  229|       |	/*
  230|       |	 * Signer.
  231|       |	 */
  232|  3.61k|	dns_name_init(&name);
  233|  3.61k|	dns_name_init(&prefix);
  234|  3.61k|	dns_name_fromregion(&name, &sr);
  235|  3.61k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  3.61k|	do {                              \
  |  |   51|  3.61k|		isc_region_t *_r = (r);   \
  |  |   52|  3.61k|		unsigned int  _l = (l);   \
  |  |   53|  3.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.61k|		_r->base += _l;           \
  |  |   55|  3.61k|		_r->length -= _l;         \
  |  |   56|  3.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.61k]
  |  |  ------------------
  ------------------
  236|  3.61k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (236:9): [True: 0, False: 3.61k]
  ------------------
  237|  3.61k|							 : 0;
  238|  3.61k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  239|       |
  240|       |	/*
  241|       |	 * Sig.
  242|       |	 */
  243|  3.61k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  244|  3.61k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (244:6): [True: 0, False: 3.61k]
  ------------------
  245|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  246|  3.61k|	} else {
  247|  3.61k|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  3.61k|	{                                  \
  |  |  277|  3.61k|		isc_result_t _r = (x);     \
  |  |  278|  3.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.61k|	}
  ------------------
  248|  3.61k|					 target));
  249|  3.61k|	}
  250|  3.61k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.61k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (250:6): [True: 0, False: 3.61k]
  ------------------
  251|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  252|      0|	}
  253|       |
  254|  3.61k|	return ISC_R_SUCCESS;
  255|  3.61k|}
rdata.c:covers_sig:
  586|  4.23k|covers_sig(dns_rdata_t *rdata) {
  587|  4.23k|	dns_rdatatype_t type;
  588|  4.23k|	isc_region_t r;
  589|       |
  590|  4.23k|	REQUIRE(rdata->type == dns_rdatatype_sig);
  ------------------
  |  |  198|  4.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  591|       |
  592|  4.23k|	dns_rdata_toregion(rdata, &r);
  593|  4.23k|	type = uint16_fromregion(&r);
  594|       |
  595|  4.23k|	return type;
  596|  4.23k|}

rdata.c:fromwire_sink:
  107|  2.13k|fromwire_sink(ARGS_FROMWIRE) {
  108|  2.13k|	isc_region_t sr;
  109|       |
  110|  2.13k|	REQUIRE(type == dns_rdatatype_sink);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  111|       |
  112|  2.13k|	UNUSED(type);
  ------------------
  |  |   69|  2.13k|#define UNUSED(x) (void)(x)
  ------------------
  113|  2.13k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.13k|#define UNUSED(x) (void)(x)
  ------------------
  114|  2.13k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.13k|#define UNUSED(x) (void)(x)
  ------------------
  115|       |
  116|  2.13k|	isc_buffer_activeregion(source, &sr);
  117|  2.13k|	if (sr.length < 3) {
  ------------------
  |  Branch (117:6): [True: 5, False: 2.12k]
  ------------------
  118|      5|		return ISC_R_UNEXPECTEDEND;
  119|      5|	}
  120|       |
  121|  2.12k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.12k|	{                                  \
  |  |  277|  2.12k|		isc_result_t _r = (x);     \
  |  |  278|  2.12k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 223, False: 1.90k]
  |  |  ------------------
  |  |  279|    223|			return ((_r));     \
  |  |  280|    223|		}                          \
  |  |  281|  2.12k|	}
  ------------------
  122|  1.90k|	isc_buffer_forward(source, sr.length);
  123|  1.90k|	return ISC_R_SUCCESS;
  124|  2.12k|}
rdata.c:towire_sink:
  127|    837|towire_sink(ARGS_TOWIRE) {
  128|    837|	REQUIRE(rdata->type == dns_rdatatype_sink);
  ------------------
  |  |  198|    837|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    837|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 837, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    837|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|    837|	REQUIRE(rdata->length >= 3);
  ------------------
  |  |  198|    837|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    837|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 837, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    837|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|    837|	UNUSED(cctx);
  ------------------
  |  |   69|    837|#define UNUSED(x) (void)(x)
  ------------------
  132|       |
  133|    837|	return mem_tobuffer(target, rdata->data, rdata->length);
  134|    837|}
rdata.c:totext_sink:
   61|  1.65k|totext_sink(ARGS_TOTEXT) {
   62|  1.65k|	isc_region_t sr;
   63|  1.65k|	char buf[sizeof("255 255 255")];
   64|  1.65k|	uint8_t meaning, coding, subcoding;
   65|       |
   66|  1.65k|	REQUIRE(rdata->type == dns_rdatatype_sink);
  ------------------
  |  |  198|  1.65k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.65k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.65k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.65k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  1.65k|	REQUIRE(rdata->length >= 3);
  ------------------
  |  |  198|  1.65k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.65k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.65k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.65k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|  1.65k|	dns_rdata_toregion(rdata, &sr);
   70|       |
   71|       |	/* Meaning, Coding and Subcoding */
   72|  1.65k|	meaning = uint8_fromregion(&sr);
   73|  1.65k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.65k|	do {                              \
  |  |   51|  1.65k|		isc_region_t *_r = (r);   \
  |  |   52|  1.65k|		unsigned int  _l = (l);   \
  |  |   53|  1.65k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.65k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.65k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.65k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.65k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.65k|		_r->base += _l;           \
  |  |   55|  1.65k|		_r->length -= _l;         \
  |  |   56|  1.65k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.65k]
  |  |  ------------------
  ------------------
   74|  1.65k|	coding = uint8_fromregion(&sr);
   75|  1.65k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.65k|	do {                              \
  |  |   51|  1.65k|		isc_region_t *_r = (r);   \
  |  |   52|  1.65k|		unsigned int  _l = (l);   \
  |  |   53|  1.65k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.65k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.65k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.65k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.65k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.65k|		_r->base += _l;           \
  |  |   55|  1.65k|		_r->length -= _l;         \
  |  |   56|  1.65k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.65k]
  |  |  ------------------
  ------------------
   76|  1.65k|	subcoding = uint8_fromregion(&sr);
   77|  1.65k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.65k|	do {                              \
  |  |   51|  1.65k|		isc_region_t *_r = (r);   \
  |  |   52|  1.65k|		unsigned int  _l = (l);   \
  |  |   53|  1.65k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.65k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.65k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.65k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.65k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.65k|		_r->base += _l;           \
  |  |   55|  1.65k|		_r->length -= _l;         \
  |  |   56|  1.65k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.65k]
  |  |  ------------------
  ------------------
   78|  1.65k|	snprintf(buf, sizeof(buf), "%u %u %u", meaning, coding, subcoding);
   79|  1.65k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.65k|	{                                  \
  |  |  277|  1.65k|		isc_result_t _r = (x);     \
  |  |  278|  1.65k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.65k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.65k|	}
  ------------------
   80|       |
   81|  1.65k|	if (sr.length == 0U) {
  ------------------
  |  Branch (81:6): [True: 665, False: 985]
  ------------------
   82|    665|		return ISC_R_SUCCESS;
   83|    665|	}
   84|       |
   85|       |	/* data */
   86|    985|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    985|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (86:6): [True: 0, False: 985]
  ------------------
   87|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   88|      0|	}
   89|       |
   90|    985|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|    985|	{                                  \
  |  |  277|    985|		isc_result_t _r = (x);     \
  |  |  278|    985|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 985]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    985|	}
  ------------------
   91|       |
   92|    985|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (92:6): [True: 0, False: 985]
  ------------------
   93|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   94|    985|	} else {
   95|    985|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    985|	{                                  \
  |  |  277|    985|		isc_result_t _r = (x);     \
  |  |  278|    985|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 985]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    985|	}
  ------------------
   96|    985|					 target));
   97|    985|	}
   98|       |
   99|    985|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    985|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (99:6): [True: 0, False: 985]
  ------------------
  100|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  101|      0|	}
  102|       |
  103|    985|	return ISC_R_SUCCESS;
  104|    985|}

rdata.c:fromwire_smimea:
   35|  1.02k|fromwire_smimea(ARGS_FROMWIRE) {
   36|  1.02k|	REQUIRE(type == dns_rdatatype_smimea);
  ------------------
  |  |  198|  1.02k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.02k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.02k|	return generic_fromwire_tlsa(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.02k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.02k|}
rdata.c:towire_smimea:
   42|    456|towire_smimea(ARGS_TOWIRE) {
   43|    456|	isc_region_t sr;
   44|       |
   45|    456|	REQUIRE(rdata->type == dns_rdatatype_smimea);
  ------------------
  |  |  198|    456|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    456|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 456, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    456|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|    456|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    456|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    456|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 456, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    456|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|       |
   48|    456|	UNUSED(cctx);
  ------------------
  |  |   69|    456|#define UNUSED(x) (void)(x)
  ------------------
   49|       |
   50|    456|	dns_rdata_toregion(rdata, &sr);
   51|    456|	return mem_tobuffer(target, sr.base, sr.length);
   52|    456|}
rdata.c:totext_smimea:
   27|    886|totext_smimea(ARGS_TOTEXT) {
   28|    886|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    886|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    886|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 886, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    886|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    886|	REQUIRE(rdata->type == dns_rdatatype_smimea);
  ------------------
  |  |  198|    886|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    886|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 886, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    886|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    886|	return generic_totext_tlsa(CALL_TOTEXT);
  ------------------
  |  |   85|    886|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    886|}

rdata.c:compare_soa:
  234|  3.18k|compare_soa(ARGS_COMPARE) {
  235|  3.18k|	isc_region_t region1;
  236|  3.18k|	isc_region_t region2;
  237|  3.18k|	dns_name_t name1;
  238|  3.18k|	dns_name_t name2;
  239|  3.18k|	int order;
  240|       |
  241|  3.18k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  3.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  242|  3.18k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  3.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  243|  3.18k|	REQUIRE(rdata1->type == dns_rdatatype_soa);
  ------------------
  |  |  198|  3.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  244|  3.18k|	REQUIRE(rdata1->length != 0);
  ------------------
  |  |  198|  3.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  245|  3.18k|	REQUIRE(rdata2->length != 0);
  ------------------
  |  |  198|  3.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  246|       |
  247|  3.18k|	dns_name_init(&name1);
  248|  3.18k|	dns_name_init(&name2);
  249|       |
  250|  3.18k|	dns_rdata_toregion(rdata1, &region1);
  251|  3.18k|	dns_rdata_toregion(rdata2, &region2);
  252|       |
  253|  3.18k|	dns_name_fromregion(&name1, &region1);
  254|  3.18k|	dns_name_fromregion(&name2, &region2);
  255|       |
  256|  3.18k|	order = dns_name_rdatacompare(&name1, &name2);
  257|  3.18k|	if (order != 0) {
  ------------------
  |  Branch (257:6): [True: 538, False: 2.64k]
  ------------------
  258|    538|		return order;
  259|    538|	}
  260|       |
  261|  2.64k|	isc_region_consume(&region1, name_length(&name1));
  ------------------
  |  |   50|  2.64k|	do {                              \
  |  |   51|  2.64k|		isc_region_t *_r = (r);   \
  |  |   52|  2.64k|		unsigned int  _l = (l);   \
  |  |   53|  2.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.64k|		_r->base += _l;           \
  |  |   55|  2.64k|		_r->length -= _l;         \
  |  |   56|  2.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.64k]
  |  |  ------------------
  ------------------
  262|  2.64k|	isc_region_consume(&region2, name_length(&name2));
  ------------------
  |  |   50|  2.64k|	do {                              \
  |  |   51|  2.64k|		isc_region_t *_r = (r);   \
  |  |   52|  2.64k|		unsigned int  _l = (l);   \
  |  |   53|  2.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.64k|		_r->base += _l;           \
  |  |   55|  2.64k|		_r->length -= _l;         \
  |  |   56|  2.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.64k]
  |  |  ------------------
  ------------------
  263|       |
  264|  2.64k|	dns_name_init(&name1);
  265|  2.64k|	dns_name_init(&name2);
  266|       |
  267|  2.64k|	dns_name_fromregion(&name1, &region1);
  268|  2.64k|	dns_name_fromregion(&name2, &region2);
  269|       |
  270|  2.64k|	order = dns_name_rdatacompare(&name1, &name2);
  271|  2.64k|	if (order != 0) {
  ------------------
  |  Branch (271:6): [True: 1.02k, False: 1.61k]
  ------------------
  272|  1.02k|		return order;
  273|  1.02k|	}
  274|       |
  275|  1.61k|	isc_region_consume(&region1, name_length(&name1));
  ------------------
  |  |   50|  1.61k|	do {                              \
  |  |   51|  1.61k|		isc_region_t *_r = (r);   \
  |  |   52|  1.61k|		unsigned int  _l = (l);   \
  |  |   53|  1.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.61k|		_r->base += _l;           \
  |  |   55|  1.61k|		_r->length -= _l;         \
  |  |   56|  1.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.61k]
  |  |  ------------------
  ------------------
  276|  1.61k|	isc_region_consume(&region2, name_length(&name2));
  ------------------
  |  |   50|  1.61k|	do {                              \
  |  |   51|  1.61k|		isc_region_t *_r = (r);   \
  |  |   52|  1.61k|		unsigned int  _l = (l);   \
  |  |   53|  1.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.61k|		_r->base += _l;           \
  |  |   55|  1.61k|		_r->length -= _l;         \
  |  |   56|  1.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.61k]
  |  |  ------------------
  ------------------
  277|       |
  278|  1.61k|	return isc_region_compare(&region1, &region2);
  279|  2.64k|}
rdata.c:fromwire_soa:
  162|  5.72k|fromwire_soa(ARGS_FROMWIRE) {
  163|  5.72k|	dns_name_t mname;
  164|  5.72k|	dns_name_t rname;
  165|  5.72k|	isc_region_t sregion;
  166|  5.72k|	isc_region_t tregion;
  167|       |
  168|  5.72k|	REQUIRE(type == dns_rdatatype_soa);
  ------------------
  |  |  198|  5.72k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.72k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.72k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  169|       |
  170|  5.72k|	UNUSED(type);
  ------------------
  |  |   69|  5.72k|#define UNUSED(x) (void)(x)
  ------------------
  171|  5.72k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.72k|#define UNUSED(x) (void)(x)
  ------------------
  172|       |
  173|  5.72k|	dctx = dns_decompress_setpermitted(dctx, true);
  174|       |
  175|  5.72k|	dns_name_init(&mname);
  176|  5.72k|	dns_name_init(&rname);
  177|       |
  178|  5.72k|	RETERR(dns_name_fromwire(&mname, source, dctx, target));
  ------------------
  |  |  276|  5.72k|	{                                  \
  |  |  277|  5.72k|		isc_result_t _r = (x);     \
  |  |  278|  5.72k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 420, False: 5.30k]
  |  |  ------------------
  |  |  279|    420|			return ((_r));     \
  |  |  280|    420|		}                          \
  |  |  281|  5.72k|	}
  ------------------
  179|  5.30k|	RETERR(dns_name_fromwire(&rname, source, dctx, target));
  ------------------
  |  |  276|  5.30k|	{                                  \
  |  |  277|  5.30k|		isc_result_t _r = (x);     \
  |  |  278|  5.30k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 465, False: 4.83k]
  |  |  ------------------
  |  |  279|    465|			return ((_r));     \
  |  |  280|    465|		}                          \
  |  |  281|  5.30k|	}
  ------------------
  180|       |
  181|  4.83k|	isc_buffer_activeregion(source, &sregion);
  182|  4.83k|	isc_buffer_availableregion(target, &tregion);
  183|       |
  184|  4.83k|	if (sregion.length < 20) {
  ------------------
  |  Branch (184:6): [True: 4, False: 4.83k]
  ------------------
  185|      4|		return ISC_R_UNEXPECTEDEND;
  186|      4|	}
  187|  4.83k|	if (tregion.length < 20) {
  ------------------
  |  Branch (187:6): [True: 277, False: 4.55k]
  ------------------
  188|    277|		return ISC_R_NOSPACE;
  189|    277|	}
  190|       |
  191|  4.55k|	memmove(tregion.base, sregion.base, 20);
  192|  4.55k|	isc_buffer_forward(source, 20);
  193|  4.55k|	isc_buffer_add(target, 20);
  194|       |
  195|  4.55k|	return ISC_R_SUCCESS;
  196|  4.83k|}
rdata.c:towire_soa:
  199|  2.40k|towire_soa(ARGS_TOWIRE) {
  200|  2.40k|	isc_region_t sregion;
  201|  2.40k|	isc_region_t tregion;
  202|  2.40k|	dns_name_t mname;
  203|  2.40k|	dns_name_t rname;
  204|       |
  205|  2.40k|	REQUIRE(rdata->type == dns_rdatatype_soa);
  ------------------
  |  |  198|  2.40k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.40k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.40k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  206|  2.40k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.40k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.40k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.40k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  207|       |
  208|  2.40k|	dns_compress_setpermitted(cctx, true);
  209|       |
  210|  2.40k|	dns_name_init(&mname);
  211|  2.40k|	dns_name_init(&rname);
  212|       |
  213|  2.40k|	dns_rdata_toregion(rdata, &sregion);
  214|       |
  215|  2.40k|	dns_name_fromregion(&mname, &sregion);
  216|  2.40k|	isc_region_consume(&sregion, name_length(&mname));
  ------------------
  |  |   50|  2.40k|	do {                              \
  |  |   51|  2.40k|		isc_region_t *_r = (r);   \
  |  |   52|  2.40k|		unsigned int  _l = (l);   \
  |  |   53|  2.40k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.40k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.40k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.40k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.40k|		_r->base += _l;           \
  |  |   55|  2.40k|		_r->length -= _l;         \
  |  |   56|  2.40k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.40k]
  |  |  ------------------
  ------------------
  217|  2.40k|	RETERR(dns_name_towire(&mname, cctx, target));
  ------------------
  |  |  276|  2.40k|	{                                  \
  |  |  277|  2.40k|		isc_result_t _r = (x);     \
  |  |  278|  2.40k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.40k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.40k|	}
  ------------------
  218|       |
  219|  2.40k|	dns_name_fromregion(&rname, &sregion);
  220|  2.40k|	isc_region_consume(&sregion, name_length(&rname));
  ------------------
  |  |   50|  2.40k|	do {                              \
  |  |   51|  2.40k|		isc_region_t *_r = (r);   \
  |  |   52|  2.40k|		unsigned int  _l = (l);   \
  |  |   53|  2.40k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.40k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.40k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.40k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.40k|		_r->base += _l;           \
  |  |   55|  2.40k|		_r->length -= _l;         \
  |  |   56|  2.40k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.40k]
  |  |  ------------------
  ------------------
  221|  2.40k|	RETERR(dns_name_towire(&rname, cctx, target));
  ------------------
  |  |  276|  2.40k|	{                                  \
  |  |  277|  2.40k|		isc_result_t _r = (x);     \
  |  |  278|  2.40k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.40k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.40k|	}
  ------------------
  222|       |
  223|  2.40k|	isc_buffer_availableregion(target, &tregion);
  224|  2.40k|	if (tregion.length < 20) {
  ------------------
  |  Branch (224:6): [True: 1, False: 2.40k]
  ------------------
  225|      1|		return ISC_R_NOSPACE;
  226|      1|	}
  227|       |
  228|  2.40k|	memmove(tregion.base, sregion.base, 20);
  229|  2.40k|	isc_buffer_add(target, 20);
  230|  2.40k|	return ISC_R_SUCCESS;
  231|  2.40k|}
rdata.c:totext_soa:
   84|  4.47k|totext_soa(ARGS_TOTEXT) {
   85|  4.47k|	isc_region_t dregion;
   86|  4.47k|	dns_name_t mname;
   87|  4.47k|	dns_name_t rname;
   88|  4.47k|	dns_name_t prefix;
   89|  4.47k|	unsigned int opts;
   90|  4.47k|	int i;
   91|  4.47k|	bool multiline;
   92|  4.47k|	bool comm;
   93|       |
   94|  4.47k|	REQUIRE(rdata->type == dns_rdatatype_soa);
  ------------------
  |  |  198|  4.47k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.47k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.47k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.47k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|  4.47k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.47k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.47k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.47k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.47k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|       |
   97|  4.47k|	multiline = ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0);
  ------------------
  |  |  191|  4.47k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
   98|  4.47k|	if (multiline) {
  ------------------
  |  Branch (98:6): [True: 0, False: 4.47k]
  ------------------
   99|      0|		comm = ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0);
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  100|  4.47k|	} else {
  101|  4.47k|		comm = false;
  102|  4.47k|	}
  103|       |
  104|  4.47k|	dns_name_init(&mname);
  105|  4.47k|	dns_name_init(&rname);
  106|  4.47k|	dns_name_init(&prefix);
  107|       |
  108|  4.47k|	dns_rdata_toregion(rdata, &dregion);
  109|       |
  110|  4.47k|	dns_name_fromregion(&mname, &dregion);
  111|  4.47k|	isc_region_consume(&dregion, name_length(&mname));
  ------------------
  |  |   50|  4.47k|	do {                              \
  |  |   51|  4.47k|		isc_region_t *_r = (r);   \
  |  |   52|  4.47k|		unsigned int  _l = (l);   \
  |  |   53|  4.47k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.47k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.47k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.47k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.47k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.47k|		_r->base += _l;           \
  |  |   55|  4.47k|		_r->length -= _l;         \
  |  |   56|  4.47k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.47k]
  |  |  ------------------
  ------------------
  112|       |
  113|  4.47k|	dns_name_fromregion(&rname, &dregion);
  114|  4.47k|	isc_region_consume(&dregion, name_length(&rname));
  ------------------
  |  |   50|  4.47k|	do {                              \
  |  |   51|  4.47k|		isc_region_t *_r = (r);   \
  |  |   52|  4.47k|		unsigned int  _l = (l);   \
  |  |   53|  4.47k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.47k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.47k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.47k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.47k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.47k|		_r->base += _l;           \
  |  |   55|  4.47k|		_r->length -= _l;         \
  |  |   56|  4.47k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.47k]
  |  |  ------------------
  ------------------
  115|       |
  116|  4.47k|	opts = name_prefix(&mname, tctx->origin, &prefix)
  ------------------
  |  Branch (116:9): [True: 0, False: 4.47k]
  ------------------
  117|  4.47k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  118|  4.47k|		       : 0;
  119|  4.47k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  4.47k|	{                                  \
  |  |  277|  4.47k|		isc_result_t _r = (x);     \
  |  |  278|  4.47k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.47k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.47k|	}
  ------------------
  120|       |
  121|  4.47k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.47k|	{                                  \
  |  |  277|  4.47k|		isc_result_t _r = (x);     \
  |  |  278|  4.47k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.47k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.47k|	}
  ------------------
  122|       |
  123|  4.47k|	opts = name_prefix(&rname, tctx->origin, &prefix)
  ------------------
  |  Branch (123:9): [True: 0, False: 4.47k]
  ------------------
  124|  4.47k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  125|  4.47k|		       : 0;
  126|  4.47k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  4.47k|	{                                  \
  |  |  277|  4.47k|		isc_result_t _r = (x);     \
  |  |  278|  4.47k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.47k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.47k|	}
  ------------------
  127|       |
  128|  4.47k|	if (multiline) {
  ------------------
  |  Branch (128:6): [True: 0, False: 4.47k]
  ------------------
  129|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  130|      0|	}
  131|  4.47k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.47k|	{                                  \
  |  |  277|  4.47k|		isc_result_t _r = (x);     \
  |  |  278|  4.47k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.47k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.47k|	}
  ------------------
  132|       |
  133|  26.8k|	for (i = 0; i < 5; i++) {
  ------------------
  |  Branch (133:14): [True: 22.3k, False: 4.47k]
  ------------------
  134|  22.3k|		char buf[sizeof("0123456789 ; ")];
  135|  22.3k|		unsigned long num;
  136|  22.3k|		num = uint32_fromregion(&dregion);
  137|  22.3k|		isc_region_consume(&dregion, 4);
  ------------------
  |  |   50|  22.3k|	do {                              \
  |  |   51|  22.3k|		isc_region_t *_r = (r);   \
  |  |   52|  22.3k|		unsigned int  _l = (l);   \
  |  |   53|  22.3k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  22.3k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  22.3k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 22.3k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  22.3k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  22.3k|		_r->base += _l;           \
  |  |   55|  22.3k|		_r->length -= _l;         \
  |  |   56|  22.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 22.3k]
  |  |  ------------------
  ------------------
  138|  22.3k|		snprintf(buf, sizeof(buf), comm ? "%-10lu ; " : "%lu", num);
  ------------------
  |  Branch (138:30): [True: 0, False: 22.3k]
  ------------------
  139|  22.3k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  22.3k|	{                                  \
  |  |  277|  22.3k|		isc_result_t _r = (x);     \
  |  |  278|  22.3k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.3k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.3k|	}
  ------------------
  140|  22.3k|		if (comm) {
  ------------------
  |  Branch (140:7): [True: 0, False: 22.3k]
  ------------------
  141|      0|			RETERR(str_totext(soa_fieldnames[i], target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  142|       |			/* Print times in week/day/hour/minute/second form */
  143|      0|			if (i >= 1) {
  ------------------
  |  Branch (143:8): [True: 0, False: 0]
  ------------------
  144|      0|				RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  145|      0|				RETERR(dns_ttl_totext(num, true, true, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  146|      0|				RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  147|      0|			}
  148|      0|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  149|  22.3k|		} else if (i < 4) {
  ------------------
  |  Branch (149:14): [True: 17.8k, False: 4.47k]
  ------------------
  150|  17.8k|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  17.8k|	{                                  \
  |  |  277|  17.8k|		isc_result_t _r = (x);     \
  |  |  278|  17.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.8k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.8k|	}
  ------------------
  151|  17.8k|		}
  152|  22.3k|	}
  153|       |
  154|  4.47k|	if (multiline) {
  ------------------
  |  Branch (154:6): [True: 0, False: 4.47k]
  ------------------
  155|      0|		RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  156|      0|	}
  157|       |
  158|  4.47k|	return ISC_R_SUCCESS;
  159|  4.47k|}

rdata.c:fromwire_spf:
   35|  1.04k|fromwire_spf(ARGS_FROMWIRE) {
   36|  1.04k|	REQUIRE(type == dns_rdatatype_spf);
  ------------------
  |  |  198|  1.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.04k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.04k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.04k|}
rdata.c:towire_spf:
   42|    453|towire_spf(ARGS_TOWIRE) {
   43|    453|	REQUIRE(rdata->type == dns_rdatatype_spf);
  ------------------
  |  |  198|    453|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    453|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 453, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    453|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    453|	UNUSED(cctx);
  ------------------
  |  |   69|    453|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    453|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    453|}
rdata.c:totext_spf:
   27|    893|totext_spf(ARGS_TOTEXT) {
   28|    893|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    893|	REQUIRE(rdata->type == dns_rdatatype_spf);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    893|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    893|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    893|}

rdata.c:fromwire_sshfp:
  127|  2.27k|fromwire_sshfp(ARGS_FROMWIRE) {
  128|  2.27k|	isc_region_t sr;
  129|       |
  130|  2.27k|	REQUIRE(type == dns_rdatatype_sshfp);
  ------------------
  |  |  198|  2.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|  2.27k|	UNUSED(type);
  ------------------
  |  |   69|  2.27k|#define UNUSED(x) (void)(x)
  ------------------
  133|  2.27k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.27k|#define UNUSED(x) (void)(x)
  ------------------
  134|  2.27k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.27k|#define UNUSED(x) (void)(x)
  ------------------
  135|       |
  136|  2.27k|	isc_buffer_activeregion(source, &sr);
  137|  2.27k|	if (sr.length < 2) {
  ------------------
  |  Branch (137:6): [True: 4, False: 2.27k]
  ------------------
  138|      4|		return ISC_R_UNEXPECTEDEND;
  139|      4|	}
  140|       |
  141|  2.27k|	if ((sr.base[1] == 1 && sr.length != ISC_SHA1_DIGESTLENGTH + 2) ||
  ------------------
  |  |   50|    337|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  |  Branch (141:7): [True: 337, False: 1.93k]
  |  Branch (141:26): [True: 4, False: 333]
  ------------------
  142|  2.27k|	    (sr.base[1] == 2 && sr.length != ISC_SHA256_DIGESTLENGTH + 2))
  ------------------
  |  |   54|    217|#define ISC_SHA256_DIGESTLENGTH 32
  ------------------
  |  Branch (142:7): [True: 217, False: 2.05k]
  |  Branch (142:26): [True: 8, False: 209]
  ------------------
  143|     12|	{
  144|     12|		return DNS_R_FORMERR;
  145|     12|	}
  146|       |
  147|  2.26k|	isc_buffer_forward(source, sr.length);
  148|  2.26k|	return mem_tobuffer(target, sr.base, sr.length);
  149|  2.27k|}
rdata.c:towire_sshfp:
  152|    893|towire_sshfp(ARGS_TOWIRE) {
  153|    893|	isc_region_t sr;
  154|       |
  155|    893|	REQUIRE(rdata->type == dns_rdatatype_sshfp);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  156|    893|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  157|       |
  158|    893|	UNUSED(cctx);
  ------------------
  |  |   69|    893|#define UNUSED(x) (void)(x)
  ------------------
  159|       |
  160|    893|	dns_rdata_toregion(rdata, &sr);
  161|    893|	return mem_tobuffer(target, sr.base, sr.length);
  162|    893|}
rdata.c:totext_sshfp:
   75|  1.76k|totext_sshfp(ARGS_TOTEXT) {
   76|  1.76k|	isc_region_t sr;
   77|  1.76k|	char buf[sizeof("64000 ")];
   78|  1.76k|	unsigned int n;
   79|       |
   80|  1.76k|	REQUIRE(rdata->type == dns_rdatatype_sshfp);
  ------------------
  |  |  198|  1.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|  1.76k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|       |
   83|  1.76k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.76k|#define UNUSED(x) (void)(x)
  ------------------
   84|       |
   85|  1.76k|	dns_rdata_toregion(rdata, &sr);
   86|       |
   87|       |	/*
   88|       |	 * Algorithm.
   89|       |	 */
   90|  1.76k|	n = uint8_fromregion(&sr);
   91|  1.76k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.76k|	do {                              \
  |  |   51|  1.76k|		isc_region_t *_r = (r);   \
  |  |   52|  1.76k|		unsigned int  _l = (l);   \
  |  |   53|  1.76k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.76k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.76k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.76k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.76k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.76k|		_r->base += _l;           \
  |  |   55|  1.76k|		_r->length -= _l;         \
  |  |   56|  1.76k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.76k]
  |  |  ------------------
  ------------------
   92|  1.76k|	snprintf(buf, sizeof(buf), "%u ", n);
   93|  1.76k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.76k|	{                                  \
  |  |  277|  1.76k|		isc_result_t _r = (x);     \
  |  |  278|  1.76k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.76k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.76k|	}
  ------------------
   94|       |
   95|       |	/*
   96|       |	 * Digest type.
   97|       |	 */
   98|  1.76k|	n = uint8_fromregion(&sr);
   99|  1.76k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.76k|	do {                              \
  |  |   51|  1.76k|		isc_region_t *_r = (r);   \
  |  |   52|  1.76k|		unsigned int  _l = (l);   \
  |  |   53|  1.76k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.76k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.76k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.76k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.76k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.76k|		_r->base += _l;           \
  |  |   55|  1.76k|		_r->length -= _l;         \
  |  |   56|  1.76k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.76k]
  |  |  ------------------
  ------------------
  100|  1.76k|	snprintf(buf, sizeof(buf), "%u", n);
  101|  1.76k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.76k|	{                                  \
  |  |  277|  1.76k|		isc_result_t _r = (x);     \
  |  |  278|  1.76k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.76k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.76k|	}
  ------------------
  102|       |
  103|  1.76k|	if (sr.length == 0U) {
  ------------------
  |  Branch (103:6): [True: 911, False: 856]
  ------------------
  104|    911|		return ISC_R_SUCCESS;
  105|    911|	}
  106|       |
  107|       |	/*
  108|       |	 * Digest.
  109|       |	 */
  110|    856|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    856|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (110:6): [True: 0, False: 856]
  ------------------
  111|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  112|      0|	}
  113|    856|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|    856|	{                                  \
  |  |  277|    856|		isc_result_t _r = (x);     \
  |  |  278|    856|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 856]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    856|	}
  ------------------
  114|    856|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (114:6): [True: 0, False: 856]
  ------------------
  115|      0|		RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  116|    856|	} else {
  117|    856|		RETERR(isc_hex_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    856|	{                                  \
  |  |  277|    856|		isc_result_t _r = (x);     \
  |  |  278|    856|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 856]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    856|	}
  ------------------
  118|    856|				      target));
  119|    856|	}
  120|    856|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    856|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (120:6): [True: 0, False: 856]
  ------------------
  121|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  122|      0|	}
  123|    856|	return ISC_R_SUCCESS;
  124|    856|}

rdata.c:fromwire_ta:
   36|    852|fromwire_ta(ARGS_FROMWIRE) {
   37|    852|	REQUIRE(type == dns_rdatatype_ta);
  ------------------
  |  |  198|    852|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    852|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 852, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    852|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   38|       |
   39|    852|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|    852|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   40|    852|}
rdata.c:towire_ta:
   43|    390|towire_ta(ARGS_TOWIRE) {
   44|    390|	isc_region_t sr;
   45|       |
   46|    390|	REQUIRE(rdata->type == dns_rdatatype_ta);
  ------------------
  |  |  198|    390|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    390|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 390, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    390|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|    390|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    390|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    390|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 390, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    390|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   48|       |
   49|    390|	UNUSED(cctx);
  ------------------
  |  |   69|    390|#define UNUSED(x) (void)(x)
  ------------------
   50|       |
   51|    390|	dns_rdata_toregion(rdata, &sr);
   52|    390|	return mem_tobuffer(target, sr.base, sr.length);
   53|    390|}
rdata.c:totext_ta:
   29|    775|totext_ta(ARGS_TOTEXT) {
   30|    775|	REQUIRE(rdata->type == dns_rdatatype_ta);
  ------------------
  |  |  198|    775|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    775|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 775, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    775|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   31|       |
   32|    775|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|    775|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   33|    775|}

rdata.c:fromwire_talink:
   81|  2.77k|fromwire_talink(ARGS_FROMWIRE) {
   82|  2.77k|	dns_name_t prev;
   83|  2.77k|	dns_name_t next;
   84|       |
   85|  2.77k|	REQUIRE(type == dns_rdatatype_talink);
  ------------------
  |  |  198|  2.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  2.77k|	UNUSED(type);
  ------------------
  |  |   69|  2.77k|#define UNUSED(x) (void)(x)
  ------------------
   88|  2.77k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.77k|#define UNUSED(x) (void)(x)
  ------------------
   89|       |
   90|  2.77k|	dctx = dns_decompress_setpermitted(dctx, false);
   91|       |
   92|  2.77k|	dns_name_init(&prev);
   93|  2.77k|	dns_name_init(&next);
   94|       |
   95|  2.77k|	RETERR(dns_name_fromwire(&prev, source, dctx, target));
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 146, False: 2.62k]
  |  |  ------------------
  |  |  279|    146|			return ((_r));     \
  |  |  280|    146|		}                          \
  |  |  281|  2.77k|	}
  ------------------
   96|  2.62k|	return dns_name_fromwire(&next, source, dctx, target);
   97|  2.77k|}
rdata.c:towire_talink:
  100|  1.21k|towire_talink(ARGS_TOWIRE) {
  101|  1.21k|	isc_region_t sregion;
  102|  1.21k|	dns_name_t prev;
  103|  1.21k|	dns_name_t next;
  104|       |
  105|  1.21k|	REQUIRE(rdata->type == dns_rdatatype_talink);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|  1.21k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  1.21k|	dns_compress_setpermitted(cctx, false);
  109|       |
  110|  1.21k|	dns_name_init(&prev);
  111|  1.21k|	dns_name_init(&next);
  112|       |
  113|  1.21k|	dns_rdata_toregion(rdata, &sregion);
  114|       |
  115|  1.21k|	dns_name_fromregion(&prev, &sregion);
  116|  1.21k|	isc_region_consume(&sregion, name_length(&prev));
  ------------------
  |  |   50|  1.21k|	do {                              \
  |  |   51|  1.21k|		isc_region_t *_r = (r);   \
  |  |   52|  1.21k|		unsigned int  _l = (l);   \
  |  |   53|  1.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.21k|		_r->base += _l;           \
  |  |   55|  1.21k|		_r->length -= _l;         \
  |  |   56|  1.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.21k]
  |  |  ------------------
  ------------------
  117|  1.21k|	RETERR(dns_name_towire(&prev, cctx, target));
  ------------------
  |  |  276|  1.21k|	{                                  \
  |  |  277|  1.21k|		isc_result_t _r = (x);     \
  |  |  278|  1.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.20k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.21k|	}
  ------------------
  118|       |
  119|  1.20k|	dns_name_fromregion(&next, &sregion);
  120|  1.20k|	isc_region_consume(&sregion, name_length(&next));
  ------------------
  |  |   50|  1.20k|	do {                              \
  |  |   51|  1.20k|		isc_region_t *_r = (r);   \
  |  |   52|  1.20k|		unsigned int  _l = (l);   \
  |  |   53|  1.20k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.20k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.20k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.20k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.20k|		_r->base += _l;           \
  |  |   55|  1.20k|		_r->length -= _l;         \
  |  |   56|  1.20k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.20k]
  |  |  ------------------
  ------------------
  121|  1.20k|	return dns_name_towire(&next, cctx, target);
  122|  1.21k|}
rdata.c:totext_talink:
   47|  2.40k|totext_talink(ARGS_TOTEXT) {
   48|  2.40k|	isc_region_t dregion;
   49|  2.40k|	dns_name_t prev;
   50|  2.40k|	dns_name_t next;
   51|  2.40k|	dns_name_t prefix;
   52|  2.40k|	unsigned int opts;
   53|       |
   54|  2.40k|	REQUIRE(rdata->type == dns_rdatatype_talink);
  ------------------
  |  |  198|  2.40k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.40k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.40k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   55|  2.40k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.40k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.40k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.40k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|       |
   57|  2.40k|	dns_name_init(&prev);
   58|  2.40k|	dns_name_init(&next);
   59|  2.40k|	dns_name_init(&prefix);
   60|       |
   61|  2.40k|	dns_rdata_toregion(rdata, &dregion);
   62|       |
   63|  2.40k|	dns_name_fromregion(&prev, &dregion);
   64|  2.40k|	isc_region_consume(&dregion, name_length(&prev));
  ------------------
  |  |   50|  2.40k|	do {                              \
  |  |   51|  2.40k|		isc_region_t *_r = (r);   \
  |  |   52|  2.40k|		unsigned int  _l = (l);   \
  |  |   53|  2.40k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.40k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.40k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.40k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.40k|		_r->base += _l;           \
  |  |   55|  2.40k|		_r->length -= _l;         \
  |  |   56|  2.40k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.40k]
  |  |  ------------------
  ------------------
   65|       |
   66|  2.40k|	dns_name_fromregion(&next, &dregion);
   67|  2.40k|	isc_region_consume(&dregion, name_length(&next));
  ------------------
  |  |   50|  2.40k|	do {                              \
  |  |   51|  2.40k|		isc_region_t *_r = (r);   \
  |  |   52|  2.40k|		unsigned int  _l = (l);   \
  |  |   53|  2.40k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.40k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.40k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.40k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.40k|		_r->base += _l;           \
  |  |   55|  2.40k|		_r->length -= _l;         \
  |  |   56|  2.40k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.40k]
  |  |  ------------------
  ------------------
   68|       |
   69|  2.40k|	opts = name_prefix(&prev, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (69:9): [True: 0, False: 2.40k]
  ------------------
   70|  2.40k|							 : 0;
   71|  2.40k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  2.40k|	{                                  \
  |  |  277|  2.40k|		isc_result_t _r = (x);     \
  |  |  278|  2.40k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.40k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.40k|	}
  ------------------
   72|       |
   73|  2.40k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.40k|	{                                  \
  |  |  277|  2.40k|		isc_result_t _r = (x);     \
  |  |  278|  2.40k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.40k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.40k|	}
  ------------------
   74|       |
   75|  2.40k|	opts = name_prefix(&next, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 2.40k]
  ------------------
   76|  2.40k|							 : 0;
   77|  2.40k|	return dns_name_totext(&prefix, opts, target);
   78|  2.40k|}

rdata.c:fromwire_tkey:
  246|  3.42k|fromwire_tkey(ARGS_FROMWIRE) {
  247|  3.42k|	isc_region_t sr;
  248|  3.42k|	unsigned long n;
  249|  3.42k|	dns_name_t name;
  250|       |
  251|  3.42k|	REQUIRE(type == dns_rdatatype_tkey);
  ------------------
  |  |  198|  3.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.42k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|       |
  253|  3.42k|	UNUSED(type);
  ------------------
  |  |   69|  3.42k|#define UNUSED(x) (void)(x)
  ------------------
  254|  3.42k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.42k|#define UNUSED(x) (void)(x)
  ------------------
  255|       |
  256|  3.42k|	dctx = dns_decompress_setpermitted(dctx, false);
  257|       |
  258|       |	/*
  259|       |	 * Algorithm.
  260|       |	 */
  261|  3.42k|	dns_name_init(&name);
  262|  3.42k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  3.42k|	{                                  \
  |  |  277|  3.42k|		isc_result_t _r = (x);     \
  |  |  278|  3.42k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 243, False: 3.18k]
  |  |  ------------------
  |  |  279|    243|			return ((_r));     \
  |  |  280|    243|		}                          \
  |  |  281|  3.42k|	}
  ------------------
  263|       |
  264|       |	/*
  265|       |	 * Inception: 4
  266|       |	 * Expiration: 4
  267|       |	 * Mode: 2
  268|       |	 * Error: 2
  269|       |	 */
  270|  3.18k|	isc_buffer_activeregion(source, &sr);
  271|  3.18k|	if (sr.length < 12) {
  ------------------
  |  Branch (271:6): [True: 6, False: 3.17k]
  ------------------
  272|      6|		return ISC_R_UNEXPECTEDEND;
  273|      6|	}
  274|  3.17k|	RETERR(mem_tobuffer(target, sr.base, 12));
  ------------------
  |  |  276|  3.17k|	{                                  \
  |  |  277|  3.17k|		isc_result_t _r = (x);     \
  |  |  278|  3.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 202, False: 2.97k]
  |  |  ------------------
  |  |  279|    202|			return ((_r));     \
  |  |  280|    202|		}                          \
  |  |  281|  3.17k|	}
  ------------------
  275|  2.97k|	isc_region_consume(&sr, 12);
  ------------------
  |  |   50|  2.97k|	do {                              \
  |  |   51|  2.97k|		isc_region_t *_r = (r);   \
  |  |   52|  2.97k|		unsigned int  _l = (l);   \
  |  |   53|  2.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.97k|		_r->base += _l;           \
  |  |   55|  2.97k|		_r->length -= _l;         \
  |  |   56|  2.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.97k]
  |  |  ------------------
  ------------------
  276|  2.97k|	isc_buffer_forward(source, 12);
  277|       |
  278|       |	/*
  279|       |	 * Key Length + Key Data.
  280|       |	 */
  281|  2.97k|	if (sr.length < 2) {
  ------------------
  |  Branch (281:6): [True: 5, False: 2.97k]
  ------------------
  282|      5|		return ISC_R_UNEXPECTEDEND;
  283|      5|	}
  284|  2.97k|	n = uint16_fromregion(&sr);
  285|  2.97k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (285:6): [True: 26, False: 2.94k]
  ------------------
  286|     26|		return ISC_R_UNEXPECTEDEND;
  287|     26|	}
  288|  2.94k|	RETERR(mem_tobuffer(target, sr.base, n + 2));
  ------------------
  |  |  276|  2.94k|	{                                  \
  |  |  277|  2.94k|		isc_result_t _r = (x);     \
  |  |  278|  2.94k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 202, False: 2.74k]
  |  |  ------------------
  |  |  279|    202|			return ((_r));     \
  |  |  280|    202|		}                          \
  |  |  281|  2.94k|	}
  ------------------
  289|  2.74k|	isc_region_consume(&sr, n + 2);
  ------------------
  |  |   50|  2.74k|	do {                              \
  |  |   51|  2.74k|		isc_region_t *_r = (r);   \
  |  |   52|  2.74k|		unsigned int  _l = (l);   \
  |  |   53|  2.74k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.74k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.74k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.74k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.74k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.74k|		_r->base += _l;           \
  |  |   55|  2.74k|		_r->length -= _l;         \
  |  |   56|  2.74k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.74k]
  |  |  ------------------
  ------------------
  290|  2.74k|	isc_buffer_forward(source, n + 2);
  291|       |
  292|       |	/*
  293|       |	 * Other Length + Other Data.
  294|       |	 */
  295|  2.74k|	if (sr.length < 2) {
  ------------------
  |  Branch (295:6): [True: 6, False: 2.73k]
  ------------------
  296|      6|		return ISC_R_UNEXPECTEDEND;
  297|      6|	}
  298|  2.73k|	n = uint16_fromregion(&sr);
  299|  2.73k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (299:6): [True: 18, False: 2.72k]
  ------------------
  300|     18|		return ISC_R_UNEXPECTEDEND;
  301|     18|	}
  302|  2.72k|	isc_buffer_forward(source, n + 2);
  303|  2.72k|	return mem_tobuffer(target, sr.base, n + 2);
  304|  2.73k|}
rdata.c:towire_tkey:
  307|    961|towire_tkey(ARGS_TOWIRE) {
  308|    961|	isc_region_t sr;
  309|    961|	dns_name_t name;
  310|       |
  311|    961|	REQUIRE(rdata->type == dns_rdatatype_tkey);
  ------------------
  |  |  198|    961|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    961|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 961, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    961|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  312|    961|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    961|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    961|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 961, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    961|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  313|       |
  314|    961|	dns_compress_setpermitted(cctx, false);
  315|       |	/*
  316|       |	 * Algorithm.
  317|       |	 */
  318|    961|	dns_rdata_toregion(rdata, &sr);
  319|    961|	dns_name_init(&name);
  320|    961|	dns_name_fromregion(&name, &sr);
  321|    961|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    961|	{                                  \
  |  |  277|    961|		isc_result_t _r = (x);     \
  |  |  278|    961|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 960]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    961|	}
  ------------------
  322|    960|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|    960|	do {                              \
  |  |   51|    960|		isc_region_t *_r = (r);   \
  |  |   52|    960|		unsigned int  _l = (l);   \
  |  |   53|    960|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    960|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    960|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 960, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    960|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    960|		_r->base += _l;           \
  |  |   55|    960|		_r->length -= _l;         \
  |  |   56|    960|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 960]
  |  |  ------------------
  ------------------
  323|       |
  324|    960|	return mem_tobuffer(target, sr.base, sr.length);
  325|    961|}
rdata.c:totext_tkey:
  121|  1.91k|totext_tkey(ARGS_TOTEXT) {
  122|  1.91k|	isc_region_t sr, dr;
  123|  1.91k|	char buf[sizeof("4294967295 ")];
  124|  1.91k|	unsigned long n;
  125|  1.91k|	dns_name_t name;
  126|  1.91k|	dns_name_t prefix;
  127|  1.91k|	unsigned int opts;
  128|       |
  129|  1.91k|	REQUIRE(rdata->type == dns_rdatatype_tkey);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|  1.91k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|  1.91k|	dns_rdata_toregion(rdata, &sr);
  133|       |
  134|       |	/*
  135|       |	 * Algorithm.
  136|       |	 */
  137|  1.91k|	dns_name_init(&name);
  138|  1.91k|	dns_name_init(&prefix);
  139|  1.91k|	dns_name_fromregion(&name, &sr);
  140|  1.91k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (140:9): [True: 0, False: 1.91k]
  ------------------
  141|  1.91k|							 : 0;
  142|  1.91k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  143|  1.91k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  144|  1.91k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  145|       |
  146|       |	/*
  147|       |	 * Inception.
  148|       |	 */
  149|  1.91k|	n = uint32_fromregion(&sr);
  150|  1.91k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  151|  1.91k|	snprintf(buf, sizeof(buf), "%lu ", n);
  152|  1.91k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  153|       |
  154|       |	/*
  155|       |	 * Expiration.
  156|       |	 */
  157|  1.91k|	n = uint32_fromregion(&sr);
  158|  1.91k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  159|  1.91k|	snprintf(buf, sizeof(buf), "%lu ", n);
  160|  1.91k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  161|       |
  162|       |	/*
  163|       |	 * Mode.
  164|       |	 */
  165|  1.91k|	n = uint16_fromregion(&sr);
  166|  1.91k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  167|  1.91k|	snprintf(buf, sizeof(buf), "%lu ", n);
  168|  1.91k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  169|       |
  170|       |	/*
  171|       |	 * Error.
  172|       |	 */
  173|  1.91k|	n = uint16_fromregion(&sr);
  174|  1.91k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  175|  1.91k|	if (dns_tsigrcode_totext((dns_rcode_t)n, target) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (175:6): [True: 1.91k, False: 0]
  ------------------
  176|  1.91k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  177|  1.91k|	} else {
  178|      0|		snprintf(buf, sizeof(buf), "%lu ", n);
  179|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  180|      0|	}
  181|       |
  182|       |	/*
  183|       |	 * Key Size.
  184|       |	 */
  185|  1.91k|	n = uint16_fromregion(&sr);
  186|  1.91k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  187|  1.91k|	snprintf(buf, sizeof(buf), "%lu", n);
  188|  1.91k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  189|       |
  190|       |	/*
  191|       |	 * Key Data.
  192|       |	 */
  193|  1.91k|	REQUIRE(n <= sr.length);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  194|  1.91k|	dr = sr;
  195|  1.91k|	dr.length = n;
  196|  1.91k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.91k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (196:6): [True: 0, False: 1.91k]
  ------------------
  197|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  198|      0|	}
  199|  1.91k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  200|  1.91k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (200:6): [True: 0, False: 1.91k]
  ------------------
  201|      0|		RETERR(isc_base64_totext(&dr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  202|  1.91k|	} else {
  203|  1.91k|		RETERR(isc_base64_totext(&dr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  204|  1.91k|					 target));
  205|  1.91k|	}
  206|  1.91k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.91k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (206:6): [True: 0, False: 1.91k]
  ------------------
  207|      0|		RETERR(str_totext(" ) ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  208|  1.91k|	} else {
  209|  1.91k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  210|  1.91k|	}
  211|  1.91k|	isc_region_consume(&sr, n);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  212|       |
  213|       |	/*
  214|       |	 * Other Size.
  215|       |	 */
  216|  1.91k|	n = uint16_fromregion(&sr);
  217|  1.91k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.91k|	do {                              \
  |  |   51|  1.91k|		isc_region_t *_r = (r);   \
  |  |   52|  1.91k|		unsigned int  _l = (l);   \
  |  |   53|  1.91k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.91k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.91k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.91k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.91k|		_r->base += _l;           \
  |  |   55|  1.91k|		_r->length -= _l;         \
  |  |   56|  1.91k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.91k]
  |  |  ------------------
  ------------------
  218|  1.91k|	snprintf(buf, sizeof(buf), "%lu", n);
  219|  1.91k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.91k|	{                                  \
  |  |  277|  1.91k|		isc_result_t _r = (x);     \
  |  |  278|  1.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.91k|	}
  ------------------
  220|       |
  221|       |	/*
  222|       |	 * Other Data.
  223|       |	 */
  224|  1.91k|	REQUIRE(n <= sr.length);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  225|  1.91k|	if (n != 0U) {
  ------------------
  |  Branch (225:6): [True: 1.25k, False: 654]
  ------------------
  226|  1.25k|		dr = sr;
  227|  1.25k|		dr.length = n;
  228|  1.25k|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.25k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (228:7): [True: 0, False: 1.25k]
  ------------------
  229|      0|			RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  230|      0|		}
  231|  1.25k|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  1.25k|	{                                  \
  |  |  277|  1.25k|		isc_result_t _r = (x);     \
  |  |  278|  1.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.25k|	}
  ------------------
  232|  1.25k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (232:7): [True: 0, False: 1.25k]
  ------------------
  233|      0|			RETERR(isc_base64_totext(&dr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  234|  1.25k|		} else {
  235|  1.25k|			RETERR(isc_base64_totext(&dr, tctx->width - 2,
  ------------------
  |  |  276|  1.25k|	{                                  \
  |  |  277|  1.25k|		isc_result_t _r = (x);     \
  |  |  278|  1.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.25k|	}
  ------------------
  236|  1.25k|						 tctx->linebreak, target));
  237|  1.25k|		}
  238|  1.25k|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.25k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (238:7): [True: 0, False: 1.25k]
  ------------------
  239|      0|			RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  240|      0|		}
  241|  1.25k|	}
  242|  1.91k|	return ISC_R_SUCCESS;
  243|  1.91k|}

rdata.c:fromwire_tlsa:
  156|  1.95k|fromwire_tlsa(ARGS_FROMWIRE) {
  157|  1.95k|	REQUIRE(type == dns_rdatatype_tlsa);
  ------------------
  |  |  198|  1.95k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.95k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.95k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.95k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  158|       |
  159|  1.95k|	return generic_fromwire_tlsa(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.95k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  160|  1.95k|}
rdata.c:generic_fromwire_tlsa:
  123|  2.97k|generic_fromwire_tlsa(ARGS_FROMWIRE) {
  124|  2.97k|	isc_region_t sr;
  125|       |
  126|  2.97k|	UNUSED(type);
  ------------------
  |  |   69|  2.97k|#define UNUSED(x) (void)(x)
  ------------------
  127|  2.97k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.97k|#define UNUSED(x) (void)(x)
  ------------------
  128|  2.97k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.97k|#define UNUSED(x) (void)(x)
  ------------------
  129|       |
  130|  2.97k|	isc_buffer_activeregion(source, &sr);
  131|       |
  132|       |	/* Usage(1), Selector(1), Type(1), Data(1+) */
  133|  2.97k|	if (sr.length < 4) {
  ------------------
  |  Branch (133:6): [True: 6, False: 2.96k]
  ------------------
  134|      6|		return ISC_R_UNEXPECTEDEND;
  135|      6|	}
  136|       |
  137|  2.96k|	isc_buffer_forward(source, sr.length);
  138|  2.96k|	return mem_tobuffer(target, sr.base, sr.length);
  139|  2.97k|}
rdata.c:towire_tlsa:
  163|    721|towire_tlsa(ARGS_TOWIRE) {
  164|    721|	isc_region_t sr;
  165|       |
  166|    721|	REQUIRE(rdata->type == dns_rdatatype_tlsa);
  ------------------
  |  |  198|    721|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    721|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 721, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    721|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  167|    721|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    721|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    721|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 721, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    721|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  168|       |
  169|    721|	UNUSED(cctx);
  ------------------
  |  |   69|    721|#define UNUSED(x) (void)(x)
  ------------------
  170|       |
  171|    721|	dns_rdata_toregion(rdata, &sr);
  172|    721|	return mem_tobuffer(target, sr.base, sr.length);
  173|    721|}
rdata.c:totext_tlsa:
  149|  1.42k|totext_tlsa(ARGS_TOTEXT) {
  150|  1.42k|	REQUIRE(rdata->type == dns_rdatatype_tlsa);
  ------------------
  |  |  198|  1.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.42k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  151|       |
  152|  1.42k|	return generic_totext_tlsa(CALL_TOTEXT);
  ------------------
  |  |   85|  1.42k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  153|  1.42k|}
rdata.c:generic_totext_tlsa:
   68|  2.31k|generic_totext_tlsa(ARGS_TOTEXT) {
   69|  2.31k|	isc_region_t sr;
   70|  2.31k|	char buf[sizeof("64000 ")];
   71|  2.31k|	unsigned int n;
   72|       |
   73|  2.31k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|       |
   75|  2.31k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.31k|#define UNUSED(x) (void)(x)
  ------------------
   76|       |
   77|  2.31k|	dns_rdata_toregion(rdata, &sr);
   78|       |
   79|       |	/*
   80|       |	 * Certificate Usage.
   81|       |	 */
   82|  2.31k|	n = uint8_fromregion(&sr);
   83|  2.31k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.31k|	do {                              \
  |  |   51|  2.31k|		isc_region_t *_r = (r);   \
  |  |   52|  2.31k|		unsigned int  _l = (l);   \
  |  |   53|  2.31k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.31k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.31k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.31k|		_r->base += _l;           \
  |  |   55|  2.31k|		_r->length -= _l;         \
  |  |   56|  2.31k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.31k]
  |  |  ------------------
  ------------------
   84|  2.31k|	snprintf(buf, sizeof(buf), "%u ", n);
   85|  2.31k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.31k|	{                                  \
  |  |  277|  2.31k|		isc_result_t _r = (x);     \
  |  |  278|  2.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.31k|	}
  ------------------
   86|       |
   87|       |	/*
   88|       |	 * Selector.
   89|       |	 */
   90|  2.31k|	n = uint8_fromregion(&sr);
   91|  2.31k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.31k|	do {                              \
  |  |   51|  2.31k|		isc_region_t *_r = (r);   \
  |  |   52|  2.31k|		unsigned int  _l = (l);   \
  |  |   53|  2.31k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.31k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.31k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.31k|		_r->base += _l;           \
  |  |   55|  2.31k|		_r->length -= _l;         \
  |  |   56|  2.31k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.31k]
  |  |  ------------------
  ------------------
   92|  2.31k|	snprintf(buf, sizeof(buf), "%u ", n);
   93|  2.31k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.31k|	{                                  \
  |  |  277|  2.31k|		isc_result_t _r = (x);     \
  |  |  278|  2.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.31k|	}
  ------------------
   94|       |
   95|       |	/*
   96|       |	 * Matching type.
   97|       |	 */
   98|  2.31k|	n = uint8_fromregion(&sr);
   99|  2.31k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.31k|	do {                              \
  |  |   51|  2.31k|		isc_region_t *_r = (r);   \
  |  |   52|  2.31k|		unsigned int  _l = (l);   \
  |  |   53|  2.31k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.31k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.31k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.31k|		_r->base += _l;           \
  |  |   55|  2.31k|		_r->length -= _l;         \
  |  |   56|  2.31k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.31k]
  |  |  ------------------
  ------------------
  100|  2.31k|	snprintf(buf, sizeof(buf), "%u", n);
  101|  2.31k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.31k|	{                                  \
  |  |  277|  2.31k|		isc_result_t _r = (x);     \
  |  |  278|  2.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.31k|	}
  ------------------
  102|       |
  103|       |	/*
  104|       |	 * Certificate Association Data.
  105|       |	 */
  106|  2.31k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.31k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (106:6): [True: 0, False: 2.31k]
  ------------------
  107|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  108|      0|	}
  109|  2.31k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  2.31k|	{                                  \
  |  |  277|  2.31k|		isc_result_t _r = (x);     \
  |  |  278|  2.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.31k|	}
  ------------------
  110|  2.31k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (110:6): [True: 0, False: 2.31k]
  ------------------
  111|      0|		RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  112|  2.31k|	} else {
  113|  2.31k|		RETERR(isc_hex_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  2.31k|	{                                  \
  |  |  277|  2.31k|		isc_result_t _r = (x);     \
  |  |  278|  2.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.31k|	}
  ------------------
  114|  2.31k|				      target));
  115|  2.31k|	}
  116|  2.31k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.31k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (116:6): [True: 0, False: 2.31k]
  ------------------
  117|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  118|      0|	}
  119|  2.31k|	return ISC_R_SUCCESS;
  120|  2.31k|}

rdata.c:fromwire_txt:
  100|  1.36k|fromwire_txt(ARGS_FROMWIRE) {
  101|  1.36k|	REQUIRE(type == dns_rdatatype_txt);
  ------------------
  |  |  198|  1.36k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.36k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.36k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.36k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|       |
  103|  1.36k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.36k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  104|  1.36k|}
rdata.c:generic_fromwire_txt:
   73|  7.87k|generic_fromwire_txt(ARGS_FROMWIRE) {
   74|  7.87k|	UNUSED(type);
  ------------------
  |  |   69|  7.87k|#define UNUSED(x) (void)(x)
  ------------------
   75|  7.87k|	UNUSED(dctx);
  ------------------
  |  |   69|  7.87k|#define UNUSED(x) (void)(x)
  ------------------
   76|  7.87k|	UNUSED(rdclass);
  ------------------
  |  |   69|  7.87k|#define UNUSED(x) (void)(x)
  ------------------
   77|       |
   78|  49.8k|	do {
   79|  49.8k|		RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  49.8k|	{                                  \
  |  |  277|  49.8k|		isc_result_t _r = (x);     \
  |  |  278|  49.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 860, False: 48.9k]
  |  |  ------------------
  |  |  279|    860|			return ((_r));     \
  |  |  280|    860|		}                          \
  |  |  281|  49.8k|	}
  ------------------
   80|  48.9k|	} while (!buffer_empty(source));
  ------------------
  |  Branch (80:11): [True: 41.9k, False: 7.01k]
  ------------------
   81|  7.01k|	return ISC_R_SUCCESS;
   82|  7.87k|}
rdata.c:towire_txt:
  107|    586|towire_txt(ARGS_TOWIRE) {
  108|    586|	REQUIRE(rdata->type == dns_rdatatype_txt);
  ------------------
  |  |  198|    586|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    586|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 586, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    586|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  109|       |
  110|    586|	UNUSED(cctx);
  ------------------
  |  |   69|    586|#define UNUSED(x) (void)(x)
  ------------------
  111|       |
  112|    586|	return mem_tobuffer(target, rdata->data, rdata->length);
  113|    586|}
rdata.c:totext_txt:
   92|  1.15k|totext_txt(ARGS_TOTEXT) {
   93|  1.15k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.15k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.15k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.15k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   94|  1.15k|	REQUIRE(rdata->type == dns_rdatatype_txt);
  ------------------
  |  |  198|  1.15k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.15k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.15k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|       |
   96|  1.15k|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|  1.15k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   97|  1.15k|}
rdata.c:generic_totext_txt:
   55|  5.85k|generic_totext_txt(ARGS_TOTEXT) {
   56|  5.85k|	isc_region_t region;
   57|       |
   58|  5.85k|	UNUSED(tctx);
  ------------------
  |  |   69|  5.85k|#define UNUSED(x) (void)(x)
  ------------------
   59|       |
   60|  5.85k|	dns_rdata_toregion(rdata, &region);
   61|       |
   62|  43.3k|	while (region.length > 0) {
  ------------------
  |  Branch (62:9): [True: 37.4k, False: 5.85k]
  ------------------
   63|  37.4k|		RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  37.4k|	{                                  \
  |  |  277|  37.4k|		isc_result_t _r = (x);     \
  |  |  278|  37.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 37.4k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  37.4k|	}
  ------------------
   64|  37.4k|		if (region.length > 0) {
  ------------------
  |  Branch (64:7): [True: 31.6k, False: 5.85k]
  ------------------
   65|  31.6k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  31.6k|	{                                  \
  |  |  277|  31.6k|		isc_result_t _r = (x);     \
  |  |  278|  31.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 31.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  31.6k|	}
  ------------------
   66|  31.6k|		}
   67|  37.4k|	}
   68|       |
   69|  5.85k|	return ISC_R_SUCCESS;
   70|  5.85k|}

rdata.c:fromwire_uri:
  100|  1.71k|fromwire_uri(ARGS_FROMWIRE) {
  101|  1.71k|	isc_region_t region;
  102|       |
  103|  1.71k|	REQUIRE(type == dns_rdatatype_uri);
  ------------------
  |  |  198|  1.71k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.71k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.71k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.71k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|       |
  105|  1.71k|	UNUSED(type);
  ------------------
  |  |   69|  1.71k|#define UNUSED(x) (void)(x)
  ------------------
  106|  1.71k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.71k|#define UNUSED(x) (void)(x)
  ------------------
  107|  1.71k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.71k|#define UNUSED(x) (void)(x)
  ------------------
  108|       |
  109|       |	/*
  110|       |	 * Priority, weight
  111|       |	 */
  112|  1.71k|	isc_buffer_activeregion(source, &region);
  113|  1.71k|	if (region.length < 4) {
  ------------------
  |  Branch (113:6): [True: 6, False: 1.70k]
  ------------------
  114|      6|		return ISC_R_UNEXPECTEDEND;
  115|      6|	}
  116|       |
  117|       |	/*
  118|       |	 * Priority, weight and target URI
  119|       |	 */
  120|  1.70k|	isc_buffer_forward(source, region.length);
  121|  1.70k|	return mem_tobuffer(target, region.base, region.length);
  122|  1.71k|}
rdata.c:towire_uri:
  125|    740|towire_uri(ARGS_TOWIRE) {
  126|    740|	isc_region_t region;
  127|       |
  128|    740|	REQUIRE(rdata->type == dns_rdatatype_uri);
  ------------------
  |  |  198|    740|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    740|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 740, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    740|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|    740|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    740|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    740|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 740, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    740|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|    740|	UNUSED(cctx);
  ------------------
  |  |   69|    740|#define UNUSED(x) (void)(x)
  ------------------
  132|       |
  133|    740|	dns_rdata_toregion(rdata, &region);
  134|    740|	return mem_tobuffer(target, region.base, region.length);
  135|    740|}
rdata.c:totext_uri:
   64|  1.43k|totext_uri(ARGS_TOTEXT) {
   65|  1.43k|	isc_region_t region;
   66|  1.43k|	unsigned short priority, weight;
   67|  1.43k|	char buf[sizeof("65000 ")];
   68|       |
   69|  1.43k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.43k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.43k|	REQUIRE(rdata->type == dns_rdatatype_uri);
  ------------------
  |  |  198|  1.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|  1.43k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|       |
   74|  1.43k|	dns_rdata_toregion(rdata, &region);
   75|       |
   76|       |	/*
   77|       |	 * Priority
   78|       |	 */
   79|  1.43k|	priority = uint16_fromregion(&region);
   80|  1.43k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.43k|	do {                              \
  |  |   51|  1.43k|		isc_region_t *_r = (r);   \
  |  |   52|  1.43k|		unsigned int  _l = (l);   \
  |  |   53|  1.43k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.43k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.43k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.43k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.43k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.43k|		_r->base += _l;           \
  |  |   55|  1.43k|		_r->length -= _l;         \
  |  |   56|  1.43k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.43k]
  |  |  ------------------
  ------------------
   81|  1.43k|	snprintf(buf, sizeof(buf), "%u ", priority);
   82|  1.43k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.43k|	{                                  \
  |  |  277|  1.43k|		isc_result_t _r = (x);     \
  |  |  278|  1.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.43k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.43k|	}
  ------------------
   83|       |
   84|       |	/*
   85|       |	 * Weight
   86|       |	 */
   87|  1.43k|	weight = uint16_fromregion(&region);
   88|  1.43k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.43k|	do {                              \
  |  |   51|  1.43k|		isc_region_t *_r = (r);   \
  |  |   52|  1.43k|		unsigned int  _l = (l);   \
  |  |   53|  1.43k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.43k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.43k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.43k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.43k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.43k|		_r->base += _l;           \
  |  |   55|  1.43k|		_r->length -= _l;         \
  |  |   56|  1.43k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.43k]
  |  |  ------------------
  ------------------
   89|  1.43k|	snprintf(buf, sizeof(buf), "%u ", weight);
   90|  1.43k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.43k|	{                                  \
  |  |  277|  1.43k|		isc_result_t _r = (x);     \
  |  |  278|  1.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.43k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.43k|	}
  ------------------
   91|       |
   92|       |	/*
   93|       |	 * Target URI
   94|       |	 */
   95|  1.43k|	RETERR(multitxt_totext(&region, target));
  ------------------
  |  |  276|  1.43k|	{                                  \
  |  |  277|  1.43k|		isc_result_t _r = (x);     \
  |  |  278|  1.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.43k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.43k|	}
  ------------------
   96|  1.43k|	return ISC_R_SUCCESS;
   97|  1.43k|}

rdata.c:fromwire_wallet:
   35|  1.35k|fromwire_wallet(ARGS_FROMWIRE) {
   36|  1.35k|	REQUIRE(type == dns_rdatatype_wallet);
  ------------------
  |  |  198|  1.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.35k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.35k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.35k|}
rdata.c:towire_wallet:
   42|    485|towire_wallet(ARGS_TOWIRE) {
   43|    485|	REQUIRE(rdata->type == dns_rdatatype_wallet);
  ------------------
  |  |  198|    485|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    485|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 485, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    485|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    485|	UNUSED(cctx);
  ------------------
  |  |   69|    485|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    485|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    485|}
rdata.c:totext_wallet:
   27|    959|totext_wallet(ARGS_TOTEXT) {
   28|    959|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    959|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    959|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 959, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    959|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    959|	REQUIRE(rdata->type == dns_rdatatype_wallet);
  ------------------
  |  |  198|    959|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    959|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 959, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    959|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    959|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    959|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    959|}

rdata.c:fromwire_x25:
   63|    696|fromwire_x25(ARGS_FROMWIRE) {
   64|    696|	isc_region_t sr;
   65|    696|	unsigned int i;
   66|       |
   67|    696|	REQUIRE(type == dns_rdatatype_x25);
  ------------------
  |  |  198|    696|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    696|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 696, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    696|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|    696|	UNUSED(type);
  ------------------
  |  |   69|    696|#define UNUSED(x) (void)(x)
  ------------------
   70|    696|	UNUSED(dctx);
  ------------------
  |  |   69|    696|#define UNUSED(x) (void)(x)
  ------------------
   71|    696|	UNUSED(rdclass);
  ------------------
  |  |   69|    696|#define UNUSED(x) (void)(x)
  ------------------
   72|       |
   73|    696|	isc_buffer_activeregion(source, &sr);
   74|    696|	if (sr.length < 5 || sr.base[0] != (sr.length - 1)) {
  ------------------
  |  Branch (74:6): [True: 6, False: 690]
  |  Branch (74:23): [True: 14, False: 676]
  ------------------
   75|     20|		return DNS_R_FORMERR;
   76|     20|	}
   77|  3.51k|	for (i = 1; i < sr.length; i++) {
  ------------------
  |  Branch (77:14): [True: 2.85k, False: 665]
  ------------------
   78|  2.85k|		if (sr.base[i] < 0x30 || sr.base[i] > 0x39) {
  ------------------
  |  Branch (78:7): [True: 6, False: 2.84k]
  |  Branch (78:28): [True: 5, False: 2.84k]
  ------------------
   79|     11|			return DNS_R_FORMERR;
   80|     11|		}
   81|  2.85k|	}
   82|    665|	return txt_fromwire(source, target);
   83|    676|}
rdata.c:towire_x25:
   86|    344|towire_x25(ARGS_TOWIRE) {
   87|    344|	UNUSED(cctx);
  ------------------
  |  |   69|    344|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    344|	REQUIRE(rdata->type == dns_rdatatype_x25);
  ------------------
  |  |  198|    344|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    344|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 344, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    344|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|    344|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    344|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    344|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 344, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    344|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|       |
   92|    344|	return mem_tobuffer(target, rdata->data, rdata->length);
   93|    344|}
rdata.c:totext_x25:
   50|    650|totext_x25(ARGS_TOTEXT) {
   51|    650|	isc_region_t region;
   52|       |
   53|    650|	UNUSED(tctx);
  ------------------
  |  |   69|    650|#define UNUSED(x) (void)(x)
  ------------------
   54|       |
   55|    650|	REQUIRE(rdata->type == dns_rdatatype_x25);
  ------------------
  |  |  198|    650|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    650|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 650, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    650|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    650|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    650|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    650|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 650, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    650|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|    650|	dns_rdata_toregion(rdata, &region);
   59|       |	return txt_totext(&region, true, target);
   60|    650|}

rdata.c:fromwire_zonemd:
  144|  1.68k|fromwire_zonemd(ARGS_FROMWIRE) {
  145|  1.68k|	isc_region_t sr;
  146|  1.68k|	size_t digestlen = 0;
  147|       |
  148|  1.68k|	UNUSED(type);
  ------------------
  |  |   69|  1.68k|#define UNUSED(x) (void)(x)
  ------------------
  149|  1.68k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.68k|#define UNUSED(x) (void)(x)
  ------------------
  150|  1.68k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.68k|#define UNUSED(x) (void)(x)
  ------------------
  151|       |
  152|  1.68k|	isc_buffer_activeregion(source, &sr);
  153|       |
  154|       |	/*
  155|       |	 * If we do not recognize the digest type, ensure that the digest
  156|       |	 * meets minimum length (12).
  157|       |	 *
  158|       |	 * If we do recognize the digest type, ensure that the digest is of the
  159|       |	 * correct length.
  160|       |	 */
  161|  1.68k|	if (sr.length < 18) {
  ------------------
  |  Branch (161:6): [True: 7, False: 1.68k]
  ------------------
  162|      7|		return ISC_R_UNEXPECTEDEND;
  163|      7|	}
  164|       |
  165|  1.68k|	switch (sr.base[5]) {
  166|    267|	case DNS_ZONEMD_DIGEST_SHA384:
  ------------------
  |  | 1722|    267|#define DNS_ZONEMD_DIGEST_SHA384 (1)
  ------------------
  |  Branch (166:2): [True: 267, False: 1.41k]
  ------------------
  167|    267|		digestlen = ISC_SHA384_DIGESTLENGTH;
  ------------------
  |  |   56|    267|#define ISC_SHA384_DIGESTLENGTH 48
  ------------------
  168|    267|		break;
  169|    205|	case DNS_ZONEMD_DIGEST_SHA512:
  ------------------
  |  | 1723|    205|#define DNS_ZONEMD_DIGEST_SHA512 (2)
  ------------------
  |  Branch (169:2): [True: 205, False: 1.47k]
  ------------------
  170|    205|		digestlen = ISC_SHA512_DIGESTLENGTH;
  ------------------
  |  |   58|    205|#define ISC_SHA512_DIGESTLENGTH 64
  ------------------
  171|    205|		break;
  172|  1.21k|	default:
  ------------------
  |  Branch (172:2): [True: 1.21k, False: 472]
  ------------------
  173|  1.21k|		break;
  174|  1.68k|	}
  175|       |
  176|  1.68k|	if (digestlen != 0 && sr.length < 6 + digestlen) {
  ------------------
  |  Branch (176:6): [True: 472, False: 1.21k]
  |  Branch (176:24): [True: 4, False: 468]
  ------------------
  177|      4|		return ISC_R_UNEXPECTEDEND;
  178|      4|	}
  179|       |
  180|       |	/*
  181|       |	 * Only specify the number of octets to consume if we recognize the
  182|       |	 * digest type.
  183|       |	 *
  184|       |	 * If there is extra data, dns_rdata_fromwire() will detect that.
  185|       |	 */
  186|  1.67k|	if (digestlen != 0) {
  ------------------
  |  Branch (186:6): [True: 468, False: 1.21k]
  ------------------
  187|    468|		sr.length = 6 + digestlen;
  188|    468|	}
  189|       |
  190|  1.67k|	isc_buffer_forward(source, sr.length);
  191|  1.67k|	return mem_tobuffer(target, sr.base, sr.length);
  192|  1.68k|}
rdata.c:towire_zonemd:
  195|    604|towire_zonemd(ARGS_TOWIRE) {
  196|    604|	isc_region_t sr;
  197|       |
  198|    604|	REQUIRE(rdata->type == dns_rdatatype_zonemd);
  ------------------
  |  |  198|    604|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    604|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 604, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    604|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  199|    604|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    604|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    604|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 604, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    604|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  200|       |
  201|    604|	UNUSED(cctx);
  ------------------
  |  |   69|    604|#define UNUSED(x) (void)(x)
  ------------------
  202|       |
  203|    604|	dns_rdata_toregion(rdata, &sr);
  204|    604|	return mem_tobuffer(target, sr.base, sr.length);
  205|    604|}
rdata.c:totext_zonemd:
   81|  1.20k|totext_zonemd(ARGS_TOTEXT) {
   82|  1.20k|	isc_region_t sr;
   83|  1.20k|	char buf[sizeof("0123456789")];
   84|  1.20k|	unsigned long num;
   85|       |
   86|  1.20k|	REQUIRE(rdata->length > 6);
  ------------------
  |  |  198|  1.20k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.20k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.20k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   87|       |
   88|  1.20k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.20k|#define UNUSED(x) (void)(x)
  ------------------
   89|       |
   90|  1.20k|	dns_rdata_toregion(rdata, &sr);
   91|       |
   92|       |	/*
   93|       |	 * Zone Serial.
   94|       |	 */
   95|  1.20k|	num = uint32_fromregion(&sr);
   96|  1.20k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.20k|	do {                              \
  |  |   51|  1.20k|		isc_region_t *_r = (r);   \
  |  |   52|  1.20k|		unsigned int  _l = (l);   \
  |  |   53|  1.20k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.20k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.20k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.20k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.20k|		_r->base += _l;           \
  |  |   55|  1.20k|		_r->length -= _l;         \
  |  |   56|  1.20k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.20k]
  |  |  ------------------
  ------------------
   97|  1.20k|	snprintf(buf, sizeof(buf), "%lu", num);
   98|  1.20k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
   99|       |
  100|  1.20k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  101|       |
  102|       |	/*
  103|       |	 * Digest scheme.
  104|       |	 */
  105|  1.20k|	num = uint8_fromregion(&sr);
  106|  1.20k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.20k|	do {                              \
  |  |   51|  1.20k|		isc_region_t *_r = (r);   \
  |  |   52|  1.20k|		unsigned int  _l = (l);   \
  |  |   53|  1.20k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.20k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.20k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.20k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.20k|		_r->base += _l;           \
  |  |   55|  1.20k|		_r->length -= _l;         \
  |  |   56|  1.20k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.20k]
  |  |  ------------------
  ------------------
  107|  1.20k|	snprintf(buf, sizeof(buf), "%lu", num);
  108|  1.20k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  109|       |
  110|  1.20k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  111|       |
  112|       |	/*
  113|       |	 * Digest type.
  114|       |	 */
  115|  1.20k|	num = uint8_fromregion(&sr);
  116|  1.20k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.20k|	do {                              \
  |  |   51|  1.20k|		isc_region_t *_r = (r);   \
  |  |   52|  1.20k|		unsigned int  _l = (l);   \
  |  |   53|  1.20k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.20k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.20k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.20k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.20k|		_r->base += _l;           \
  |  |   55|  1.20k|		_r->length -= _l;         \
  |  |   56|  1.20k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.20k]
  |  |  ------------------
  ------------------
  117|  1.20k|	snprintf(buf, sizeof(buf), "%lu", num);
  118|  1.20k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  119|       |
  120|       |	/*
  121|       |	 * Digest.
  122|       |	 */
  123|  1.20k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.20k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (123:6): [True: 0, False: 1.20k]
  ------------------
  124|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  125|      0|	}
  126|  1.20k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  127|  1.20k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  1.20k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (127:6): [True: 1.20k, False: 0]
  ------------------
  128|  1.20k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (128:7): [True: 0, False: 1.20k]
  ------------------
  129|      0|			RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  130|  1.20k|		} else {
  131|  1.20k|			RETERR(isc_hex_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  132|  1.20k|					      tctx->linebreak, target));
  133|  1.20k|		}
  134|  1.20k|	} else {
  135|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  136|      0|	}
  137|  1.20k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.20k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (137:6): [True: 0, False: 1.20k]
  ------------------
  138|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  139|      0|	}
  140|  1.20k|	return ISC_R_SUCCESS;
  141|  1.20k|}

rdata.c:fromwire_hs_a:
   65|  1.22k|fromwire_hs_a(ARGS_FROMWIRE) {
   66|  1.22k|	isc_region_t sregion;
   67|  1.22k|	isc_region_t tregion;
   68|       |
   69|  1.22k|	REQUIRE(type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   70|  1.22k|	REQUIRE(rdclass == dns_rdataclass_hs);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|       |
   72|  1.22k|	UNUSED(type);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
   73|  1.22k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
   74|  1.22k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
   75|       |
   76|  1.22k|	isc_buffer_activeregion(source, &sregion);
   77|  1.22k|	isc_buffer_availableregion(target, &tregion);
   78|  1.22k|	if (sregion.length < 4) {
  ------------------
  |  Branch (78:6): [True: 6, False: 1.22k]
  ------------------
   79|      6|		return ISC_R_UNEXPECTEDEND;
   80|      6|	}
   81|  1.22k|	if (tregion.length < 4) {
  ------------------
  |  Branch (81:6): [True: 199, False: 1.02k]
  ------------------
   82|    199|		return ISC_R_NOSPACE;
   83|    199|	}
   84|       |
   85|  1.02k|	memmove(tregion.base, sregion.base, 4);
   86|  1.02k|	isc_buffer_forward(source, 4);
   87|  1.02k|	isc_buffer_add(target, 4);
   88|  1.02k|	return ISC_R_SUCCESS;
   89|  1.22k|}
rdata.c:towire_hs_a:
   92|    339|towire_hs_a(ARGS_TOWIRE) {
   93|    339|	isc_region_t region;
   94|       |
   95|    339|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    339|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    339|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 339, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    339|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|    339|	REQUIRE(rdata->rdclass == dns_rdataclass_hs);
  ------------------
  |  |  198|    339|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    339|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 339, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    339|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   97|    339|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|    339|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    339|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 339, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    339|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   98|       |
   99|    339|	UNUSED(cctx);
  ------------------
  |  |   69|    339|#define UNUSED(x) (void)(x)
  ------------------
  100|       |
  101|    339|	isc_buffer_availableregion(target, &region);
  102|    339|	if (region.length < rdata->length) {
  ------------------
  |  Branch (102:6): [True: 1, False: 338]
  ------------------
  103|      1|		return ISC_R_NOSPACE;
  104|      1|	}
  105|    338|	memmove(region.base, rdata->data, rdata->length);
  106|    338|	isc_buffer_add(target, 4);
  107|    338|	return ISC_R_SUCCESS;
  108|    339|}
rdata.c:totext_hs_a:
   51|    672|totext_hs_a(ARGS_TOTEXT) {
   52|    672|	isc_region_t region;
   53|       |
   54|    672|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    672|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    672|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 672, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    672|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   55|    672|	REQUIRE(rdata->rdclass == dns_rdataclass_hs);
  ------------------
  |  |  198|    672|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    672|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 672, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    672|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    672|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|    672|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    672|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 672, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    672|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|    672|	UNUSED(tctx);
  ------------------
  |  |   69|    672|#define UNUSED(x) (void)(x)
  ------------------
   59|       |
   60|    672|	dns_rdata_toregion(rdata, &region);
   61|       |	return inet_totext(AF_INET, tctx->flags, &region, target);
   62|    672|}

rdata.c:fromwire_in_a6:
  152|  1.88k|fromwire_in_a6(ARGS_FROMWIRE) {
  153|  1.88k|	isc_region_t sr;
  154|  1.88k|	unsigned char prefixlen;
  155|  1.88k|	unsigned char octets;
  156|  1.88k|	unsigned char mask;
  157|  1.88k|	dns_name_t name;
  158|       |
  159|  1.88k|	REQUIRE(type == dns_rdatatype_a6);
  ------------------
  |  |  198|  1.88k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.88k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.88k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.88k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  160|  1.88k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.88k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.88k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.88k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.88k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  161|       |
  162|  1.88k|	UNUSED(type);
  ------------------
  |  |   69|  1.88k|#define UNUSED(x) (void)(x)
  ------------------
  163|  1.88k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.88k|#define UNUSED(x) (void)(x)
  ------------------
  164|       |
  165|  1.88k|	dctx = dns_decompress_setpermitted(dctx, false);
  166|       |
  167|  1.88k|	isc_buffer_activeregion(source, &sr);
  168|       |	/*
  169|       |	 * Prefix length.
  170|       |	 */
  171|  1.88k|	if (sr.length < 1) {
  ------------------
  |  Branch (171:6): [True: 2, False: 1.88k]
  ------------------
  172|      2|		return ISC_R_UNEXPECTEDEND;
  173|      2|	}
  174|  1.88k|	prefixlen = sr.base[0];
  175|  1.88k|	if (prefixlen > 128) {
  ------------------
  |  Branch (175:6): [True: 4, False: 1.88k]
  ------------------
  176|      4|		return ISC_R_RANGE;
  177|      4|	}
  178|  1.88k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.88k|	do {                              \
  |  |   51|  1.88k|		isc_region_t *_r = (r);   \
  |  |   52|  1.88k|		unsigned int  _l = (l);   \
  |  |   53|  1.88k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.88k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.88k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.88k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.88k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.88k|		_r->base += _l;           \
  |  |   55|  1.88k|		_r->length -= _l;         \
  |  |   56|  1.88k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.88k]
  |  |  ------------------
  ------------------
  179|  1.88k|	RETERR(mem_tobuffer(target, &prefixlen, 1));
  ------------------
  |  |  276|  1.88k|	{                                  \
  |  |  277|  1.88k|		isc_result_t _r = (x);     \
  |  |  278|  1.88k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 74, False: 1.80k]
  |  |  ------------------
  |  |  279|     74|			return ((_r));     \
  |  |  280|     74|		}                          \
  |  |  281|  1.88k|	}
  ------------------
  180|  1.80k|	isc_buffer_forward(source, 1);
  181|       |
  182|       |	/*
  183|       |	 * Suffix.
  184|       |	 */
  185|  1.80k|	if (prefixlen != 128) {
  ------------------
  |  Branch (185:6): [True: 1.12k, False: 687]
  ------------------
  186|  1.12k|		octets = 16 - prefixlen / 8;
  187|  1.12k|		if (sr.length < octets) {
  ------------------
  |  Branch (187:7): [True: 17, False: 1.10k]
  ------------------
  188|     17|			return ISC_R_UNEXPECTEDEND;
  189|     17|		}
  190|  1.10k|		mask = 0xff >> (prefixlen % 8);
  191|  1.10k|		if ((sr.base[0] & ~mask) != 0) {
  ------------------
  |  Branch (191:7): [True: 12, False: 1.09k]
  ------------------
  192|     12|			return DNS_R_FORMERR;
  193|     12|		}
  194|  1.09k|		RETERR(mem_tobuffer(target, sr.base, octets));
  ------------------
  |  |  276|  1.09k|	{                                  \
  |  |  277|  1.09k|		isc_result_t _r = (x);     \
  |  |  278|  1.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 74, False: 1.01k]
  |  |  ------------------
  |  |  279|     74|			return ((_r));     \
  |  |  280|     74|		}                          \
  |  |  281|  1.09k|	}
  ------------------
  195|  1.01k|		isc_buffer_forward(source, octets);
  196|  1.01k|	}
  197|       |
  198|  1.70k|	if (prefixlen == 0) {
  ------------------
  |  Branch (198:6): [True: 799, False: 907]
  ------------------
  199|    799|		return ISC_R_SUCCESS;
  200|    799|	}
  201|       |
  202|    907|	dns_name_init(&name);
  203|    907|	return dns_name_fromwire(&name, source, dctx, target);
  204|  1.70k|}
rdata.c:towire_in_a6:
  207|    767|towire_in_a6(ARGS_TOWIRE) {
  208|    767|	isc_region_t sr;
  209|    767|	dns_name_t name;
  210|    767|	unsigned char prefixlen;
  211|    767|	unsigned char octets;
  212|       |
  213|    767|	REQUIRE(rdata->type == dns_rdatatype_a6);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  214|    767|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  215|    767|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  216|       |
  217|    767|	dns_compress_setpermitted(cctx, false);
  218|    767|	dns_rdata_toregion(rdata, &sr);
  219|    767|	prefixlen = sr.base[0];
  220|    767|	INSIST(prefixlen <= 128);
  ------------------
  |  |  202|    767|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    767|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    767|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  221|       |
  222|    767|	octets = 1 + 16 - prefixlen / 8;
  223|    767|	RETERR(mem_tobuffer(target, sr.base, octets));
  ------------------
  |  |  276|    767|	{                                  \
  |  |  277|    767|		isc_result_t _r = (x);     \
  |  |  278|    767|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 766]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    767|	}
  ------------------
  224|    766|	isc_region_consume(&sr, octets);
  ------------------
  |  |   50|    766|	do {                              \
  |  |   51|    766|		isc_region_t *_r = (r);   \
  |  |   52|    766|		unsigned int  _l = (l);   \
  |  |   53|    766|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    766|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    766|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 766, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    766|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    766|		_r->base += _l;           \
  |  |   55|    766|		_r->length -= _l;         \
  |  |   56|    766|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 766]
  |  |  ------------------
  ------------------
  225|       |
  226|    766|	if (prefixlen == 0) {
  ------------------
  |  Branch (226:6): [True: 330, False: 436]
  ------------------
  227|    330|		return ISC_R_SUCCESS;
  228|    330|	}
  229|       |
  230|    436|	dns_name_init(&name);
  231|    436|	dns_name_fromregion(&name, &sr);
  232|    436|	return dns_name_towire(&name, cctx, target);
  233|    766|}
rdata.c:totext_in_a6:
  103|  1.52k|totext_in_a6(ARGS_TOTEXT) {
  104|  1.52k|	isc_region_t sr, ar;
  105|  1.52k|	unsigned char addr[16];
  106|  1.52k|	unsigned char prefixlen;
  107|  1.52k|	unsigned char octets;
  108|  1.52k|	unsigned char mask;
  109|  1.52k|	char buf[sizeof("128")];
  110|  1.52k|	dns_name_t name;
  111|  1.52k|	dns_name_t prefix;
  112|  1.52k|	unsigned int opts;
  113|       |
  114|  1.52k|	REQUIRE(rdata->type == dns_rdatatype_a6);
  ------------------
  |  |  198|  1.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  115|  1.52k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  1.52k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|  1.52k|	dns_rdata_toregion(rdata, &sr);
  119|  1.52k|	prefixlen = sr.base[0];
  120|  1.52k|	INSIST(prefixlen <= 128);
  ------------------
  |  |  202|  1.52k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.52k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  121|  1.52k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.52k|	do {                              \
  |  |   51|  1.52k|		isc_region_t *_r = (r);   \
  |  |   52|  1.52k|		unsigned int  _l = (l);   \
  |  |   53|  1.52k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.52k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.52k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.52k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.52k|		_r->base += _l;           \
  |  |   55|  1.52k|		_r->length -= _l;         \
  |  |   56|  1.52k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.52k]
  |  |  ------------------
  ------------------
  122|  1.52k|	snprintf(buf, sizeof(buf), "%u", prefixlen);
  123|  1.52k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.52k|	{                                  \
  |  |  277|  1.52k|		isc_result_t _r = (x);     \
  |  |  278|  1.52k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.52k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.52k|	}
  ------------------
  124|  1.52k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.52k|	{                                  \
  |  |  277|  1.52k|		isc_result_t _r = (x);     \
  |  |  278|  1.52k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.52k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.52k|	}
  ------------------
  125|       |
  126|  1.52k|	if (prefixlen != 128) {
  ------------------
  |  Branch (126:6): [True: 864, False: 658]
  ------------------
  127|    864|		octets = prefixlen / 8;
  128|    864|		memset(addr, 0, sizeof(addr));
  129|    864|		memmove(&addr[octets], sr.base, 16 - octets);
  130|    864|		mask = 0xff >> (prefixlen % 8);
  131|    864|		addr[octets] &= mask;
  132|    864|		ar.base = addr;
  133|    864|		ar.length = sizeof(addr);
  134|    864|		RETERR(inet_totext(AF_INET6, tctx->flags, &ar, target));
  ------------------
  |  |  276|    864|	{                                  \
  |  |  277|    864|		isc_result_t _r = (x);     \
  |  |  278|    864|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 864]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    864|	}
  ------------------
  135|    864|		isc_region_consume(&sr, 16 - octets);
  ------------------
  |  |   50|    864|	do {                              \
  |  |   51|    864|		isc_region_t *_r = (r);   \
  |  |   52|    864|		unsigned int  _l = (l);   \
  |  |   53|    864|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    864|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    864|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 864, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    864|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    864|		_r->base += _l;           \
  |  |   55|    864|		_r->length -= _l;         \
  |  |   56|    864|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 864]
  |  |  ------------------
  ------------------
  136|    864|	}
  137|       |
  138|  1.52k|	if (prefixlen == 0) {
  ------------------
  |  Branch (138:6): [True: 657, False: 865]
  ------------------
  139|    657|		return ISC_R_SUCCESS;
  140|    657|	}
  141|       |
  142|    865|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    865|	{                                  \
  |  |  277|    865|		isc_result_t _r = (x);     \
  |  |  278|    865|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 865]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    865|	}
  ------------------
  143|    865|	dns_name_init(&name);
  144|    865|	dns_name_init(&prefix);
  145|    865|	dns_name_fromregion(&name, &sr);
  146|    865|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (146:9): [True: 0, False: 865]
  ------------------
  147|    865|							 : 0;
  148|    865|	return dns_name_totext(&prefix, opts, target);
  149|    865|}

rdata.c:fromwire_in_a:
   68|  1.72k|fromwire_in_a(ARGS_FROMWIRE) {
   69|  1.72k|	isc_region_t sregion;
   70|  1.72k|	isc_region_t tregion;
   71|       |
   72|  1.72k|	REQUIRE(type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.72k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.72k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.72k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|  1.72k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.72k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.72k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.72k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|       |
   75|  1.72k|	UNUSED(type);
  ------------------
  |  |   69|  1.72k|#define UNUSED(x) (void)(x)
  ------------------
   76|  1.72k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.72k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.72k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.72k|#define UNUSED(x) (void)(x)
  ------------------
   78|       |
   79|  1.72k|	isc_buffer_activeregion(source, &sregion);
   80|  1.72k|	isc_buffer_availableregion(target, &tregion);
   81|  1.72k|	if (sregion.length < 4) {
  ------------------
  |  Branch (81:6): [True: 4, False: 1.71k]
  ------------------
   82|      4|		return ISC_R_UNEXPECTEDEND;
   83|      4|	}
   84|  1.71k|	if (tregion.length < 4) {
  ------------------
  |  Branch (84:6): [True: 69, False: 1.64k]
  ------------------
   85|     69|		return ISC_R_NOSPACE;
   86|     69|	}
   87|       |
   88|  1.64k|	memmove(tregion.base, sregion.base, 4);
   89|  1.64k|	isc_buffer_forward(source, 4);
   90|  1.64k|	isc_buffer_add(target, 4);
   91|  1.64k|	return ISC_R_SUCCESS;
   92|  1.71k|}
rdata.c:towire_in_a:
   95|    707|towire_in_a(ARGS_TOWIRE) {
   96|    707|	isc_region_t region;
   97|       |
   98|    707|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    707|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    707|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 707, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    707|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   99|    707|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    707|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    707|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 707, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    707|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|    707|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|    707|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    707|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 707, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    707|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|    707|	UNUSED(cctx);
  ------------------
  |  |   69|    707|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|    707|	isc_buffer_availableregion(target, &region);
  105|    707|	if (region.length < rdata->length) {
  ------------------
  |  Branch (105:6): [True: 1, False: 706]
  ------------------
  106|      1|		return ISC_R_NOSPACE;
  107|      1|	}
  108|    706|	memmove(region.base, rdata->data, rdata->length);
  109|    706|	isc_buffer_add(target, 4);
  110|    706|	return ISC_R_SUCCESS;
  111|    707|}
rdata.c:totext_in_a:
   54|  1.39k|totext_in_a(ARGS_TOTEXT) {
   55|  1.39k|	isc_region_t region;
   56|       |
   57|  1.39k|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|  1.39k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|  1.39k|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|  1.39k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
   62|       |
   63|  1.39k|	dns_rdata_toregion(rdata, &region);
   64|       |	return inet_totext(AF_INET, tctx->flags, &region, target);
   65|  1.39k|}

rdata.c:fromwire_in_aaaa:
   84|  1.39k|fromwire_in_aaaa(ARGS_FROMWIRE) {
   85|  1.39k|	isc_region_t sregion;
   86|  1.39k|	isc_region_t tregion;
   87|       |
   88|  1.39k|	REQUIRE(type == dns_rdatatype_aaaa);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|  1.39k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|       |
   91|  1.39k|	UNUSED(type);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
   92|  1.39k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
   93|  1.39k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
   94|       |
   95|  1.39k|	isc_buffer_activeregion(source, &sregion);
   96|  1.39k|	isc_buffer_availableregion(target, &tregion);
   97|  1.39k|	if (sregion.length < 16) {
  ------------------
  |  Branch (97:6): [True: 6, False: 1.39k]
  ------------------
   98|      6|		return ISC_R_UNEXPECTEDEND;
   99|      6|	}
  100|  1.39k|	if (tregion.length < 16) {
  ------------------
  |  Branch (100:6): [True: 201, False: 1.18k]
  ------------------
  101|    201|		return ISC_R_NOSPACE;
  102|    201|	}
  103|       |
  104|  1.18k|	memmove(tregion.base, sregion.base, 16);
  105|  1.18k|	isc_buffer_forward(source, 16);
  106|  1.18k|	isc_buffer_add(target, 16);
  107|  1.18k|	return ISC_R_SUCCESS;
  108|  1.39k|}
rdata.c:towire_in_aaaa:
  111|    453|towire_in_aaaa(ARGS_TOWIRE) {
  112|    453|	isc_region_t region;
  113|       |
  114|    453|	UNUSED(cctx);
  ------------------
  |  |   69|    453|#define UNUSED(x) (void)(x)
  ------------------
  115|       |
  116|    453|	REQUIRE(rdata->type == dns_rdatatype_aaaa);
  ------------------
  |  |  198|    453|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    453|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 453, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    453|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|    453|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    453|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    453|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 453, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    453|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  118|    453|	REQUIRE(rdata->length == 16);
  ------------------
  |  |  198|    453|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    453|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 453, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    453|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  119|       |
  120|    453|	isc_buffer_availableregion(target, &region);
  121|    453|	if (region.length < rdata->length) {
  ------------------
  |  Branch (121:6): [True: 1, False: 452]
  ------------------
  122|      1|		return ISC_R_NOSPACE;
  123|      1|	}
  124|    452|	memmove(region.base, rdata->data, rdata->length);
  125|    452|	isc_buffer_add(target, 16);
  126|    452|	return ISC_R_SUCCESS;
  127|    453|}
rdata.c:totext_in_aaaa:
   54|    898|totext_in_aaaa(ARGS_TOTEXT) {
   55|    898|	isc_region_t region;
   56|       |
   57|    898|	REQUIRE(rdata->type == dns_rdatatype_aaaa);
  ------------------
  |  |  198|    898|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    898|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 898, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    898|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|    898|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    898|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    898|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 898, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    898|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|    898|	REQUIRE(rdata->length == 16);
  ------------------
  |  |  198|    898|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    898|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 898, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    898|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|    898|	if ((tctx->flags & DNS_STYLEFLAG_EXPANDAAAA) != 0) {
  ------------------
  |  |  204|    898|#define DNS_STYLEFLAG_EXPANDAAAA 0x00000020ULL
  ------------------
  |  Branch (61:6): [True: 0, False: 898]
  ------------------
   62|      0|		char buf[5 * 8];
   63|      0|		const char *sep = "";
   64|      0|		int i, n;
   65|      0|		unsigned int len = 0;
   66|       |
   67|      0|		for (i = 0; i < 16; i += 2) {
  ------------------
  |  Branch (67:15): [True: 0, False: 0]
  ------------------
   68|      0|			INSIST(len < sizeof(buf));
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   69|      0|			n = snprintf(buf + len, sizeof(buf) - len, "%s%02x%02x",
   70|      0|				     sep, rdata->data[i], rdata->data[i + 1]);
   71|      0|			if (n < 0) {
  ------------------
  |  Branch (71:8): [True: 0, False: 0]
  ------------------
   72|      0|				return ISC_R_FAILURE;
   73|      0|			}
   74|      0|			len += n;
   75|      0|			sep = ":";
   76|      0|		}
   77|      0|		return str_totext(buf, target);
   78|      0|	}
   79|    898|	dns_rdata_toregion(rdata, &region);
   80|       |	return inet_totext(AF_INET6, tctx->flags, &region, target);
   81|    898|}

rdata.c:fromwire_in_apl:
  183|  2.72k|fromwire_in_apl(ARGS_FROMWIRE) {
  184|  2.72k|	isc_region_t sr, sr2;
  185|  2.72k|	isc_region_t tr;
  186|  2.72k|	uint16_t afi;
  187|  2.72k|	uint8_t prefix;
  188|  2.72k|	uint8_t len;
  189|       |
  190|  2.72k|	REQUIRE(type == dns_rdatatype_apl);
  ------------------
  |  |  198|  2.72k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.72k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.72k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  191|  2.72k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.72k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.72k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.72k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  192|       |
  193|  2.72k|	UNUSED(type);
  ------------------
  |  |   69|  2.72k|#define UNUSED(x) (void)(x)
  ------------------
  194|  2.72k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.72k|#define UNUSED(x) (void)(x)
  ------------------
  195|  2.72k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.72k|#define UNUSED(x) (void)(x)
  ------------------
  196|       |
  197|  2.72k|	isc_buffer_activeregion(source, &sr);
  198|  2.72k|	isc_buffer_availableregion(target, &tr);
  199|  2.72k|	if (sr.length > tr.length) {
  ------------------
  |  Branch (199:6): [True: 89, False: 2.63k]
  ------------------
  200|     89|		return ISC_R_NOSPACE;
  201|     89|	}
  202|  2.63k|	sr2 = sr;
  203|       |
  204|       |	/* Zero or more items */
  205|  6.64k|	while (sr.length > 0) {
  ------------------
  |  Branch (205:9): [True: 4.06k, False: 2.58k]
  ------------------
  206|  4.06k|		if (sr.length < 4) {
  ------------------
  |  Branch (206:7): [True: 15, False: 4.04k]
  ------------------
  207|     15|			return ISC_R_UNEXPECTEDEND;
  208|     15|		}
  209|  4.04k|		afi = uint16_fromregion(&sr);
  210|  4.04k|		isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  4.04k|	do {                              \
  |  |   51|  4.04k|		isc_region_t *_r = (r);   \
  |  |   52|  4.04k|		unsigned int  _l = (l);   \
  |  |   53|  4.04k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.04k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.04k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.04k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.04k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.04k|		_r->base += _l;           \
  |  |   55|  4.04k|		_r->length -= _l;         \
  |  |   56|  4.04k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.04k]
  |  |  ------------------
  ------------------
  211|  4.04k|		prefix = *sr.base;
  212|  4.04k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.04k|	do {                              \
  |  |   51|  4.04k|		isc_region_t *_r = (r);   \
  |  |   52|  4.04k|		unsigned int  _l = (l);   \
  |  |   53|  4.04k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.04k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.04k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.04k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.04k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.04k|		_r->base += _l;           \
  |  |   55|  4.04k|		_r->length -= _l;         \
  |  |   56|  4.04k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.04k]
  |  |  ------------------
  ------------------
  213|  4.04k|		len = (*sr.base & 0x7f);
  214|  4.04k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.04k|	do {                              \
  |  |   51|  4.04k|		isc_region_t *_r = (r);   \
  |  |   52|  4.04k|		unsigned int  _l = (l);   \
  |  |   53|  4.04k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.04k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.04k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.04k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.04k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.04k|		_r->base += _l;           \
  |  |   55|  4.04k|		_r->length -= _l;         \
  |  |   56|  4.04k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.04k]
  |  |  ------------------
  ------------------
  215|  4.04k|		if (len > sr.length) {
  ------------------
  |  Branch (215:7): [True: 12, False: 4.03k]
  ------------------
  216|     12|			return ISC_R_UNEXPECTEDEND;
  217|     12|		}
  218|  4.03k|		switch (afi) {
  ------------------
  |  Branch (218:11): [True: 1.95k, False: 2.08k]
  ------------------
  219|    701|		case 1:
  ------------------
  |  Branch (219:3): [True: 701, False: 3.33k]
  ------------------
  220|    701|			if (prefix > 32 || len > 4) {
  ------------------
  |  Branch (220:8): [True: 2, False: 699]
  |  Branch (220:23): [True: 2, False: 697]
  ------------------
  221|      4|				return ISC_R_RANGE;
  222|      4|			}
  223|    697|			break;
  224|  1.25k|		case 2:
  ------------------
  |  Branch (224:3): [True: 1.25k, False: 2.78k]
  ------------------
  225|  1.25k|			if (prefix > 128 || len > 16) {
  ------------------
  |  Branch (225:8): [True: 1, False: 1.25k]
  |  Branch (225:24): [True: 1, False: 1.24k]
  ------------------
  226|      2|				return ISC_R_RANGE;
  227|      2|			}
  228|  4.03k|		}
  229|  4.03k|		if (len > 0 && sr.base[len - 1] == 0) {
  ------------------
  |  Branch (229:7): [True: 1.23k, False: 2.79k]
  |  Branch (229:18): [True: 17, False: 1.21k]
  ------------------
  230|     17|			return DNS_R_FORMERR;
  231|     17|		}
  232|  4.01k|		isc_region_consume(&sr, len);
  ------------------
  |  |   50|  4.01k|	do {                              \
  |  |   51|  4.01k|		isc_region_t *_r = (r);   \
  |  |   52|  4.01k|		unsigned int  _l = (l);   \
  |  |   53|  4.01k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.01k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.01k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.01k|		_r->base += _l;           \
  |  |   55|  4.01k|		_r->length -= _l;         \
  |  |   56|  4.01k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.01k]
  |  |  ------------------
  ------------------
  233|  4.01k|	}
  234|  2.58k|	isc_buffer_forward(source, sr2.length);
  235|  2.58k|	return mem_tobuffer(target, sr2.base, sr2.length);
  236|  2.63k|}
rdata.c:towire_in_apl:
  239|  1.23k|towire_in_apl(ARGS_TOWIRE) {
  240|  1.23k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.23k|#define UNUSED(x) (void)(x)
  ------------------
  241|       |
  242|  1.23k|	REQUIRE(rdata->type == dns_rdatatype_apl);
  ------------------
  |  |  198|  1.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  243|  1.23k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  244|       |
  245|  1.23k|	return mem_tobuffer(target, rdata->data, rdata->length);
  246|  1.23k|}
rdata.c:totext_in_apl:
  118|  2.44k|totext_in_apl(ARGS_TOTEXT) {
  119|  2.44k|	isc_region_t sr;
  120|  2.44k|	isc_region_t ir;
  121|  2.44k|	uint16_t afi;
  122|  2.44k|	uint8_t prefix;
  123|  2.44k|	uint8_t len;
  124|  2.44k|	bool neg;
  125|  2.44k|	unsigned char buf[16];
  126|  2.44k|	char txt[sizeof(" !64000:")];
  127|  2.44k|	const char *sep = "";
  128|  2.44k|	int n;
  129|       |
  130|  2.44k|	REQUIRE(rdata->type == dns_rdatatype_apl);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|  2.44k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  132|       |
  133|  2.44k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.44k|#define UNUSED(x) (void)(x)
  ------------------
  134|       |
  135|  2.44k|	dns_rdata_toregion(rdata, &sr);
  136|  2.44k|	ir.base = buf;
  137|  2.44k|	ir.length = sizeof(buf);
  138|       |
  139|  4.25k|	while (sr.length > 0) {
  ------------------
  |  Branch (139:9): [True: 2.51k, False: 1.74k]
  ------------------
  140|  2.51k|		INSIST(sr.length >= 4);
  ------------------
  |  |  202|  2.51k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.51k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.51k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.51k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  141|  2.51k|		afi = uint16_fromregion(&sr);
  142|  2.51k|		isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  2.51k|	do {                              \
  |  |   51|  2.51k|		isc_region_t *_r = (r);   \
  |  |   52|  2.51k|		unsigned int  _l = (l);   \
  |  |   53|  2.51k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.51k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.51k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.51k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.51k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.51k|		_r->base += _l;           \
  |  |   55|  2.51k|		_r->length -= _l;         \
  |  |   56|  2.51k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.51k]
  |  |  ------------------
  ------------------
  143|  2.51k|		prefix = *sr.base;
  144|  2.51k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.51k|	do {                              \
  |  |   51|  2.51k|		isc_region_t *_r = (r);   \
  |  |   52|  2.51k|		unsigned int  _l = (l);   \
  |  |   53|  2.51k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.51k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.51k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.51k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.51k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.51k|		_r->base += _l;           \
  |  |   55|  2.51k|		_r->length -= _l;         \
  |  |   56|  2.51k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.51k]
  |  |  ------------------
  ------------------
  145|  2.51k|		len = (*sr.base & 0x7f);
  146|  2.51k|		neg = (*sr.base & 0x80);
  147|  2.51k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.51k|	do {                              \
  |  |   51|  2.51k|		isc_region_t *_r = (r);   \
  |  |   52|  2.51k|		unsigned int  _l = (l);   \
  |  |   53|  2.51k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.51k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.51k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.51k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.51k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.51k|		_r->base += _l;           \
  |  |   55|  2.51k|		_r->length -= _l;         \
  |  |   56|  2.51k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.51k]
  |  |  ------------------
  ------------------
  148|  2.51k|		INSIST(len <= sr.length);
  ------------------
  |  |  202|  2.51k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.51k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.51k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.51k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  149|  2.51k|		n = snprintf(txt, sizeof(txt), "%s%s%u:", sep, neg ? "!" : "",
  ------------------
  |  Branch (149:50): [True: 44, False: 2.46k]
  ------------------
  150|  2.51k|			     afi);
  151|  2.51k|		INSIST(n < (int)sizeof(txt));
  ------------------
  |  |  202|  2.51k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.51k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.51k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.51k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  152|  2.51k|		RETERR(str_totext(txt, target));
  ------------------
  |  |  276|  2.51k|	{                                  \
  |  |  277|  2.51k|		isc_result_t _r = (x);     \
  |  |  278|  2.51k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.51k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.51k|	}
  ------------------
  153|  2.51k|		switch (afi) {
  154|    638|		case 1:
  ------------------
  |  Branch (154:3): [True: 638, False: 1.87k]
  ------------------
  155|    638|			INSIST(len <= 4);
  ------------------
  |  |  202|    638|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    638|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 638, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    638|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  156|    638|			INSIST(prefix <= 32);
  ------------------
  |  |  202|    638|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    638|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 638, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    638|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  157|    638|			memset(buf, 0, sizeof(buf));
  158|    638|			memmove(buf, sr.base, len);
  159|    638|			RETERR(inet_totext(AF_INET, tctx->flags, &ir, target));
  ------------------
  |  |  276|    638|	{                                  \
  |  |  277|    638|		isc_result_t _r = (x);     \
  |  |  278|    638|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 638]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    638|	}
  ------------------
  160|    638|			break;
  161|       |
  162|  1.17k|		case 2:
  ------------------
  |  Branch (162:3): [True: 1.17k, False: 1.34k]
  ------------------
  163|  1.17k|			INSIST(len <= 16);
  ------------------
  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  164|  1.17k|			INSIST(prefix <= 128);
  ------------------
  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  165|  1.17k|			memset(buf, 0, sizeof(buf));
  166|  1.17k|			memmove(buf, sr.base, len);
  167|  1.17k|			RETERR(inet_totext(AF_INET6, tctx->flags, &ir, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  168|  1.17k|			break;
  169|       |
  170|    705|		default:
  ------------------
  |  Branch (170:3): [True: 705, False: 1.80k]
  ------------------
  171|    705|			return ISC_R_NOTIMPLEMENTED;
  172|  2.51k|		}
  173|  1.80k|		n = snprintf(txt, sizeof(txt), "/%u", prefix);
  174|  1.80k|		INSIST(n < (int)sizeof(txt));
  ------------------
  |  |  202|  1.80k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.80k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.80k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.80k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  175|  1.80k|		RETERR(str_totext(txt, target));
  ------------------
  |  |  276|  1.80k|	{                                  \
  |  |  277|  1.80k|		isc_result_t _r = (x);     \
  |  |  278|  1.80k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.80k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.80k|	}
  ------------------
  176|  1.80k|		isc_region_consume(&sr, len);
  ------------------
  |  |   50|  1.80k|	do {                              \
  |  |   51|  1.80k|		isc_region_t *_r = (r);   \
  |  |   52|  1.80k|		unsigned int  _l = (l);   \
  |  |   53|  1.80k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.80k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.80k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.80k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.80k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.80k|		_r->base += _l;           \
  |  |   55|  1.80k|		_r->length -= _l;         \
  |  |   56|  1.80k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.80k]
  |  |  ------------------
  ------------------
  177|  1.80k|		sep = " ";
  178|  1.80k|	}
  179|  1.74k|	return ISC_R_SUCCESS;
  180|  2.44k|}

rdata.c:fromwire_in_atma:
  144|  3.28k|fromwire_in_atma(ARGS_FROMWIRE) {
  145|  3.28k|	isc_region_t region;
  146|       |
  147|  3.28k|	REQUIRE(type == dns_rdatatype_atma);
  ------------------
  |  |  198|  3.28k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.28k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.28k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.28k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  148|  3.28k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.28k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.28k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.28k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.28k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  149|       |
  150|  3.28k|	UNUSED(type);
  ------------------
  |  |   69|  3.28k|#define UNUSED(x) (void)(x)
  ------------------
  151|  3.28k|	UNUSED(dctx);
  ------------------
  |  |   69|  3.28k|#define UNUSED(x) (void)(x)
  ------------------
  152|  3.28k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.28k|#define UNUSED(x) (void)(x)
  ------------------
  153|       |
  154|  3.28k|	isc_buffer_activeregion(source, &region);
  155|  3.28k|	if (region.length < 2) {
  ------------------
  |  Branch (155:6): [True: 3, False: 3.27k]
  ------------------
  156|      3|		return ISC_R_UNEXPECTEDEND;
  157|      3|	}
  158|  3.27k|	if (region.base[0] == 1) {
  ------------------
  |  Branch (158:6): [True: 1.63k, False: 1.64k]
  ------------------
  159|  1.63k|		unsigned int i;
  160|  3.45k|		for (i = 1; i < region.length; i++) {
  ------------------
  |  Branch (160:15): [True: 1.82k, False: 1.63k]
  ------------------
  161|  1.82k|			if (!isdigit((unsigned char)region.base[i])) {
  ------------------
  |  Branch (161:8): [True: 3, False: 1.82k]
  ------------------
  162|      3|				return DNS_R_FORMERR;
  163|      3|			}
  164|  1.82k|		}
  165|  1.63k|	}
  166|  3.27k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  3.27k|	{                                  \
  |  |  277|  3.27k|		isc_result_t _r = (x);     \
  |  |  278|  3.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 86, False: 3.19k]
  |  |  ------------------
  |  |  279|     86|			return ((_r));     \
  |  |  280|     86|		}                          \
  |  |  281|  3.27k|	}
  ------------------
  167|  3.19k|	isc_buffer_forward(source, region.length);
  168|  3.19k|	return ISC_R_SUCCESS;
  169|  3.27k|}
rdata.c:towire_in_atma:
  172|  1.52k|towire_in_atma(ARGS_TOWIRE) {
  173|  1.52k|	REQUIRE(rdata->type == dns_rdatatype_atma);
  ------------------
  |  |  198|  1.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  174|  1.52k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  175|  1.52k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.52k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.52k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.52k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  176|       |
  177|  1.52k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.52k|#define UNUSED(x) (void)(x)
  ------------------
  178|       |
  179|  1.52k|	return mem_tobuffer(target, rdata->data, rdata->length);
  180|  1.52k|}
rdata.c:totext_in_atma:
  111|  3.03k|totext_in_atma(ARGS_TOTEXT) {
  112|  3.03k|	isc_region_t region;
  113|  3.03k|	char buf[sizeof("xx")];
  114|       |
  115|  3.03k|	REQUIRE(rdata->type == dns_rdatatype_atma);
  ------------------
  |  |  198|  3.03k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.03k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.03k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.03k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  3.03k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.03k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.03k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.03k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.03k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|  3.03k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.03k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.03k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.03k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.03k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  118|       |
  119|  3.03k|	UNUSED(tctx);
  ------------------
  |  |   69|  3.03k|#define UNUSED(x) (void)(x)
  ------------------
  120|       |
  121|  3.03k|	dns_rdata_toregion(rdata, &region);
  122|  3.03k|	INSIST(region.length > 1);
  ------------------
  |  |  202|  3.03k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.03k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.03k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.03k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  123|  3.03k|	switch (region.base[0]) {
  124|    739|	case 0:
  ------------------
  |  Branch (124:2): [True: 739, False: 2.29k]
  ------------------
  125|    739|		isc_region_consume(&region, 1);
  ------------------
  |  |   50|    739|	do {                              \
  |  |   51|    739|		isc_region_t *_r = (r);   \
  |  |   52|    739|		unsigned int  _l = (l);   \
  |  |   53|    739|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    739|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    739|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 739, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    739|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    739|		_r->base += _l;           \
  |  |   55|    739|		_r->length -= _l;         \
  |  |   56|    739|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 739]
  |  |  ------------------
  ------------------
  126|  4.01k|		while (region.length != 0) {
  ------------------
  |  Branch (126:10): [True: 3.27k, False: 739]
  ------------------
  127|  3.27k|			snprintf(buf, sizeof(buf), "%02x", region.base[0]);
  128|  3.27k|			isc_region_consume(&region, 1);
  ------------------
  |  |   50|  3.27k|	do {                              \
  |  |   51|  3.27k|		isc_region_t *_r = (r);   \
  |  |   52|  3.27k|		unsigned int  _l = (l);   \
  |  |   53|  3.27k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.27k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.27k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.27k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.27k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.27k|		_r->base += _l;           \
  |  |   55|  3.27k|		_r->length -= _l;         \
  |  |   56|  3.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.27k]
  |  |  ------------------
  ------------------
  129|  3.27k|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.27k|	{                                  \
  |  |  277|  3.27k|		isc_result_t _r = (x);     \
  |  |  278|  3.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.27k|	}
  ------------------
  130|  3.27k|		}
  131|    739|		break;
  132|  1.60k|	case 1:
  ------------------
  |  Branch (132:2): [True: 1.60k, False: 1.43k]
  ------------------
  133|  1.60k|		RETERR(str_totext("+", target));
  ------------------
  |  |  276|  1.60k|	{                                  \
  |  |  277|  1.60k|		isc_result_t _r = (x);     \
  |  |  278|  1.60k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.60k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.60k|	}
  ------------------
  134|  1.60k|		isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.60k|	do {                              \
  |  |   51|  1.60k|		isc_region_t *_r = (r);   \
  |  |   52|  1.60k|		unsigned int  _l = (l);   \
  |  |   53|  1.60k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.60k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.60k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.60k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.60k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.60k|		_r->base += _l;           \
  |  |   55|  1.60k|		_r->length -= _l;         \
  |  |   56|  1.60k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.60k]
  |  |  ------------------
  ------------------
  135|  1.60k|		RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  1.60k|	{                                  \
  |  |  277|  1.60k|		isc_result_t _r = (x);     \
  |  |  278|  1.60k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.60k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.60k|	}
  ------------------
  136|  1.60k|		break;
  137|    695|	default:
  ------------------
  |  Branch (137:2): [True: 695, False: 2.34k]
  ------------------
  138|    695|		return ISC_R_NOTIMPLEMENTED;
  139|  3.03k|	}
  140|  2.34k|	return ISC_R_SUCCESS;
  141|  3.03k|}

rdata.c:fromwire_in_dhcid:
   70|  1.16k|fromwire_in_dhcid(ARGS_FROMWIRE) {
   71|  1.16k|	isc_region_t sr;
   72|       |
   73|  1.16k|	REQUIRE(type == dns_rdatatype_dhcid);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|  1.16k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   75|       |
   76|  1.16k|	UNUSED(type);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.16k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   78|  1.16k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   79|       |
   80|  1.16k|	isc_buffer_activeregion(source, &sr);
   81|  1.16k|	if (sr.length == 0) {
  ------------------
  |  Branch (81:6): [True: 2, False: 1.16k]
  ------------------
   82|      2|		return ISC_R_UNEXPECTEDEND;
   83|      2|	}
   84|       |
   85|  1.16k|	isc_buffer_forward(source, sr.length);
   86|  1.16k|	return mem_tobuffer(target, sr.base, sr.length);
   87|  1.16k|}
rdata.c:towire_in_dhcid:
   90|    370|towire_in_dhcid(ARGS_TOWIRE) {
   91|    370|	isc_region_t sr;
   92|       |
   93|    370|	REQUIRE(rdata->type == dns_rdatatype_dhcid);
  ------------------
  |  |  198|    370|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    370|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 370, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    370|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   94|    370|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    370|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    370|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 370, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    370|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|    370|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    370|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    370|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 370, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    370|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|       |
   97|    370|	UNUSED(cctx);
  ------------------
  |  |   69|    370|#define UNUSED(x) (void)(x)
  ------------------
   98|       |
   99|    370|	dns_rdata_toregion(rdata, &sr);
  100|    370|	return mem_tobuffer(target, sr.base, sr.length);
  101|    370|}
rdata.c:totext_in_dhcid:
   36|    731|totext_in_dhcid(ARGS_TOTEXT) {
   37|    731|	isc_region_t sr, sr2;
   38|       |	/* " ; 64000 255 64000" */
   39|    731|	char buf[5 + 3 * 11 + 1];
   40|       |
   41|    731|	REQUIRE(rdata->type == dns_rdatatype_dhcid);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   42|    731|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   43|    731|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    731|	dns_rdata_toregion(rdata, &sr);
   46|    731|	sr2 = sr;
   47|       |
   48|    731|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    731|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (48:6): [True: 0, False: 731]
  ------------------
   49|      0|		RETERR(str_totext("( " /*)*/, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|      0|	}
   51|    731|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (51:6): [True: 0, False: 731]
  ------------------
   52|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   53|    731|	} else {
   54|    731|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    731|	{                                  \
  |  |  277|    731|		isc_result_t _r = (x);     \
  |  |  278|    731|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 731]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    731|	}
  ------------------
   55|    731|					 target));
   56|    731|	}
   57|    731|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    731|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (57:6): [True: 0, False: 731]
  ------------------
   58|      0|		RETERR(str_totext(/* ( */ " )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   59|      0|		if (rdata->length > 2) {
  ------------------
  |  Branch (59:7): [True: 0, False: 0]
  ------------------
   60|      0|			snprintf(buf, sizeof(buf), " ; %u %u %u",
   61|      0|				 sr2.base[0] * 256U + sr2.base[1], sr2.base[2],
   62|      0|				 rdata->length - 3U);
   63|      0|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   64|      0|		}
   65|      0|	}
   66|    731|	return ISC_R_SUCCESS;
   67|    731|}

rdata.c:fromwire_in_eid:
   61|  3.31k|fromwire_in_eid(ARGS_FROMWIRE) {
   62|  3.31k|	isc_region_t region;
   63|       |
   64|  3.31k|	REQUIRE(type == dns_rdatatype_eid);
  ------------------
  |  |  198|  3.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   65|  3.31k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|       |
   67|  3.31k|	UNUSED(type);
  ------------------
  |  |   69|  3.31k|#define UNUSED(x) (void)(x)
  ------------------
   68|  3.31k|	UNUSED(dctx);
  ------------------
  |  |   69|  3.31k|#define UNUSED(x) (void)(x)
  ------------------
   69|  3.31k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.31k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  3.31k|	isc_buffer_activeregion(source, &region);
   72|  3.31k|	if (region.length < 1) {
  ------------------
  |  Branch (72:6): [True: 3, False: 3.30k]
  ------------------
   73|      3|		return ISC_R_UNEXPECTEDEND;
   74|      3|	}
   75|       |
   76|  3.30k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  3.30k|	{                                  \
  |  |  277|  3.30k|		isc_result_t _r = (x);     \
  |  |  278|  3.30k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 290, False: 3.01k]
  |  |  ------------------
  |  |  279|    290|			return ((_r));     \
  |  |  280|    290|		}                          \
  |  |  281|  3.30k|	}
  ------------------
   77|  3.01k|	isc_buffer_forward(source, region.length);
   78|  3.01k|	return ISC_R_SUCCESS;
   79|  3.30k|}
rdata.c:towire_in_eid:
   82|  1.23k|towire_in_eid(ARGS_TOWIRE) {
   83|  1.23k|	REQUIRE(rdata->type == dns_rdatatype_eid);
  ------------------
  |  |  198|  1.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|  1.23k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|  1.23k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  1.23k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.23k|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|  1.23k|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|  1.23k|}
rdata.c:totext_in_eid:
   36|  2.44k|totext_in_eid(ARGS_TOTEXT) {
   37|  2.44k|	isc_region_t region;
   38|       |
   39|  2.44k|	REQUIRE(rdata->type == dns_rdatatype_eid);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|  2.44k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|  2.44k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   42|       |
   43|  2.44k|	dns_rdata_toregion(rdata, &region);
   44|       |
   45|  2.44k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.44k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (45:6): [True: 0, False: 2.44k]
  ------------------
   46|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   47|      0|	}
   48|  2.44k|	if (tctx->width == 0) {
  ------------------
  |  Branch (48:6): [True: 0, False: 2.44k]
  ------------------
   49|      0|		RETERR(isc_hex_totext(&region, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|  2.44k|	} else {
   51|  2.44k|		RETERR(isc_hex_totext(&region, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  2.44k|	{                                  \
  |  |  277|  2.44k|		isc_result_t _r = (x);     \
  |  |  278|  2.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.44k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.44k|	}
  ------------------
   52|  2.44k|				      target));
   53|  2.44k|	}
   54|  2.44k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.44k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (54:6): [True: 0, False: 2.44k]
  ------------------
   55|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   56|      0|	}
   57|  2.44k|	return ISC_R_SUCCESS;
   58|  2.44k|}

rdata.c:fromwire_in_https:
   43|  2.83k|fromwire_in_https(ARGS_FROMWIRE) {
   44|  2.83k|	REQUIRE(type == dns_rdatatype_https);
  ------------------
  |  |  198|  2.83k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.83k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.83k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   45|  2.83k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.83k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.83k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.83k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|       |
   47|  2.83k|	return generic_fromwire_in_svcb(CALL_FROMWIRE);
  ------------------
  |  |   91|  2.83k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   48|  2.83k|}
rdata.c:towire_in_https:
   51|  1.31k|towire_in_https(ARGS_TOWIRE) {
   52|  1.31k|	REQUIRE(rdata->type == dns_rdatatype_https);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   53|  1.31k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   54|       |
   55|  1.31k|	return generic_towire_in_svcb(CALL_TOWIRE);
  ------------------
  |  |   96|  1.31k|#define CALL_TOWIRE rdata, cctx, target
  ------------------
   56|  1.31k|}
rdata.c:totext_in_https:
   34|  2.57k|totext_in_https(ARGS_TOTEXT) {
   35|  2.57k|	REQUIRE(rdata->type == dns_rdatatype_https);
  ------------------
  |  |  198|  2.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   36|  2.57k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|  2.57k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   38|       |
   39|  2.57k|	return generic_totext_in_svcb(CALL_TOTEXT);
  ------------------
  |  |   85|  2.57k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   40|  2.57k|}

rdata.c:fromwire_in_kx:
   81|  1.58k|fromwire_in_kx(ARGS_FROMWIRE) {
   82|  1.58k|	dns_name_t name;
   83|  1.58k|	isc_region_t sregion;
   84|       |
   85|  1.58k|	REQUIRE(type == dns_rdatatype_kx);
  ------------------
  |  |  198|  1.58k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.58k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.58k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.58k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|  1.58k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.58k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.58k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.58k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.58k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   87|       |
   88|  1.58k|	UNUSED(type);
  ------------------
  |  |   69|  1.58k|#define UNUSED(x) (void)(x)
  ------------------
   89|  1.58k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.58k|#define UNUSED(x) (void)(x)
  ------------------
   90|       |
   91|  1.58k|	dctx = dns_decompress_setpermitted(dctx, false);
   92|       |
   93|  1.58k|	dns_name_init(&name);
   94|       |
   95|  1.58k|	isc_buffer_activeregion(source, &sregion);
   96|  1.58k|	if (sregion.length < 2) {
  ------------------
  |  Branch (96:6): [True: 4, False: 1.57k]
  ------------------
   97|      4|		return ISC_R_UNEXPECTEDEND;
   98|      4|	}
   99|  1.57k|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|  1.57k|	{                                  \
  |  |  277|  1.57k|		isc_result_t _r = (x);     \
  |  |  278|  1.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 1.38k]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|  1.57k|	}
  ------------------
  100|  1.38k|	isc_buffer_forward(source, 2);
  101|  1.38k|	return dns_name_fromwire(&name, source, dctx, target);
  102|  1.57k|}
rdata.c:towire_in_kx:
  105|    574|towire_in_kx(ARGS_TOWIRE) {
  106|    574|	dns_name_t name;
  107|    574|	isc_region_t region;
  108|       |
  109|    574|	REQUIRE(rdata->type == dns_rdatatype_kx);
  ------------------
  |  |  198|    574|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    574|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 574, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    574|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  110|    574|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    574|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    574|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 574, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    574|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  111|    574|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    574|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    574|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 574, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    574|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  112|       |
  113|    574|	dns_compress_setpermitted(cctx, false);
  114|    574|	dns_rdata_toregion(rdata, &region);
  115|    574|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    574|	{                                  \
  |  |  277|    574|		isc_result_t _r = (x);     \
  |  |  278|    574|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 573]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    574|	}
  ------------------
  116|    573|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    573|	do {                              \
  |  |   51|    573|		isc_region_t *_r = (r);   \
  |  |   52|    573|		unsigned int  _l = (l);   \
  |  |   53|    573|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    573|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    573|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 573, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    573|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    573|		_r->base += _l;           \
  |  |   55|    573|		_r->length -= _l;         \
  |  |   56|    573|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 573]
  |  |  ------------------
  ------------------
  117|       |
  118|    573|	dns_name_init(&name);
  119|    573|	dns_name_fromregion(&name, &region);
  120|       |
  121|    573|	return dns_name_towire(&name, cctx, target);
  122|    574|}
rdata.c:totext_in_kx:
   51|  1.14k|totext_in_kx(ARGS_TOTEXT) {
   52|  1.14k|	isc_region_t region;
   53|  1.14k|	dns_name_t name;
   54|  1.14k|	dns_name_t prefix;
   55|  1.14k|	unsigned int opts;
   56|  1.14k|	char buf[sizeof("64000")];
   57|  1.14k|	unsigned short num;
   58|       |
   59|  1.14k|	REQUIRE(rdata->type == dns_rdatatype_kx);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|  1.14k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   61|  1.14k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|       |
   63|  1.14k|	dns_name_init(&name);
   64|  1.14k|	dns_name_init(&prefix);
   65|       |
   66|  1.14k|	dns_rdata_toregion(rdata, &region);
   67|  1.14k|	num = uint16_fromregion(&region);
   68|  1.14k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.14k|	do {                              \
  |  |   51|  1.14k|		isc_region_t *_r = (r);   \
  |  |   52|  1.14k|		unsigned int  _l = (l);   \
  |  |   53|  1.14k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.14k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.14k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.14k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.14k|		_r->base += _l;           \
  |  |   55|  1.14k|		_r->length -= _l;         \
  |  |   56|  1.14k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.14k]
  |  |  ------------------
  ------------------
   69|  1.14k|	snprintf(buf, sizeof(buf), "%u", num);
   70|  1.14k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
   71|       |
   72|  1.14k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
   73|       |
   74|  1.14k|	dns_name_fromregion(&name, &region);
   75|  1.14k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 1.14k]
  ------------------
   76|  1.14k|							 : 0;
   77|  1.14k|	return dns_name_totext(&prefix, opts, target);
   78|  1.14k|}

rdata.c:fromwire_in_nimloc:
   61|  1.27k|fromwire_in_nimloc(ARGS_FROMWIRE) {
   62|  1.27k|	isc_region_t region;
   63|       |
   64|  1.27k|	REQUIRE(type == dns_rdatatype_nimloc);
  ------------------
  |  |  198|  1.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   65|  1.27k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|       |
   67|  1.27k|	UNUSED(type);
  ------------------
  |  |   69|  1.27k|#define UNUSED(x) (void)(x)
  ------------------
   68|  1.27k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.27k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.27k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.27k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.27k|	isc_buffer_activeregion(source, &region);
   72|  1.27k|	if (region.length < 1) {
  ------------------
  |  Branch (72:6): [True: 2, False: 1.27k]
  ------------------
   73|      2|		return ISC_R_UNEXPECTEDEND;
   74|      2|	}
   75|       |
   76|  1.27k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  1.27k|	{                                  \
  |  |  277|  1.27k|		isc_result_t _r = (x);     \
  |  |  278|  1.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 202, False: 1.06k]
  |  |  ------------------
  |  |  279|    202|			return ((_r));     \
  |  |  280|    202|		}                          \
  |  |  281|  1.27k|	}
  ------------------
   77|  1.06k|	isc_buffer_forward(source, region.length);
   78|  1.06k|	return ISC_R_SUCCESS;
   79|  1.27k|}
rdata.c:towire_in_nimloc:
   82|    343|towire_in_nimloc(ARGS_TOWIRE) {
   83|    343|	REQUIRE(rdata->type == dns_rdatatype_nimloc);
  ------------------
  |  |  198|    343|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    343|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 343, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    343|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|    343|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    343|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    343|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 343, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    343|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|    343|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    343|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    343|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 343, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    343|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    343|	UNUSED(cctx);
  ------------------
  |  |   69|    343|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    343|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|    343|}
rdata.c:totext_in_nimloc:
   36|    682|totext_in_nimloc(ARGS_TOTEXT) {
   37|    682|	isc_region_t region;
   38|       |
   39|    682|	REQUIRE(rdata->type == dns_rdatatype_nimloc);
  ------------------
  |  |  198|    682|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    682|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    682|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|    682|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    682|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    682|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    682|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|    682|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    682|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    682|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    682|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   42|       |
   43|    682|	dns_rdata_toregion(rdata, &region);
   44|       |
   45|    682|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    682|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (45:6): [True: 0, False: 682]
  ------------------
   46|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   47|      0|	}
   48|    682|	if (tctx->width == 0) {
  ------------------
  |  Branch (48:6): [True: 0, False: 682]
  ------------------
   49|      0|		RETERR(isc_hex_totext(&region, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|    682|	} else {
   51|    682|		RETERR(isc_hex_totext(&region, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    682|	{                                  \
  |  |  277|    682|		isc_result_t _r = (x);     \
  |  |  278|    682|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 682]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    682|	}
  ------------------
   52|    682|				      target));
   53|    682|	}
   54|    682|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    682|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (54:6): [True: 0, False: 682]
  ------------------
   55|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   56|      0|	}
   57|    682|	return ISC_R_SUCCESS;
   58|    682|}

rdata.c:fromwire_in_nsap_ptr:
   67|    947|fromwire_in_nsap_ptr(ARGS_FROMWIRE) {
   68|    947|	dns_name_t name;
   69|       |
   70|    947|	REQUIRE(type == dns_rdatatype_nsap_ptr);
  ------------------
  |  |  198|    947|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    947|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 947, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    947|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|    947|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    947|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    947|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 947, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    947|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|    947|	UNUSED(type);
  ------------------
  |  |   69|    947|#define UNUSED(x) (void)(x)
  ------------------
   74|    947|	UNUSED(rdclass);
  ------------------
  |  |   69|    947|#define UNUSED(x) (void)(x)
  ------------------
   75|       |
   76|    947|	dctx = dns_decompress_setpermitted(dctx, false);
   77|       |
   78|    947|	dns_name_init(&name);
   79|    947|	return dns_name_fromwire(&name, source, dctx, target);
   80|    947|}
rdata.c:towire_in_nsap_ptr:
   83|    473|towire_in_nsap_ptr(ARGS_TOWIRE) {
   84|    473|	dns_name_t name;
   85|    473|	isc_region_t region;
   86|       |
   87|    473|	REQUIRE(rdata->type == dns_rdatatype_nsap_ptr);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   88|    473|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|    473|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|       |
   91|    473|	dns_compress_setpermitted(cctx, false);
   92|    473|	dns_name_init(&name);
   93|    473|	dns_rdata_toregion(rdata, &region);
   94|    473|	dns_name_fromregion(&name, &region);
   95|       |
   96|    473|	return dns_name_towire(&name, cctx, target);
   97|    473|}
rdata.c:totext_in_nsap_ptr:
   45|    942|totext_in_nsap_ptr(ARGS_TOTEXT) {
   46|    942|	isc_region_t region;
   47|    942|	dns_name_t name;
   48|    942|	dns_name_t prefix;
   49|    942|	unsigned int opts;
   50|       |
   51|    942|	REQUIRE(rdata->type == dns_rdatatype_nsap_ptr);
  ------------------
  |  |  198|    942|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    942|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 942, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    942|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   52|    942|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    942|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    942|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 942, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    942|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   53|    942|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    942|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    942|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 942, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    942|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   54|       |
   55|    942|	dns_name_init(&name);
   56|    942|	dns_name_init(&prefix);
   57|       |
   58|    942|	dns_rdata_toregion(rdata, &region);
   59|    942|	dns_name_fromregion(&name, &region);
   60|       |
   61|    942|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (61:9): [True: 0, False: 942]
  ------------------
   62|    942|							 : 0;
   63|    942|	return dns_name_totext(&prefix, opts, target);
   64|    942|}

rdata.c:fromwire_in_nsap:
   96|  1.44k|fromwire_in_nsap(ARGS_FROMWIRE) {
   97|  1.44k|	isc_region_t region;
   98|       |
   99|  1.44k|	REQUIRE(type == dns_rdatatype_nsap);
  ------------------
  |  |  198|  1.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|  1.44k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|  1.44k|	UNUSED(type);
  ------------------
  |  |   69|  1.44k|#define UNUSED(x) (void)(x)
  ------------------
  103|  1.44k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.44k|#define UNUSED(x) (void)(x)
  ------------------
  104|  1.44k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.44k|#define UNUSED(x) (void)(x)
  ------------------
  105|       |
  106|  1.44k|	isc_buffer_activeregion(source, &region);
  107|  1.44k|	if (region.length < 1) {
  ------------------
  |  Branch (107:6): [True: 2, False: 1.44k]
  ------------------
  108|      2|		return ISC_R_UNEXPECTEDEND;
  109|      2|	}
  110|       |
  111|  1.44k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  1.44k|	{                                  \
  |  |  277|  1.44k|		isc_result_t _r = (x);     \
  |  |  278|  1.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 82, False: 1.36k]
  |  |  ------------------
  |  |  279|     82|			return ((_r));     \
  |  |  280|     82|		}                          \
  |  |  281|  1.44k|	}
  ------------------
  112|  1.36k|	isc_buffer_forward(source, region.length);
  113|  1.36k|	return ISC_R_SUCCESS;
  114|  1.44k|}
rdata.c:towire_in_nsap:
  117|    673|towire_in_nsap(ARGS_TOWIRE) {
  118|    673|	REQUIRE(rdata->type == dns_rdatatype_nsap);
  ------------------
  |  |  198|    673|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    673|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 673, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    673|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  119|    673|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    673|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    673|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 673, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    673|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  120|    673|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    673|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    673|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 673, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    673|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  121|       |
  122|    673|	UNUSED(cctx);
  ------------------
  |  |   69|    673|#define UNUSED(x) (void)(x)
  ------------------
  123|       |
  124|    673|	return mem_tobuffer(target, rdata->data, rdata->length);
  125|    673|}
rdata.c:totext_in_nsap:
   75|  1.33k|totext_in_nsap(ARGS_TOTEXT) {
   76|  1.33k|	isc_region_t region;
   77|  1.33k|	char buf[sizeof("xx")];
   78|       |
   79|  1.33k|	REQUIRE(rdata->type == dns_rdatatype_nsap);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   80|  1.33k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|  1.33k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|       |
   83|  1.33k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.33k|#define UNUSED(x) (void)(x)
  ------------------
   84|       |
   85|  1.33k|	dns_rdata_toregion(rdata, &region);
   86|  1.33k|	RETERR(str_totext("0x", target));
  ------------------
  |  |  276|  1.33k|	{                                  \
  |  |  277|  1.33k|		isc_result_t _r = (x);     \
  |  |  278|  1.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.33k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.33k|	}
  ------------------
   87|  12.0k|	while (region.length != 0) {
  ------------------
  |  Branch (87:9): [True: 10.7k, False: 1.33k]
  ------------------
   88|  10.7k|		snprintf(buf, sizeof(buf), "%02x", region.base[0]);
   89|  10.7k|		isc_region_consume(&region, 1);
  ------------------
  |  |   50|  10.7k|	do {                              \
  |  |   51|  10.7k|		isc_region_t *_r = (r);   \
  |  |   52|  10.7k|		unsigned int  _l = (l);   \
  |  |   53|  10.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  10.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  10.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 10.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  10.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  10.7k|		_r->base += _l;           \
  |  |   55|  10.7k|		_r->length -= _l;         \
  |  |   56|  10.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 10.7k]
  |  |  ------------------
  ------------------
   90|  10.7k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  10.7k|	{                                  \
  |  |  277|  10.7k|		isc_result_t _r = (x);     \
  |  |  278|  10.7k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 10.7k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  10.7k|	}
  ------------------
   91|  10.7k|	}
   92|  1.33k|	return ISC_R_SUCCESS;
   93|  1.33k|}

rdata.c:fromwire_in_px:
  111|  1.54k|fromwire_in_px(ARGS_FROMWIRE) {
  112|  1.54k|	dns_name_t name;
  113|  1.54k|	isc_region_t sregion;
  114|       |
  115|  1.54k|	REQUIRE(type == dns_rdatatype_px);
  ------------------
  |  |  198|  1.54k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.54k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.54k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.54k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  1.54k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.54k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.54k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.54k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.54k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|  1.54k|	UNUSED(type);
  ------------------
  |  |   69|  1.54k|#define UNUSED(x) (void)(x)
  ------------------
  119|  1.54k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.54k|#define UNUSED(x) (void)(x)
  ------------------
  120|       |
  121|  1.54k|	dctx = dns_decompress_setpermitted(dctx, false);
  122|       |
  123|  1.54k|	dns_name_init(&name);
  124|       |
  125|       |	/*
  126|       |	 * Preference.
  127|       |	 */
  128|  1.54k|	isc_buffer_activeregion(source, &sregion);
  129|  1.54k|	if (sregion.length < 2) {
  ------------------
  |  Branch (129:6): [True: 3, False: 1.54k]
  ------------------
  130|      3|		return ISC_R_UNEXPECTEDEND;
  131|      3|	}
  132|  1.54k|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|  1.54k|	{                                  \
  |  |  277|  1.54k|		isc_result_t _r = (x);     \
  |  |  278|  1.54k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 198, False: 1.34k]
  |  |  ------------------
  |  |  279|    198|			return ((_r));     \
  |  |  280|    198|		}                          \
  |  |  281|  1.54k|	}
  ------------------
  133|  1.34k|	isc_buffer_forward(source, 2);
  134|       |
  135|       |	/*
  136|       |	 * MAP822.
  137|       |	 */
  138|  1.34k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  1.34k|	{                                  \
  |  |  277|  1.34k|		isc_result_t _r = (x);     \
  |  |  278|  1.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 127, False: 1.22k]
  |  |  ------------------
  |  |  279|    127|			return ((_r));     \
  |  |  280|    127|		}                          \
  |  |  281|  1.34k|	}
  ------------------
  139|       |
  140|       |	/*
  141|       |	 * MAPX400.
  142|       |	 */
  143|  1.22k|	return dns_name_fromwire(&name, source, dctx, target);
  144|  1.34k|}
rdata.c:towire_in_px:
  147|    442|towire_in_px(ARGS_TOWIRE) {
  148|    442|	dns_name_t name;
  149|    442|	isc_region_t region;
  150|       |
  151|    442|	REQUIRE(rdata->type == dns_rdatatype_px);
  ------------------
  |  |  198|    442|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    442|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 442, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    442|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  152|    442|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    442|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    442|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 442, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    442|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  153|    442|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    442|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    442|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 442, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    442|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  154|       |
  155|    442|	dns_compress_setpermitted(cctx, false);
  156|       |	/*
  157|       |	 * Preference.
  158|       |	 */
  159|    442|	dns_rdata_toregion(rdata, &region);
  160|    442|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    442|	{                                  \
  |  |  277|    442|		isc_result_t _r = (x);     \
  |  |  278|    442|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 441]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    442|	}
  ------------------
  161|    441|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    441|	do {                              \
  |  |   51|    441|		isc_region_t *_r = (r);   \
  |  |   52|    441|		unsigned int  _l = (l);   \
  |  |   53|    441|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    441|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    441|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 441, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    441|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    441|		_r->base += _l;           \
  |  |   55|    441|		_r->length -= _l;         \
  |  |   56|    441|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 441]
  |  |  ------------------
  ------------------
  162|       |
  163|       |	/*
  164|       |	 * MAP822.
  165|       |	 */
  166|    441|	dns_name_init(&name);
  167|    441|	dns_name_fromregion(&name, &region);
  168|    441|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    441|	{                                  \
  |  |  277|    441|		isc_result_t _r = (x);     \
  |  |  278|    441|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 440]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    441|	}
  ------------------
  169|    440|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    440|	do {                              \
  |  |   51|    440|		isc_region_t *_r = (r);   \
  |  |   52|    440|		unsigned int  _l = (l);   \
  |  |   53|    440|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    440|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    440|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 440, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    440|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    440|		_r->base += _l;           \
  |  |   55|    440|		_r->length -= _l;         \
  |  |   56|    440|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 440]
  |  |  ------------------
  ------------------
  170|       |
  171|       |	/*
  172|       |	 * MAPX400.
  173|       |	 */
  174|    440|	dns_name_init(&name);
  175|    440|	dns_name_fromregion(&name, &region);
  176|    440|	return dns_name_towire(&name, cctx, target);
  177|    441|}
rdata.c:totext_in_px:
   66|    876|totext_in_px(ARGS_TOTEXT) {
   67|    876|	isc_region_t region;
   68|    876|	dns_name_t name;
   69|    876|	dns_name_t prefix;
   70|    876|	unsigned int opts;
   71|    876|	char buf[sizeof("64000")];
   72|    876|	unsigned short num;
   73|       |
   74|    876|	REQUIRE(rdata->type == dns_rdatatype_px);
  ------------------
  |  |  198|    876|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    876|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 876, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    876|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   75|    876|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    876|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    876|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 876, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    876|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   76|    876|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    876|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    876|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 876, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    876|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   77|       |
   78|    876|	dns_name_init(&name);
   79|    876|	dns_name_init(&prefix);
   80|       |
   81|       |	/*
   82|       |	 * Preference.
   83|       |	 */
   84|    876|	dns_rdata_toregion(rdata, &region);
   85|    876|	num = uint16_fromregion(&region);
   86|    876|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    876|	do {                              \
  |  |   51|    876|		isc_region_t *_r = (r);   \
  |  |   52|    876|		unsigned int  _l = (l);   \
  |  |   53|    876|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    876|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    876|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 876, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    876|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    876|		_r->base += _l;           \
  |  |   55|    876|		_r->length -= _l;         \
  |  |   56|    876|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 876]
  |  |  ------------------
  ------------------
   87|    876|	snprintf(buf, sizeof(buf), "%u", num);
   88|    876|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    876|	{                                  \
  |  |  277|    876|		isc_result_t _r = (x);     \
  |  |  278|    876|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 876]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    876|	}
  ------------------
   89|    876|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    876|	{                                  \
  |  |  277|    876|		isc_result_t _r = (x);     \
  |  |  278|    876|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 876]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    876|	}
  ------------------
   90|       |
   91|       |	/*
   92|       |	 * MAP822.
   93|       |	 */
   94|    876|	dns_name_fromregion(&name, &region);
   95|    876|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (95:9): [True: 0, False: 876]
  ------------------
   96|    876|							 : 0;
   97|    876|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    876|	do {                              \
  |  |   51|    876|		isc_region_t *_r = (r);   \
  |  |   52|    876|		unsigned int  _l = (l);   \
  |  |   53|    876|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    876|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    876|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 876, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    876|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    876|		_r->base += _l;           \
  |  |   55|    876|		_r->length -= _l;         \
  |  |   56|    876|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 876]
  |  |  ------------------
  ------------------
   98|    876|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|    876|	{                                  \
  |  |  277|    876|		isc_result_t _r = (x);     \
  |  |  278|    876|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 876]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    876|	}
  ------------------
   99|    876|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    876|	{                                  \
  |  |  277|    876|		isc_result_t _r = (x);     \
  |  |  278|    876|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 876]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    876|	}
  ------------------
  100|       |
  101|       |	/*
  102|       |	 * MAPX400.
  103|       |	 */
  104|    876|	dns_name_fromregion(&name, &region);
  105|    876|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (105:9): [True: 0, False: 876]
  ------------------
  106|    876|							 : 0;
  107|    876|	return dns_name_totext(&prefix, opts, target);
  108|    876|}

rdata.c:fromwire_in_srv:
  146|  1.26k|fromwire_in_srv(ARGS_FROMWIRE) {
  147|  1.26k|	dns_name_t name;
  148|  1.26k|	isc_region_t sr;
  149|       |
  150|  1.26k|	REQUIRE(type == dns_rdatatype_srv);
  ------------------
  |  |  198|  1.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  151|  1.26k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  152|       |
  153|  1.26k|	UNUSED(type);
  ------------------
  |  |   69|  1.26k|#define UNUSED(x) (void)(x)
  ------------------
  154|  1.26k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.26k|#define UNUSED(x) (void)(x)
  ------------------
  155|       |
  156|  1.26k|	dctx = dns_decompress_setpermitted(dctx, false);
  157|       |
  158|  1.26k|	dns_name_init(&name);
  159|       |
  160|       |	/*
  161|       |	 * Priority, weight, port.
  162|       |	 */
  163|  1.26k|	isc_buffer_activeregion(source, &sr);
  164|  1.26k|	if (sr.length < 6) {
  ------------------
  |  Branch (164:6): [True: 4, False: 1.26k]
  ------------------
  165|      4|		return ISC_R_UNEXPECTEDEND;
  166|      4|	}
  167|  1.26k|	RETERR(mem_tobuffer(target, sr.base, 6));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 198, False: 1.06k]
  |  |  ------------------
  |  |  279|    198|			return ((_r));     \
  |  |  280|    198|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  168|  1.06k|	isc_buffer_forward(source, 6);
  169|       |
  170|       |	/*
  171|       |	 * Target.
  172|       |	 */
  173|  1.06k|	return dns_name_fromwire(&name, source, dctx, target);
  174|  1.26k|}
rdata.c:towire_in_srv:
  177|    384|towire_in_srv(ARGS_TOWIRE) {
  178|    384|	dns_name_t name;
  179|    384|	isc_region_t sr;
  180|       |
  181|    384|	REQUIRE(rdata->type == dns_rdatatype_srv);
  ------------------
  |  |  198|    384|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    384|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 384, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    384|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  182|    384|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    384|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    384|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 384, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    384|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  183|       |
  184|    384|	dns_compress_setpermitted(cctx, false);
  185|       |	/*
  186|       |	 * Priority, weight, port.
  187|       |	 */
  188|    384|	dns_rdata_toregion(rdata, &sr);
  189|    384|	RETERR(mem_tobuffer(target, sr.base, 6));
  ------------------
  |  |  276|    384|	{                                  \
  |  |  277|    384|		isc_result_t _r = (x);     \
  |  |  278|    384|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 382]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|    384|	}
  ------------------
  190|    382|	isc_region_consume(&sr, 6);
  ------------------
  |  |   50|    382|	do {                              \
  |  |   51|    382|		isc_region_t *_r = (r);   \
  |  |   52|    382|		unsigned int  _l = (l);   \
  |  |   53|    382|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    382|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    382|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 382, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    382|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    382|		_r->base += _l;           \
  |  |   55|    382|		_r->length -= _l;         \
  |  |   56|    382|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 382]
  |  |  ------------------
  ------------------
  191|       |
  192|       |	/*
  193|       |	 * Target.
  194|       |	 */
  195|    382|	dns_name_init(&name);
  196|    382|	dns_name_fromregion(&name, &sr);
  197|    382|	return dns_name_towire(&name, cctx, target);
  198|    384|}
rdata.c:totext_in_srv:
   93|    760|totext_in_srv(ARGS_TOTEXT) {
   94|    760|	isc_region_t region;
   95|    760|	dns_name_t name;
   96|    760|	dns_name_t prefix;
   97|    760|	unsigned int opts;
   98|    760|	char buf[sizeof("64000")];
   99|    760|	unsigned short num;
  100|       |
  101|    760|	REQUIRE(rdata->type == dns_rdatatype_srv);
  ------------------
  |  |  198|    760|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    760|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 760, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    760|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|    760|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    760|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    760|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 760, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    760|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|    760|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    760|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    760|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 760, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    760|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|       |
  105|    760|	dns_name_init(&name);
  106|    760|	dns_name_init(&prefix);
  107|       |
  108|       |	/*
  109|       |	 * Priority.
  110|       |	 */
  111|    760|	dns_rdata_toregion(rdata, &region);
  112|    760|	num = uint16_fromregion(&region);
  113|    760|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    760|	do {                              \
  |  |   51|    760|		isc_region_t *_r = (r);   \
  |  |   52|    760|		unsigned int  _l = (l);   \
  |  |   53|    760|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    760|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    760|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 760, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    760|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    760|		_r->base += _l;           \
  |  |   55|    760|		_r->length -= _l;         \
  |  |   56|    760|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 760]
  |  |  ------------------
  ------------------
  114|    760|	snprintf(buf, sizeof(buf), "%u", num);
  115|    760|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  116|    760|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  117|       |
  118|       |	/*
  119|       |	 * Weight.
  120|       |	 */
  121|    760|	num = uint16_fromregion(&region);
  122|    760|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    760|	do {                              \
  |  |   51|    760|		isc_region_t *_r = (r);   \
  |  |   52|    760|		unsigned int  _l = (l);   \
  |  |   53|    760|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    760|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    760|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 760, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    760|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    760|		_r->base += _l;           \
  |  |   55|    760|		_r->length -= _l;         \
  |  |   56|    760|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 760]
  |  |  ------------------
  ------------------
  123|    760|	snprintf(buf, sizeof(buf), "%u", num);
  124|    760|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  125|    760|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  126|       |
  127|       |	/*
  128|       |	 * Port.
  129|       |	 */
  130|    760|	num = uint16_fromregion(&region);
  131|    760|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    760|	do {                              \
  |  |   51|    760|		isc_region_t *_r = (r);   \
  |  |   52|    760|		unsigned int  _l = (l);   \
  |  |   53|    760|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    760|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    760|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 760, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    760|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    760|		_r->base += _l;           \
  |  |   55|    760|		_r->length -= _l;         \
  |  |   56|    760|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 760]
  |  |  ------------------
  ------------------
  132|    760|	snprintf(buf, sizeof(buf), "%u", num);
  133|    760|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  134|    760|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  135|       |
  136|       |	/*
  137|       |	 * Target.
  138|       |	 */
  139|    760|	dns_name_fromregion(&name, &region);
  140|    760|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (140:9): [True: 0, False: 760]
  ------------------
  141|    760|							 : 0;
  142|    760|	return dns_name_totext(&prefix, opts, target);
  143|    760|}

rdata.c:fromwire_in_svcb:
  918|  6.00k|fromwire_in_svcb(ARGS_FROMWIRE) {
  919|  6.00k|	REQUIRE(type == dns_rdatatype_svcb);
  ------------------
  |  |  198|  6.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  920|  6.00k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  6.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  921|       |
  922|  6.00k|	return generic_fromwire_in_svcb(CALL_FROMWIRE);
  ------------------
  |  |   91|  6.00k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  923|  6.00k|}
rdata.c:generic_fromwire_in_svcb:
  781|  8.84k|generic_fromwire_in_svcb(ARGS_FROMWIRE) {
  782|  8.84k|	dns_name_t name;
  783|  8.84k|	isc_region_t region, man = { .base = NULL, .length = 0 };
  784|  8.84k|	bool first = true, have_alpn = false;
  785|  8.84k|	uint16_t lastkey = 0, mankey = 0;
  786|       |
  787|  8.84k|	UNUSED(type);
  ------------------
  |  |   69|  8.84k|#define UNUSED(x) (void)(x)
  ------------------
  788|  8.84k|	UNUSED(rdclass);
  ------------------
  |  |   69|  8.84k|#define UNUSED(x) (void)(x)
  ------------------
  789|       |
  790|  8.84k|	dctx = dns_decompress_setpermitted(dctx, false);
  791|       |
  792|  8.84k|	dns_name_init(&name);
  793|       |
  794|       |	/*
  795|       |	 * SvcPriority.
  796|       |	 */
  797|  8.84k|	isc_buffer_activeregion(source, &region);
  798|  8.84k|	if (region.length < 2) {
  ------------------
  |  Branch (798:6): [True: 6, False: 8.83k]
  ------------------
  799|      6|		return ISC_R_UNEXPECTEDEND;
  800|      6|	}
  801|  8.83k|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  8.83k|	{                                  \
  |  |  277|  8.83k|		isc_result_t _r = (x);     \
  |  |  278|  8.83k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 267, False: 8.56k]
  |  |  ------------------
  |  |  279|    267|			return ((_r));     \
  |  |  280|    267|		}                          \
  |  |  281|  8.83k|	}
  ------------------
  802|  8.56k|	isc_buffer_forward(source, 2);
  803|       |
  804|       |	/*
  805|       |	 * TargetName.
  806|       |	 */
  807|  8.56k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  8.56k|	{                                  \
  |  |  277|  8.56k|		isc_result_t _r = (x);     \
  |  |  278|  8.56k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 206, False: 8.36k]
  |  |  ------------------
  |  |  279|    206|			return ((_r));     \
  |  |  280|    206|		}                          \
  |  |  281|  8.56k|	}
  ------------------
  808|       |
  809|       |	/*
  810|       |	 * SvcParams.
  811|       |	 */
  812|  8.36k|	isc_buffer_activeregion(source, &region);
  813|  16.7k|	while (region.length > 0U) {
  ------------------
  |  Branch (813:9): [True: 9.49k, False: 7.26k]
  ------------------
  814|  9.49k|		isc_region_t keyregion;
  815|  9.49k|		uint16_t key, len;
  816|       |
  817|       |		/*
  818|       |		 * SvcParamKey
  819|       |		 */
  820|  9.49k|		if (region.length < 2U) {
  ------------------
  |  Branch (820:7): [True: 4, False: 9.49k]
  ------------------
  821|      4|			return ISC_R_UNEXPECTEDEND;
  822|      4|		}
  823|  9.49k|		RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  9.49k|	{                                  \
  |  |  277|  9.49k|		isc_result_t _r = (x);     \
  |  |  278|  9.49k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 202, False: 9.29k]
  |  |  ------------------
  |  |  279|    202|			return ((_r));     \
  |  |  280|    202|		}                          \
  |  |  281|  9.49k|	}
  ------------------
  824|  9.29k|		key = uint16_fromregion(&region);
  825|  9.29k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  9.29k|	do {                              \
  |  |   51|  9.29k|		isc_region_t *_r = (r);   \
  |  |   52|  9.29k|		unsigned int  _l = (l);   \
  |  |   53|  9.29k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  9.29k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  9.29k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 9.29k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  9.29k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  9.29k|		_r->base += _l;           \
  |  |   55|  9.29k|		_r->length -= _l;         \
  |  |   56|  9.29k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 9.29k]
  |  |  ------------------
  ------------------
  826|       |
  827|       |		/*
  828|       |		 * Keys must be unique and in order.
  829|       |		 */
  830|  9.29k|		if (!first && key <= lastkey) {
  ------------------
  |  Branch (830:7): [True: 2.41k, False: 6.87k]
  |  Branch (830:17): [True: 7, False: 2.41k]
  ------------------
  831|      7|			return DNS_R_FORMERR;
  832|      7|		}
  833|       |
  834|       |		/*
  835|       |		 * Check mandatory keys.
  836|       |		 */
  837|  9.28k|		if (mankey != 0) {
  ------------------
  |  Branch (837:7): [True: 1.31k, False: 7.97k]
  ------------------
  838|       |			/* Missing mandatory key? */
  839|  1.31k|			if (key > mankey) {
  ------------------
  |  Branch (839:8): [True: 13, False: 1.30k]
  ------------------
  840|     13|				return DNS_R_FORMERR;
  841|     13|			}
  842|  1.30k|			if (key == mankey) {
  ------------------
  |  Branch (842:8): [True: 1.27k, False: 28]
  ------------------
  843|       |				/* Get next mandatory key. */
  844|  1.27k|				if (man.length >= 2) {
  ------------------
  |  Branch (844:9): [True: 512, False: 760]
  ------------------
  845|    512|					mankey = uint16_fromregion(&man);
  846|    512|					isc_region_consume(&man, 2);
  ------------------
  |  |   50|    512|	do {                              \
  |  |   51|    512|		isc_region_t *_r = (r);   \
  |  |   52|    512|		unsigned int  _l = (l);   \
  |  |   53|    512|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    512|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    512|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 512, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    512|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    512|		_r->base += _l;           \
  |  |   55|    512|		_r->length -= _l;         \
  |  |   56|    512|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 512]
  |  |  ------------------
  ------------------
  847|    760|				} else {
  848|    760|					mankey = 0;
  849|    760|				}
  850|  1.27k|			}
  851|  1.30k|		}
  852|       |
  853|       |		/*
  854|       |		 * Check alpn present when no-default-alpn is set.
  855|       |		 */
  856|  9.27k|		if (key == SVCB_ALPN_KEY) {
  ------------------
  |  |   22|  9.27k|#define SVCB_ALPN_KEY		 1
  ------------------
  |  Branch (856:7): [True: 2.21k, False: 7.05k]
  ------------------
  857|  2.21k|			have_alpn = true;
  858|  7.05k|		} else if (key == SVCB_NO_DEFAULT_ALPN_KEY && !have_alpn) {
  ------------------
  |  |   23|  14.1k|#define SVCB_NO_DEFAULT_ALPN_KEY 2
  ------------------
  |  Branch (858:14): [True: 378, False: 6.67k]
  |  Branch (858:49): [True: 1, False: 377]
  ------------------
  859|      1|			return DNS_R_FORMERR;
  860|      1|		}
  861|       |
  862|  9.27k|		first = false;
  863|  9.27k|		lastkey = key;
  864|       |
  865|       |		/*
  866|       |		 * SvcParamValue length.
  867|       |		 */
  868|  9.27k|		if (region.length < 2U) {
  ------------------
  |  Branch (868:7): [True: 47, False: 9.22k]
  ------------------
  869|     47|			return ISC_R_UNEXPECTEDEND;
  870|     47|		}
  871|  9.22k|		RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  9.22k|	{                                  \
  |  |  277|  9.22k|		isc_result_t _r = (x);     \
  |  |  278|  9.22k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 326, False: 8.89k]
  |  |  ------------------
  |  |  279|    326|			return ((_r));     \
  |  |  280|    326|		}                          \
  |  |  281|  9.22k|	}
  ------------------
  872|  8.89k|		len = uint16_fromregion(&region);
  873|  8.89k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  8.89k|	do {                              \
  |  |   51|  8.89k|		isc_region_t *_r = (r);   \
  |  |   52|  8.89k|		unsigned int  _l = (l);   \
  |  |   53|  8.89k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.89k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.89k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.89k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.89k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.89k|		_r->base += _l;           \
  |  |   55|  8.89k|		_r->length -= _l;         \
  |  |   56|  8.89k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.89k]
  |  |  ------------------
  ------------------
  874|       |
  875|       |		/*
  876|       |		 * SvcParamValue.
  877|       |		 */
  878|  8.89k|		if (region.length < len) {
  ------------------
  |  Branch (878:7): [True: 16, False: 8.88k]
  ------------------
  879|     16|			return ISC_R_UNEXPECTEDEND;
  880|     16|		}
  881|       |
  882|       |		/*
  883|       |		 * Remember manatory key.
  884|       |		 */
  885|  8.88k|		if (key == SVCB_MAN_KEY) {
  ------------------
  |  |   21|  8.88k|#define SVCB_MAN_KEY		 0
  ------------------
  |  Branch (885:7): [True: 840, False: 8.04k]
  ------------------
  886|    840|			man = region;
  887|    840|			man.length = len;
  888|       |			/* Get first mandatory key */
  889|    840|			if (man.length >= 2) {
  ------------------
  |  Branch (889:8): [True: 835, False: 5]
  ------------------
  890|    835|				mankey = uint16_fromregion(&man);
  891|    835|				isc_region_consume(&man, 2);
  ------------------
  |  |   50|    835|	do {                              \
  |  |   51|    835|		isc_region_t *_r = (r);   \
  |  |   52|    835|		unsigned int  _l = (l);   \
  |  |   53|    835|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    835|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    835|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 835, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    835|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    835|		_r->base += _l;           \
  |  |   55|    835|		_r->length -= _l;         \
  |  |   56|    835|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 835]
  |  |  ------------------
  ------------------
  892|    835|				if (mankey == SVCB_MAN_KEY) {
  ------------------
  |  |   21|    835|#define SVCB_MAN_KEY		 0
  ------------------
  |  Branch (892:9): [True: 1, False: 834]
  ------------------
  893|      1|					return DNS_R_FORMERR;
  894|      1|				}
  895|    835|			} else {
  896|      5|				return DNS_R_FORMERR;
  897|      5|			}
  898|    840|		}
  899|  8.87k|		keyregion = region;
  900|  8.87k|		keyregion.length = len;
  901|  8.87k|		RETERR(svcb_validate(key, &keyregion));
  ------------------
  |  |  276|  8.87k|	{                                  \
  |  |  277|  8.87k|		isc_result_t _r = (x);     \
  |  |  278|  8.87k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 8.68k]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|  8.87k|	}
  ------------------
  902|  8.68k|		RETERR(mem_tobuffer(target, region.base, len));
  ------------------
  |  |  276|  8.68k|	{                                  \
  |  |  277|  8.68k|		isc_result_t _r = (x);     \
  |  |  278|  8.68k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 278, False: 8.40k]
  |  |  ------------------
  |  |  279|    278|			return ((_r));     \
  |  |  280|    278|		}                          \
  |  |  281|  8.68k|	}
  ------------------
  903|  8.40k|		isc_region_consume(&region, len);
  ------------------
  |  |   50|  8.40k|	do {                              \
  |  |   51|  8.40k|		isc_region_t *_r = (r);   \
  |  |   52|  8.40k|		unsigned int  _l = (l);   \
  |  |   53|  8.40k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.40k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.40k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.40k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.40k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.40k|		_r->base += _l;           \
  |  |   55|  8.40k|		_r->length -= _l;         \
  |  |   56|  8.40k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.40k]
  |  |  ------------------
  ------------------
  904|  8.40k|		isc_buffer_forward(source, len + 4);
  905|  8.40k|	}
  906|       |
  907|       |	/*
  908|       |	 * Do we have an outstanding mandatory key?
  909|       |	 */
  910|  7.26k|	if (mankey != 0) {
  ------------------
  |  Branch (910:6): [True: 24, False: 7.24k]
  ------------------
  911|     24|		return DNS_R_FORMERR;
  912|     24|	}
  913|       |
  914|  7.24k|	return ISC_R_SUCCESS;
  915|  7.26k|}
rdata.c:svcb_validate:
   96|  8.87k|svcb_validate(uint16_t key, isc_region_t *region) {
   97|  8.87k|	size_t i;
   98|       |
   99|  79.4k|	for (i = 0; i < ARRAY_SIZE(sbpr); i++) {
  ------------------
  |  |   98|  79.4k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (99:14): [True: 70.7k, False: 8.68k]
  ------------------
  100|  70.7k|		if (sbpr[i].value == key) {
  ------------------
  |  Branch (100:7): [True: 6.61k, False: 64.1k]
  ------------------
  101|  6.61k|			switch (sbpr[i].encoding) {
  ------------------
  |  Branch (101:12): [True: 6.61k, False: 0]
  ------------------
  102|    313|			case sbpr_port:
  ------------------
  |  Branch (102:4): [True: 313, False: 6.29k]
  ------------------
  103|    313|				if (region->length != 2) {
  ------------------
  |  Branch (103:9): [True: 3, False: 310]
  ------------------
  104|      3|					return DNS_R_FORMERR;
  105|      3|				}
  106|    310|				break;
  107|    313|			case sbpr_ipv4s:
  ------------------
  |  Branch (107:4): [True: 313, False: 6.29k]
  ------------------
  108|    313|				if ((region->length % 4) != 0 ||
  ------------------
  |  Branch (108:9): [True: 1, False: 312]
  ------------------
  109|    312|				    region->length == 0)
  ------------------
  |  Branch (109:9): [True: 1, False: 311]
  ------------------
  110|      2|				{
  111|      2|					return DNS_R_FORMERR;
  112|      2|				}
  113|    311|				break;
  114|    374|			case sbpr_ipv6s:
  ------------------
  |  Branch (114:4): [True: 374, False: 6.23k]
  ------------------
  115|    374|				if ((region->length % 16) != 0 ||
  ------------------
  |  Branch (115:9): [True: 2, False: 372]
  ------------------
  116|    372|				    region->length == 0)
  ------------------
  |  Branch (116:9): [True: 2, False: 370]
  ------------------
  117|      4|				{
  118|      4|					return DNS_R_FORMERR;
  119|      4|				}
  120|    370|				break;
  121|  1.90k|			case sbpr_alpn: {
  ------------------
  |  Branch (121:4): [True: 1.90k, False: 4.70k]
  ------------------
  122|  1.90k|				if (region->length == 0) {
  ------------------
  |  Branch (122:9): [True: 2, False: 1.90k]
  ------------------
  123|      2|					return DNS_R_FORMERR;
  124|      2|				}
  125|  4.25k|				while (region->length != 0) {
  ------------------
  |  Branch (125:12): [True: 2.35k, False: 1.89k]
  ------------------
  126|  2.35k|					size_t l = *region->base + 1;
  127|  2.35k|					if (l == 1U || l > region->length) {
  ------------------
  |  Branch (127:10): [True: 7, False: 2.35k]
  |  Branch (127:21): [True: 7, False: 2.34k]
  ------------------
  128|     14|						return DNS_R_FORMERR;
  129|     14|					}
  130|  2.34k|					isc_region_consume(region, l);
  ------------------
  |  |   50|  2.34k|	do {                              \
  |  |   51|  2.34k|		isc_region_t *_r = (r);   \
  |  |   52|  2.34k|		unsigned int  _l = (l);   \
  |  |   53|  2.34k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.34k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.34k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.34k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.34k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.34k|		_r->base += _l;           \
  |  |   55|  2.34k|		_r->length -= _l;         \
  |  |   56|  2.34k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.34k]
  |  |  ------------------
  ------------------
  131|  2.34k|				}
  132|  1.89k|				break;
  133|  1.90k|			}
  134|  1.89k|			case sbpr_keylist: {
  ------------------
  |  Branch (134:4): [True: 834, False: 5.77k]
  ------------------
  135|    834|				if ((region->length % 2) != 0 ||
  ------------------
  |  Branch (135:9): [True: 2, False: 832]
  ------------------
  136|    832|				    region->length == 0)
  ------------------
  |  Branch (136:9): [True: 0, False: 832]
  ------------------
  137|      2|				{
  138|      2|					return DNS_R_FORMERR;
  139|      2|				}
  140|       |				/* In order? */
  141|  1.41k|				while (region->length >= 4) {
  ------------------
  |  Branch (141:12): [True: 597, False: 814]
  ------------------
  142|    597|					if (region->base[0] > region->base[2] ||
  ------------------
  |  Branch (142:10): [True: 14, False: 583]
  ------------------
  143|    583|					    (region->base[0] ==
  ------------------
  |  Branch (143:11): [True: 27, False: 556]
  ------------------
  144|    583|						     region->base[2] &&
  145|     27|					     region->base[1] >=
  ------------------
  |  Branch (145:11): [True: 4, False: 23]
  ------------------
  146|     27|						     region->base[3]))
  147|     18|					{
  148|     18|						return DNS_R_FORMERR;
  149|     18|					}
  150|    579|					isc_region_consume(region, 2);
  ------------------
  |  |   50|    579|	do {                              \
  |  |   51|    579|		isc_region_t *_r = (r);   \
  |  |   52|    579|		unsigned int  _l = (l);   \
  |  |   53|    579|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    579|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    579|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 579, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    579|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    579|		_r->base += _l;           \
  |  |   55|    579|		_r->length -= _l;         \
  |  |   56|    579|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 579]
  |  |  ------------------
  ------------------
  151|    579|				}
  152|    814|				break;
  153|    832|			}
  154|    814|			case sbpr_text:
  ------------------
  |  Branch (154:4): [True: 0, False: 6.61k]
  ------------------
  155|    120|			case sbpr_base64:
  ------------------
  |  Branch (155:4): [True: 120, False: 6.49k]
  ------------------
  156|    120|				break;
  157|  2.37k|			case sbpr_dohpath:
  ------------------
  |  Branch (157:4): [True: 2.37k, False: 4.23k]
  ------------------
  158|  2.37k|				if (!validate_dohpath(region)) {
  ------------------
  |  Branch (158:9): [True: 145, False: 2.22k]
  ------------------
  159|    145|					return DNS_R_FORMERR;
  160|    145|				}
  161|  2.22k|				break;
  162|  2.22k|			case sbpr_empty:
  ------------------
  |  Branch (162:4): [True: 376, False: 6.23k]
  ------------------
  163|    376|				if (region->length != 0) {
  ------------------
  |  Branch (163:9): [True: 4, False: 372]
  ------------------
  164|      4|					return DNS_R_FORMERR;
  165|      4|				}
  166|    372|				break;
  167|  6.61k|			}
  168|  6.61k|		}
  169|  70.7k|	}
  170|  8.68k|	return ISC_R_SUCCESS;
  171|  8.87k|}
rdata.c:towire_in_svcb:
  956|  1.77k|towire_in_svcb(ARGS_TOWIRE) {
  957|  1.77k|	REQUIRE(rdata->type == dns_rdatatype_svcb);
  ------------------
  |  |  198|  1.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  958|  1.77k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  959|       |
  960|  1.77k|	return generic_towire_in_svcb(CALL_TOWIRE);
  ------------------
  |  |   96|  1.77k|#define CALL_TOWIRE rdata, cctx, target
  ------------------
  961|  1.77k|}
rdata.c:generic_towire_in_svcb:
  926|  3.09k|generic_towire_in_svcb(ARGS_TOWIRE) {
  927|  3.09k|	dns_name_t name;
  928|  3.09k|	isc_region_t region;
  929|       |
  930|  3.09k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  931|       |
  932|  3.09k|	dns_compress_setpermitted(cctx, false);
  933|       |
  934|       |	/*
  935|       |	 * SvcPriority.
  936|       |	 */
  937|  3.09k|	dns_rdata_toregion(rdata, &region);
  938|  3.09k|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  3.09k|	{                                  \
  |  |  277|  3.09k|		isc_result_t _r = (x);     \
  |  |  278|  3.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 3.08k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  3.09k|	}
  ------------------
  939|  3.08k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  3.08k|	do {                              \
  |  |   51|  3.08k|		isc_region_t *_r = (r);   \
  |  |   52|  3.08k|		unsigned int  _l = (l);   \
  |  |   53|  3.08k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.08k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.08k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.08k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.08k|		_r->base += _l;           \
  |  |   55|  3.08k|		_r->length -= _l;         \
  |  |   56|  3.08k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.08k]
  |  |  ------------------
  ------------------
  940|       |
  941|       |	/*
  942|       |	 * TargetName.
  943|       |	 */
  944|  3.08k|	dns_name_init(&name);
  945|  3.08k|	dns_name_fromregion(&name, &region);
  946|  3.08k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  3.08k|	{                                  \
  |  |  277|  3.08k|		isc_result_t _r = (x);     \
  |  |  278|  3.08k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 3.08k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  3.08k|	}
  ------------------
  947|  3.08k|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|  3.08k|	do {                              \
  |  |   51|  3.08k|		isc_region_t *_r = (r);   \
  |  |   52|  3.08k|		unsigned int  _l = (l);   \
  |  |   53|  3.08k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.08k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.08k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.08k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.08k|		_r->base += _l;           \
  |  |   55|  3.08k|		_r->length -= _l;         \
  |  |   56|  3.08k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.08k]
  |  |  ------------------
  ------------------
  948|       |
  949|       |	/*
  950|       |	 * SvcParams.
  951|       |	 */
  952|  3.08k|	return mem_tobuffer(target, region.base, region.length);
  953|  3.08k|}
rdata.c:totext_in_svcb:
  772|  3.44k|totext_in_svcb(ARGS_TOTEXT) {
  773|  3.44k|	REQUIRE(rdata->type == dns_rdatatype_svcb);
  ------------------
  |  |  198|  3.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|  3.44k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  775|  3.44k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  776|       |
  777|  3.44k|	return generic_totext_in_svcb(CALL_TOTEXT);
  ------------------
  |  |   85|  3.44k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  778|  3.44k|}
rdata.c:generic_totext_in_svcb:
  637|  6.02k|generic_totext_in_svcb(ARGS_TOTEXT) {
  638|  6.02k|	isc_region_t region;
  639|  6.02k|	dns_name_t name;
  640|  6.02k|	dns_name_t prefix;
  641|  6.02k|	unsigned int opts;
  642|  6.02k|	char buf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
  643|  6.02k|	unsigned short num;
  644|  6.02k|	int n;
  645|  6.02k|	bool compat = (tctx->flags & DNS_STYLEFLAG_SVCPARAMKEYCOMPAT) != 0;
  ------------------
  |  |  207|  6.02k|#define DNS_STYLEFLAG_SVCPARAMKEYCOMPAT 0x00000040ULL
  ------------------
  646|       |
  647|  6.02k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  6.02k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.02k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.02k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  648|       |
  649|  6.02k|	dns_name_init(&name);
  650|  6.02k|	dns_name_init(&prefix);
  651|       |
  652|  6.02k|	dns_rdata_toregion(rdata, &region);
  653|       |
  654|       |	/*
  655|       |	 * SvcPriority.
  656|       |	 */
  657|  6.02k|	num = uint16_fromregion(&region);
  658|  6.02k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  6.02k|	do {                              \
  |  |   51|  6.02k|		isc_region_t *_r = (r);   \
  |  |   52|  6.02k|		unsigned int  _l = (l);   \
  |  |   53|  6.02k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.02k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.02k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.02k|		_r->base += _l;           \
  |  |   55|  6.02k|		_r->length -= _l;         \
  |  |   56|  6.02k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.02k]
  |  |  ------------------
  ------------------
  659|  6.02k|	n = snprintf(buf, sizeof(buf), "%u ", num);
  660|  6.02k|	INSIST(n > 0 && (unsigned int)n < sizeof(buf));
  ------------------
  |  |  202|  6.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  12.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 6.02k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 6.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  6.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  661|  6.02k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  6.02k|	{                                  \
  |  |  277|  6.02k|		isc_result_t _r = (x);     \
  |  |  278|  6.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.02k|	}
  ------------------
  662|       |
  663|       |	/*
  664|       |	 * TargetName.
  665|       |	 */
  666|  6.02k|	dns_name_fromregion(&name, &region);
  667|  6.02k|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|  6.02k|	do {                              \
  |  |   51|  6.02k|		isc_region_t *_r = (r);   \
  |  |   52|  6.02k|		unsigned int  _l = (l);   \
  |  |   53|  6.02k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.02k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.02k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.02k|		_r->base += _l;           \
  |  |   55|  6.02k|		_r->length -= _l;         \
  |  |   56|  6.02k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.02k]
  |  |  ------------------
  ------------------
  668|  6.02k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (668:9): [True: 0, False: 6.02k]
  ------------------
  669|  6.02k|							 : 0;
  670|  6.02k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  6.02k|	{                                  \
  |  |  277|  6.02k|		isc_result_t _r = (x);     \
  |  |  278|  6.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.02k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.02k|	}
  ------------------
  671|       |
  672|  13.0k|	while (region.length > 0) {
  ------------------
  |  Branch (672:9): [True: 7.01k, False: 6.02k]
  ------------------
  673|  7.01k|		isc_region_t r;
  674|  7.01k|		enum encoding encoding;
  675|       |
  676|  7.01k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  7.01k|	{                                  \
  |  |  277|  7.01k|		isc_result_t _r = (x);     \
  |  |  278|  7.01k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.01k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.01k|	}
  ------------------
  677|       |
  678|  7.01k|		INSIST(region.length >= 2);
  ------------------
  |  |  202|  7.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.01k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.01k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  679|  7.01k|		num = uint16_fromregion(&region);
  680|  7.01k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  7.01k|	do {                              \
  |  |   51|  7.01k|		isc_region_t *_r = (r);   \
  |  |   52|  7.01k|		unsigned int  _l = (l);   \
  |  |   53|  7.01k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.01k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.01k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.01k|		_r->base += _l;           \
  |  |   55|  7.01k|		_r->length -= _l;         \
  |  |   56|  7.01k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.01k]
  |  |  ------------------
  ------------------
  681|  7.01k|		RETERR(str_totext(
  ------------------
  |  |  276|  7.01k|	{                                  \
  |  |  277|  7.01k|		isc_result_t _r = (x);     \
  |  |  278|  7.01k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.01k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.01k|	}
  ------------------
  682|  7.01k|			svcparamkey(num, &encoding, buf, sizeof(buf), compat),
  683|  7.01k|			target));
  684|       |
  685|  7.01k|		INSIST(region.length >= 2);
  ------------------
  |  |  202|  7.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.01k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.01k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  686|  7.01k|		num = uint16_fromregion(&region);
  687|  7.01k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  7.01k|	do {                              \
  |  |   51|  7.01k|		isc_region_t *_r = (r);   \
  |  |   52|  7.01k|		unsigned int  _l = (l);   \
  |  |   53|  7.01k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.01k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.01k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.01k|		_r->base += _l;           \
  |  |   55|  7.01k|		_r->length -= _l;         \
  |  |   56|  7.01k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.01k]
  |  |  ------------------
  ------------------
  688|       |
  689|  7.01k|		INSIST(region.length >= num);
  ------------------
  |  |  202|  7.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.01k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.01k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  690|  7.01k|		r = region;
  691|  7.01k|		r.length = num;
  692|  7.01k|		isc_region_consume(&region, num);
  ------------------
  |  |   50|  7.01k|	do {                              \
  |  |   51|  7.01k|		isc_region_t *_r = (r);   \
  |  |   52|  7.01k|		unsigned int  _l = (l);   \
  |  |   53|  7.01k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.01k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.01k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.01k|		_r->base += _l;           \
  |  |   55|  7.01k|		_r->length -= _l;         \
  |  |   56|  7.01k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.01k]
  |  |  ------------------
  ------------------
  693|  7.01k|		if (num == 0) {
  ------------------
  |  Branch (693:7): [True: 1.36k, False: 5.65k]
  ------------------
  694|  1.36k|			continue;
  695|  1.36k|		}
  696|  5.65k|		if (encoding != sbpr_empty) {
  ------------------
  |  Branch (696:7): [True: 5.65k, False: 0]
  ------------------
  697|  5.65k|			RETERR(str_totext("=", target));
  ------------------
  |  |  276|  5.65k|	{                                  \
  |  |  277|  5.65k|		isc_result_t _r = (x);     \
  |  |  278|  5.65k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.65k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.65k|	}
  ------------------
  698|  5.65k|		}
  699|  5.65k|		switch (encoding) {
  700|  1.09k|		case sbpr_text:
  ------------------
  |  Branch (700:3): [True: 1.09k, False: 4.55k]
  ------------------
  701|  3.21k|		case sbpr_dohpath:
  ------------------
  |  Branch (701:3): [True: 2.11k, False: 3.53k]
  ------------------
  702|  3.21k|			RETERR(multitxt_totext(&r, target));
  ------------------
  |  |  276|  3.21k|	{                                  \
  |  |  277|  3.21k|		isc_result_t _r = (x);     \
  |  |  278|  3.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.21k|	}
  ------------------
  703|  3.21k|			break;
  704|    302|		case sbpr_port:
  ------------------
  |  Branch (704:3): [True: 302, False: 5.34k]
  ------------------
  705|    302|			num = uint16_fromregion(&r);
  706|    302|			isc_region_consume(&r, 2);
  ------------------
  |  |   50|    302|	do {                              \
  |  |   51|    302|		isc_region_t *_r = (r);   \
  |  |   52|    302|		unsigned int  _l = (l);   \
  |  |   53|    302|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    302|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    302|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 302, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    302|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    302|		_r->base += _l;           \
  |  |   55|    302|		_r->length -= _l;         \
  |  |   56|    302|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 302]
  |  |  ------------------
  ------------------
  707|    302|			n = snprintf(buf, sizeof(buf), "%u", num);
  708|    302|			INSIST(n > 0 && (unsigned int)n < sizeof(buf));
  ------------------
  |  |  202|    302|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    604|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 302, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 302, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    302|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  709|    302|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    302|	{                                  \
  |  |  277|    302|		isc_result_t _r = (x);     \
  |  |  278|    302|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 302]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    302|	}
  ------------------
  710|    302|			INSIST(r.length == 0U);
  ------------------
  |  |  202|    302|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    302|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 302, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    302|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  711|    302|			break;
  712|    307|		case sbpr_ipv4s:
  ------------------
  |  Branch (712:3): [True: 307, False: 5.34k]
  ------------------
  713|  1.20k|			while (r.length > 0U) {
  ------------------
  |  Branch (713:11): [True: 898, False: 307]
  ------------------
  714|    898|				INSIST(r.length >= 4U);
  ------------------
  |  |  202|    898|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    898|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 898, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    898|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  715|    898|				inet_ntop(AF_INET, r.base, buf, sizeof(buf));
  716|    898|				RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    898|	{                                  \
  |  |  277|    898|		isc_result_t _r = (x);     \
  |  |  278|    898|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 898]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    898|	}
  ------------------
  717|    898|				isc_region_consume(&r, 4);
  ------------------
  |  |   50|    898|	do {                              \
  |  |   51|    898|		isc_region_t *_r = (r);   \
  |  |   52|    898|		unsigned int  _l = (l);   \
  |  |   53|    898|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    898|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    898|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 898, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    898|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    898|		_r->base += _l;           \
  |  |   55|    898|		_r->length -= _l;         \
  |  |   56|    898|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 898]
  |  |  ------------------
  ------------------
  718|    898|				if (r.length != 0U) {
  ------------------
  |  Branch (718:9): [True: 591, False: 307]
  ------------------
  719|    591|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    591|	{                                  \
  |  |  277|    591|		isc_result_t _r = (x);     \
  |  |  278|    591|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 591]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    591|	}
  ------------------
  720|    591|				}
  721|    898|			}
  722|    307|			break;
  723|    360|		case sbpr_ipv6s:
  ------------------
  |  Branch (723:3): [True: 360, False: 5.29k]
  ------------------
  724|  1.11k|			while (r.length > 0U) {
  ------------------
  |  Branch (724:11): [True: 758, False: 360]
  ------------------
  725|    758|				INSIST(r.length >= 16U);
  ------------------
  |  |  202|    758|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    758|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 758, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    758|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  726|    758|				inet_ntop(AF_INET6, r.base, buf, sizeof(buf));
  727|    758|				RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    758|	{                                  \
  |  |  277|    758|		isc_result_t _r = (x);     \
  |  |  278|    758|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 758]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    758|	}
  ------------------
  728|    758|				isc_region_consume(&r, 16);
  ------------------
  |  |   50|    758|	do {                              \
  |  |   51|    758|		isc_region_t *_r = (r);   \
  |  |   52|    758|		unsigned int  _l = (l);   \
  |  |   53|    758|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    758|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    758|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 758, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    758|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    758|		_r->base += _l;           \
  |  |   55|    758|		_r->length -= _l;         \
  |  |   56|    758|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 758]
  |  |  ------------------
  ------------------
  729|    758|				if (r.length != 0U) {
  ------------------
  |  Branch (729:9): [True: 398, False: 360]
  ------------------
  730|    398|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    398|	{                                  \
  |  |  277|    398|		isc_result_t _r = (x);     \
  |  |  278|    398|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 398]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    398|	}
  ------------------
  731|    398|				}
  732|    758|			}
  733|    360|			break;
  734|    360|		case sbpr_base64:
  ------------------
  |  Branch (734:3): [True: 78, False: 5.57k]
  ------------------
  735|     78|			RETERR(isc_base64_totext(&r, 0, "", target));
  ------------------
  |  |  276|     78|	{                                  \
  |  |  277|     78|		isc_result_t _r = (x);     \
  |  |  278|     78|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 78]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|     78|	}
  ------------------
  736|     78|			break;
  737|    657|		case sbpr_alpn:
  ------------------
  |  Branch (737:3): [True: 657, False: 4.99k]
  ------------------
  738|    657|			INSIST(r.length != 0U);
  ------------------
  |  |  202|    657|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    657|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 657, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    657|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  739|    657|			RETERR(str_totext("\"", target));
  ------------------
  |  |  276|    657|	{                                  \
  |  |  277|    657|		isc_result_t _r = (x);     \
  |  |  278|    657|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 657]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    657|	}
  ------------------
  740|  1.69k|			while (r.length != 0) {
  ------------------
  |  Branch (740:11): [True: 1.04k, False: 657]
  ------------------
  741|  1.04k|				commatxt_totext(&r, false, true, target);
  742|  1.04k|				if (r.length != 0) {
  ------------------
  |  Branch (742:9): [True: 384, False: 657]
  ------------------
  743|    384|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    384|	{                                  \
  |  |  277|    384|		isc_result_t _r = (x);     \
  |  |  278|    384|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 384]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    384|	}
  ------------------
  744|    384|				}
  745|  1.04k|			}
  746|    657|			RETERR(str_totext("\"", target));
  ------------------
  |  |  276|    657|	{                                  \
  |  |  277|    657|		isc_result_t _r = (x);     \
  |  |  278|    657|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 657]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    657|	}
  ------------------
  747|    657|			break;
  748|      0|		case sbpr_empty:
  ------------------
  |  Branch (748:3): [True: 0, False: 5.65k]
  ------------------
  749|      0|			INSIST(r.length == 0U);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  750|      0|			break;
  751|    736|		case sbpr_keylist:
  ------------------
  |  Branch (751:3): [True: 736, False: 4.91k]
  ------------------
  752|  1.96k|			while (r.length > 0) {
  ------------------
  |  Branch (752:11): [True: 1.22k, False: 736]
  ------------------
  753|  1.22k|				num = uint16_fromregion(&r);
  754|  1.22k|				isc_region_consume(&r, 2);
  ------------------
  |  |   50|  1.22k|	do {                              \
  |  |   51|  1.22k|		isc_region_t *_r = (r);   \
  |  |   52|  1.22k|		unsigned int  _l = (l);   \
  |  |   53|  1.22k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.22k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.22k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.22k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.22k|		_r->base += _l;           \
  |  |   55|  1.22k|		_r->length -= _l;         \
  |  |   56|  1.22k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.22k]
  |  |  ------------------
  ------------------
  755|  1.22k|				RETERR(str_totext(svcparamkey(num, &encoding,
  ------------------
  |  |  276|  1.22k|	{                                  \
  |  |  277|  1.22k|		isc_result_t _r = (x);     \
  |  |  278|  1.22k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.22k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.22k|	}
  ------------------
  756|  1.22k|							      buf, sizeof(buf),
  757|  1.22k|							      compat),
  758|  1.22k|						  target));
  759|  1.22k|				if (r.length != 0) {
  ------------------
  |  Branch (759:9): [True: 493, False: 736]
  ------------------
  760|    493|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    493|	{                                  \
  |  |  277|    493|		isc_result_t _r = (x);     \
  |  |  278|    493|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 493]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    493|	}
  ------------------
  761|    493|				}
  762|  1.22k|			}
  763|    736|			break;
  764|    736|		default:
  ------------------
  |  Branch (764:3): [True: 0, False: 5.65k]
  ------------------
  765|      0|			UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  766|  5.65k|		}
  767|  5.65k|	}
  768|  6.02k|	return ISC_R_SUCCESS;
  769|  6.02k|}
rdata.c:svcparamkey:
  380|  8.24k|	    size_t len, bool compat) {
  381|  8.24k|	size_t i;
  382|  8.24k|	int n;
  383|       |
  384|  54.4k|	for (i = 0; i < ARRAY_SIZE(sbpr); i++) {
  ------------------
  |  |   98|  54.4k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (384:14): [True: 51.3k, False: 3.05k]
  ------------------
  385|  51.3k|		if (sbpr[i].value == value && (sbpr[i].initial || !compat)) {
  ------------------
  |  Branch (385:7): [True: 5.18k, False: 46.1k]
  |  Branch (385:34): [True: 3.07k, False: 2.11k]
  |  Branch (385:53): [True: 2.11k, False: 0]
  ------------------
  386|  5.18k|			*encoding = sbpr[i].encoding;
  387|  5.18k|			return sbpr[i].name;
  388|  5.18k|		}
  389|  51.3k|	}
  390|  3.05k|	n = snprintf(buf, len, "key%u", value);
  391|  3.05k|	INSIST(n > 0 && (unsigned int)n < len);
  ------------------
  |  |  202|  3.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.11k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.05k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  392|  3.05k|	*encoding = sbpr_text;
  393|  3.05k|	return buf;
  394|  8.24k|}

rdata.c:fromwire_in_wks:
  210|  1.91k|fromwire_in_wks(ARGS_FROMWIRE) {
  211|  1.91k|	isc_region_t sr;
  212|  1.91k|	isc_region_t tr;
  213|       |
  214|  1.91k|	REQUIRE(type == dns_rdatatype_wks);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  215|  1.91k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  216|       |
  217|  1.91k|	UNUSED(type);
  ------------------
  |  |   69|  1.91k|#define UNUSED(x) (void)(x)
  ------------------
  218|  1.91k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.91k|#define UNUSED(x) (void)(x)
  ------------------
  219|  1.91k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.91k|#define UNUSED(x) (void)(x)
  ------------------
  220|       |
  221|  1.91k|	isc_buffer_activeregion(source, &sr);
  222|  1.91k|	isc_buffer_availableregion(target, &tr);
  223|       |
  224|  1.91k|	if (sr.length < 5) {
  ------------------
  |  Branch (224:6): [True: 4, False: 1.91k]
  ------------------
  225|      4|		return ISC_R_UNEXPECTEDEND;
  226|      4|	}
  227|  1.91k|	if (sr.length > 8 * 1024 + 5) {
  ------------------
  |  Branch (227:6): [True: 1, False: 1.91k]
  ------------------
  228|      1|		return DNS_R_EXTRADATA;
  229|      1|	}
  230|  1.91k|	if (sr.length > 5 && sr.base[sr.length - 1] == 0) {
  ------------------
  |  Branch (230:6): [True: 940, False: 974]
  |  Branch (230:23): [True: 1, False: 939]
  ------------------
  231|      1|		return DNS_R_FORMERR;
  232|      1|	}
  233|  1.91k|	if (tr.length < sr.length) {
  ------------------
  |  Branch (233:6): [True: 204, False: 1.70k]
  ------------------
  234|    204|		return ISC_R_NOSPACE;
  235|    204|	}
  236|       |
  237|  1.70k|	memmove(tr.base, sr.base, sr.length);
  238|  1.70k|	isc_buffer_add(target, sr.length);
  239|  1.70k|	isc_buffer_forward(source, sr.length);
  240|       |
  241|  1.70k|	return ISC_R_SUCCESS;
  242|  1.91k|}
rdata.c:towire_in_wks:
  245|    882|towire_in_wks(ARGS_TOWIRE) {
  246|    882|	isc_region_t sr;
  247|       |
  248|    882|	UNUSED(cctx);
  ------------------
  |  |   69|    882|#define UNUSED(x) (void)(x)
  ------------------
  249|       |
  250|    882|	REQUIRE(rdata->type == dns_rdatatype_wks);
  ------------------
  |  |  198|    882|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    882|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 882, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    882|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  251|    882|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    882|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    882|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 882, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    882|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|    882|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    882|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    882|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 882, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    882|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  253|       |
  254|    882|	dns_rdata_toregion(rdata, &sr);
  255|    882|	return mem_tobuffer(target, sr.base, sr.length);
  256|    882|}
rdata.c:totext_in_wks:
  168|  1.44k|totext_in_wks(ARGS_TOTEXT) {
  169|  1.44k|	isc_region_t sr;
  170|  1.44k|	unsigned short proto;
  171|  1.44k|	char buf[sizeof("65535")];
  172|  1.44k|	unsigned int i, j;
  173|       |
  174|  1.44k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.44k|#define UNUSED(x) (void)(x)
  ------------------
  175|       |
  176|  1.44k|	REQUIRE(rdata->type == dns_rdatatype_wks);
  ------------------
  |  |  198|  1.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  177|  1.44k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  178|  1.44k|	REQUIRE(rdata->length >= 5);
  ------------------
  |  |  198|  1.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  179|       |
  180|  1.44k|	dns_rdata_toregion(rdata, &sr);
  181|  1.44k|	RETERR(inet_totext(AF_INET, tctx->flags, &sr, target));
  ------------------
  |  |  276|  1.44k|	{                                  \
  |  |  277|  1.44k|		isc_result_t _r = (x);     \
  |  |  278|  1.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.44k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.44k|	}
  ------------------
  182|  1.44k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.44k|	do {                              \
  |  |   51|  1.44k|		isc_region_t *_r = (r);   \
  |  |   52|  1.44k|		unsigned int  _l = (l);   \
  |  |   53|  1.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.44k|		_r->base += _l;           \
  |  |   55|  1.44k|		_r->length -= _l;         \
  |  |   56|  1.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.44k]
  |  |  ------------------
  ------------------
  183|       |
  184|  1.44k|	proto = uint8_fromregion(&sr);
  185|  1.44k|	snprintf(buf, sizeof(buf), "%u", proto);
  186|  1.44k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.44k|	{                                  \
  |  |  277|  1.44k|		isc_result_t _r = (x);     \
  |  |  278|  1.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.44k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.44k|	}
  ------------------
  187|  1.44k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.44k|	{                                  \
  |  |  277|  1.44k|		isc_result_t _r = (x);     \
  |  |  278|  1.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.44k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.44k|	}
  ------------------
  188|  1.44k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.44k|	do {                              \
  |  |   51|  1.44k|		isc_region_t *_r = (r);   \
  |  |   52|  1.44k|		unsigned int  _l = (l);   \
  |  |   53|  1.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.44k|		_r->base += _l;           \
  |  |   55|  1.44k|		_r->length -= _l;         \
  |  |   56|  1.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.44k]
  |  |  ------------------
  ------------------
  189|       |
  190|  1.44k|	INSIST(sr.length <= 8 * 1024);
  ------------------
  |  |  202|  1.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.44k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  191|  57.2k|	for (i = 0; i < sr.length; i++) {
  ------------------
  |  Branch (191:14): [True: 55.8k, False: 1.44k]
  ------------------
  192|  55.8k|		if (sr.base[i] != 0) {
  ------------------
  |  Branch (192:7): [True: 32.5k, False: 23.2k]
  ------------------
  193|   293k|			for (j = 0; j < 8; j++) {
  ------------------
  |  Branch (193:16): [True: 260k, False: 32.5k]
  ------------------
  194|   260k|				if ((sr.base[i] & (0x80 >> j)) != 0) {
  ------------------
  |  Branch (194:9): [True: 104k, False: 156k]
  ------------------
  195|   104k|					{
  196|   104k|						snprintf(buf, sizeof(buf), "%u",
  197|   104k|							 i * 8 + j);
  198|   104k|						RETERR(str_totext(" ", target));
  ------------------
  |  |  276|   104k|	{                                  \
  |  |  277|   104k|		isc_result_t _r = (x);     \
  |  |  278|   104k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 104k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   104k|	}
  ------------------
  199|   104k|						RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   104k|	{                                  \
  |  |  277|   104k|		isc_result_t _r = (x);     \
  |  |  278|   104k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 104k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   104k|	}
  ------------------
  200|   104k|					}
  201|   104k|				}
  202|   260k|			}
  203|  32.5k|		}
  204|  55.8k|	}
  205|       |
  206|  1.44k|	return ISC_R_SUCCESS;
  207|  1.44k|}

dns_rdatalist_init:
   41|   462k|dns_rdatalist_init(dns_rdatalist_t *rdatalist) {
   42|   462k|	REQUIRE(rdatalist != NULL);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   43|       |
   44|       |	/*
   45|       |	 * Initialize rdatalist.
   46|       |	 */
   47|   462k|	*rdatalist = (dns_rdatalist_t){
   48|   462k|		.rdata = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|   462k|	{                     \
  |  |   22|   462k|		.head = NULL, \
  |  |   23|   462k|		.tail = NULL, \
  |  |   24|   462k|	}
  ------------------
   49|   462k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   462k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   462k|	{                                         \
  |  |  |  |   27|   462k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   462k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   462k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   462k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   462k|	}
  |  |  ------------------
  ------------------
   50|   462k|	};
   51|   462k|	memset(rdatalist->upper, 0xeb, sizeof(rdatalist->upper));
   52|       |
   53|       |	/*
   54|       |	 * Clear upper set bit.
   55|       |	 */
   56|   462k|	rdatalist->upper[0] &= ~0x01;
   57|   462k|}
dns_rdatalist_tordataset:
   60|   462k|dns_rdatalist_tordataset(dns_rdatalist_t *rdatalist, dns_rdataset_t *rdataset) {
   61|       |	/*
   62|       |	 * Make 'rdataset' refer to the rdata in 'rdatalist'.
   63|       |	 */
   64|       |
   65|   462k|	REQUIRE(rdatalist != NULL);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|   462k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   925k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|   462k|	REQUIRE(!dns_rdataset_isassociated(rdataset));
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|       |	/* Check if dns_rdatalist_init has was called. */
   70|   462k|	REQUIRE(rdatalist->upper[0] == 0xea);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|       |
   72|   462k|	*rdataset = (dns_rdataset_t){
   73|   462k|		.methods = &methods,
   74|   462k|		.rdclass = rdatalist->rdclass,
   75|   462k|		.type = rdatalist->type,
   76|   462k|		.covers = rdatalist->covers,
   77|   462k|		.ttl = rdatalist->ttl,
   78|   462k|		.rdlist.list = rdatalist,
   79|       |
   80|   462k|		.link = rdataset->link,
   81|   462k|		.attributes = rdataset->attributes,
   82|   462k|		.magic = rdataset->magic,
   83|   462k|	};
   84|   462k|}
dns_rdatalist_fromrdataset:
   88|   304k|			   dns_rdatalist_t **rdatalist) {
   89|   304k|	REQUIRE(rdatalist != NULL && rdataset != NULL);
  ------------------
  |  |  198|   304k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   608k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 304k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 304k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   304k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|   304k|	REQUIRE(rdataset->methods == &methods);
  ------------------
  |  |  198|   304k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   304k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 304k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   304k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|       |
   92|   304k|	*rdatalist = rdataset->rdlist.list;
   93|   304k|}
dns_rdatalist_disassociate:
   96|   462k|dns_rdatalist_disassociate(dns_rdataset_t *rdataset DNS__DB_FLARG) {
   97|   462k|	UNUSED(rdataset);
  ------------------
  |  |   69|   462k|#define UNUSED(x) (void)(x)
  ------------------
   98|   462k|}
dns__rdatalist_first:
  101|   490k|dns__rdatalist_first(dns_rdataset_t *rdataset) {
  102|   490k|	dns_rdatalist_t *rdatalist = NULL;
  103|       |
  104|   490k|	rdatalist = rdataset->rdlist.list;
  105|   490k|	rdataset->rdlist.iter = ISC_LIST_HEAD(rdatalist->rdata);
  ------------------
  |  |   62|   490k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  106|       |
  107|   490k|	if (rdataset->rdlist.iter == NULL) {
  ------------------
  |  Branch (107:6): [True: 309k, False: 180k]
  ------------------
  108|   309k|		return ISC_R_NOMORE;
  109|   309k|	}
  110|       |
  111|   180k|	return ISC_R_SUCCESS;
  112|   490k|}
dns__rdatalist_next:
  115|   372k|dns__rdatalist_next(dns_rdataset_t *rdataset) {
  116|   372k|	dns_rdata_t *rdata;
  117|       |
  118|   372k|	rdata = rdataset->rdlist.iter;
  119|   372k|	if (rdata == NULL) {
  ------------------
  |  Branch (119:6): [True: 0, False: 372k]
  ------------------
  120|      0|		return ISC_R_NOMORE;
  121|      0|	}
  122|       |
  123|   372k|	rdataset->rdlist.iter = ISC_LIST_NEXT(rdata, link);
  ------------------
  |  |  140|   372k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  124|       |
  125|   372k|	if (rdataset->rdlist.iter == NULL) {
  ------------------
  |  Branch (125:6): [True: 176k, False: 195k]
  ------------------
  126|   176k|		return ISC_R_NOMORE;
  127|   176k|	}
  128|       |
  129|   195k|	return ISC_R_SUCCESS;
  130|   372k|}
dns__rdatalist_current:
  133|   376k|dns__rdatalist_current(dns_rdataset_t *rdataset, dns_rdata_t *rdata) {
  134|   376k|	dns_rdata_t *list_rdata;
  135|       |
  136|   376k|	list_rdata = rdataset->rdlist.iter;
  137|   376k|	INSIST(list_rdata != NULL);
  ------------------
  |  |  202|   376k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   376k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  138|       |
  139|   376k|	dns_rdata_clone(list_rdata, rdata);
  140|   376k|}
dns__rdatalist_count:
  154|  60.7k|dns__rdatalist_count(dns_rdataset_t *rdataset) {
  155|  60.7k|	dns_rdatalist_t *rdatalist = NULL;
  156|  60.7k|	unsigned int count;
  157|       |
  158|  60.7k|	REQUIRE(rdataset != NULL);
  ------------------
  |  |  198|  60.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  60.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 60.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  60.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  159|       |
  160|  60.7k|	rdatalist = rdataset->rdlist.list;
  161|       |
  162|  60.7k|	count = 0;
  163|   126k|	ISC_LIST_FOREACH(rdatalist->rdata, rdata, link) {
  ------------------
  |  |  234|  60.7k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  60.7k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  60.7k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  60.7k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 60.7k, False: 0]
  |  |  ------------------
  |  |  236|   187k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 126k, False: 60.7k]
  |  |  ------------------
  |  |  237|   126k|	     elt = elt##_next,                                             \
  |  |  238|   126k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  65.9k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 65.9k, False: 60.7k]
  |  |  ------------------
  ------------------
  164|   126k|		count++;
  165|   126k|	}
  166|       |
  167|  60.7k|	return count;
  168|  60.7k|}
dns__rdatalist_setownercase:
  264|   291k|dns__rdatalist_setownercase(dns_rdataset_t *rdataset, const dns_name_t *name) {
  265|   291k|	dns_rdatalist_t *rdatalist;
  266|   291k|	unsigned int i;
  267|       |
  268|       |	/*
  269|       |	 * We do not need to worry about label lengths as they are all
  270|       |	 * less than or equal to 63.
  271|       |	 */
  272|   291k|	rdatalist = rdataset->rdlist.list;
  273|   291k|	memset(rdatalist->upper, 0, sizeof(rdatalist->upper));
  274|  2.61M|	for (i = 1; i < name->length; i++) {
  ------------------
  |  Branch (274:14): [True: 2.31M, False: 291k]
  ------------------
  275|  2.31M|		if (name->ndata[i] >= 0x41 && name->ndata[i] <= 0x5a) {
  ------------------
  |  Branch (275:7): [True: 385k, False: 1.93M]
  |  Branch (275:33): [True: 45.5k, False: 339k]
  ------------------
  276|  45.5k|			rdatalist->upper[i / 8] |= 1 << (i % 8);
  277|  45.5k|		}
  278|  2.31M|	}
  279|       |	/*
  280|       |	 * Record that upper has been set.
  281|       |	 */
  282|   291k|	rdatalist->upper[0] |= 0x01;
  283|   291k|}
dns__rdatalist_getownercase:
  286|   316k|dns__rdatalist_getownercase(const dns_rdataset_t *rdataset, dns_name_t *name) {
  287|   316k|	dns_rdatalist_t *rdatalist;
  288|   316k|	unsigned int i;
  289|       |
  290|   316k|	rdatalist = rdataset->rdlist.list;
  291|   316k|	if ((rdatalist->upper[0] & 0x01) == 0) {
  ------------------
  |  Branch (291:6): [True: 140k, False: 176k]
  ------------------
  292|   140k|		return;
  293|   140k|	}
  294|  1.86M|	for (i = 0; i < name->length; i++) {
  ------------------
  |  Branch (294:14): [True: 1.68M, False: 176k]
  ------------------
  295|       |		/*
  296|       |		 * Set the case bit if it does not match the recorded bit.
  297|       |		 */
  298|  1.68M|		if (name->ndata[i] >= 0x61 && name->ndata[i] <= 0x7a &&
  ------------------
  |  Branch (298:7): [True: 245k, False: 1.44M]
  |  Branch (298:33): [True: 49.0k, False: 196k]
  ------------------
  299|  49.0k|		    (rdatalist->upper[i / 8] & (1 << (i % 8))) != 0)
  ------------------
  |  Branch (299:7): [True: 0, False: 49.0k]
  ------------------
  300|      0|		{
  301|      0|			name->ndata[i] &= ~0x20; /* clear the lower case bit */
  302|  1.68M|		} else if (name->ndata[i] >= 0x41 && name->ndata[i] <= 0x5a &&
  ------------------
  |  Branch (302:14): [True: 291k, False: 1.39M]
  |  Branch (302:40): [True: 38.3k, False: 252k]
  ------------------
  303|  38.3k|			   (rdatalist->upper[i / 8] & (1 << (i % 8))) == 0)
  ------------------
  |  Branch (303:7): [True: 0, False: 38.3k]
  ------------------
  304|      0|		{
  305|      0|			name->ndata[i] |= 0x20; /* set the lower case bit */
  306|      0|		}
  307|  1.68M|	}
  308|   176k|}

dns_rdataset_init:
   56|   462k|dns_rdataset_init(dns_rdataset_t *rdataset) {
   57|       |	/*
   58|       |	 * Make 'rdataset' a valid, disassociated rdataset.
   59|       |	 */
   60|       |
   61|   462k|	REQUIRE(rdataset != NULL);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|       |
   63|   462k|	*rdataset = (dns_rdataset_t){
   64|   462k|		.magic = DNS_RDATASET_MAGIC,
  ------------------
  |  |   88|   462k|#define DNS_RDATASET_MAGIC	ISC_MAGIC('D', 'N', 'S', 'R')
  |  |  ------------------
  |  |  |  |   31|   462k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
   65|   462k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   462k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   462k|	{                                         \
  |  |  |  |   27|   462k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   462k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   462k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   462k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   462k|	}
  |  |  ------------------
  ------------------
   66|   462k|	};
   67|   462k|}
dns__rdataset_disassociate:
   85|   462k|dns__rdataset_disassociate(dns_rdataset_t *rdataset DNS__DB_FLARG) {
   86|       |	/*
   87|       |	 * Disassociate 'rdataset' from its rdata, allowing it to be reused.
   88|       |	 */
   89|       |
   90|   462k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   925k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|   462k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   462k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   462k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 462k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   462k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|       |
   93|   462k|	if (rdataset->methods->disassociate != NULL) {
  ------------------
  |  Branch (93:6): [True: 462k, False: 0]
  ------------------
   94|   462k|		(rdataset->methods->disassociate)(rdataset DNS__DB_FLARG_PASS);
   95|   462k|	}
   96|   462k|	*rdataset = (dns_rdataset_t){
   97|   462k|		.magic = DNS_RDATASET_MAGIC,
  ------------------
  |  |   88|   462k|#define DNS_RDATASET_MAGIC	ISC_MAGIC('D', 'N', 'S', 'R')
  |  |  ------------------
  |  |  |  |   31|   462k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
   98|   462k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   462k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   462k|	{                                         \
  |  |  |  |   27|   462k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   462k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   462k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   462k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   462k|	}
  |  |  ------------------
  ------------------
   99|   462k|	};
  100|   462k|}
dns_rdataset_isassociated:
  103|   925k|dns_rdataset_isassociated(const dns_rdataset_t *rdataset) {
  104|       |	/*
  105|       |	 * Is 'rdataset' associated?
  106|       |	 */
  107|       |
  108|   925k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   925k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.85M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 925k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 925k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   925k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  109|       |
  110|   925k|	if (rdataset->methods != NULL) {
  ------------------
  |  Branch (110:6): [True: 43, False: 925k]
  ------------------
  111|     43|		return true;
  112|     43|	}
  113|       |
  114|   925k|	return false;
  115|   925k|}
dns_rdataset_count:
  152|  60.7k|dns_rdataset_count(dns_rdataset_t *rdataset) {
  153|       |	/*
  154|       |	 * Return the number of records in 'rdataset'.
  155|       |	 */
  156|       |
  157|  60.7k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|  60.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   121k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 60.7k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 60.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  60.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  158|  60.7k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|  60.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  60.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 60.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  60.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  159|  60.7k|	REQUIRE(rdataset->methods->count != NULL);
  ------------------
  |  |  198|  60.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  60.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 60.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  60.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  160|       |
  161|  60.7k|	return (rdataset->methods->count)(rdataset);
  162|  60.7k|}
dns_rdataset_first:
  180|   490k|dns_rdataset_first(dns_rdataset_t *rdataset) {
  181|   490k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   490k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   981k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 490k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 490k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   490k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  182|   490k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   490k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   490k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 490k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   490k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  183|   490k|	REQUIRE(rdataset->methods->first != NULL);
  ------------------
  |  |  198|   490k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   490k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 490k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   490k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  184|       |
  185|   490k|	isc_result_t result = rdataset->methods->first(rdataset);
  186|   490k|	ENSURE(result == ISC_R_SUCCESS || result == ISC_R_NOMORE);
  ------------------
  |  |  200|   490k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|   800k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:11): [True: 180k, False: 309k]
  |  |  |  |  |  Branch (48:11): [True: 309k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|   490k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  187|   490k|	return result;
  188|   490k|}
dns_rdataset_next:
  191|   372k|dns_rdataset_next(dns_rdataset_t *rdataset) {
  192|   372k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   372k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   744k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 372k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 372k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   372k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  193|   372k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   372k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   372k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 372k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   372k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  194|   372k|	REQUIRE(rdataset->methods->next != NULL);
  ------------------
  |  |  198|   372k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   372k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 372k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   372k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  195|       |
  196|   372k|	isc_result_t result = rdataset->methods->next(rdataset);
  197|   372k|	ENSURE(result == ISC_R_SUCCESS || result == ISC_R_NOMORE);
  ------------------
  |  |  200|   372k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|   548k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:11): [True: 195k, False: 176k]
  |  |  |  |  |  Branch (48:11): [True: 176k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|   372k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  198|   372k|	return result;
  199|   372k|}
dns_rdataset_current:
  202|   376k|dns_rdataset_current(dns_rdataset_t *rdataset, dns_rdata_t *rdata) {
  203|       |	/*
  204|       |	 * Make 'rdata' refer to the current rdata.
  205|       |	 */
  206|       |
  207|   376k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   753k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  208|   376k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   376k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  209|   376k|	REQUIRE(rdataset->methods->current != NULL);
  ------------------
  |  |  198|   376k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   376k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   376k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  210|       |
  211|   376k|	(rdataset->methods->current)(rdataset, rdata);
  212|   376k|}
dns_rdataset_towire:
  369|   201k|		    bool partial, unsigned int options, unsigned int *countp) {
  370|   201k|	isc_result_t result;
  371|   201k|	isc_buffer_t savedbuffer = *target;
  372|   201k|	isc_buffer_t rrbuffer = *target;
  373|   201k|	dns_fixedname_t fixed;
  374|   201k|	dns_name_t *name = NULL;
  375|       |
  376|       |	/*
  377|       |	 * Convert 'rdataset' to wire format, compressing names as specified
  378|       |	 * in cctx, and storing the result in 'target'.
  379|       |	 */
  380|       |
  381|   201k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   201k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   402k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 201k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 201k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   201k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  382|   201k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   201k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   201k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 201k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   201k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  383|   201k|	REQUIRE(countp != NULL);
  ------------------
  |  |  198|   201k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   201k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 201k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   201k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  384|   201k|	REQUIRE(cctx != NULL && cctx->mctx != NULL);
  ------------------
  |  |  198|   201k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   402k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 201k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 201k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   201k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  385|       |
  386|   201k|	if (rdataset->attributes.negative) {
  ------------------
  |  Branch (386:6): [True: 0, False: 201k]
  ------------------
  387|       |		/*
  388|       |		 * This is a negative caching rdataset.
  389|       |		 */
  390|      0|		unsigned int ncache_opts = 0;
  391|      0|		if ((options & DNS_RDATASETTOWIRE_OMITDNSSEC) != 0) {
  ------------------
  |  |  269|      0|#define DNS_RDATASETTOWIRE_OMITDNSSEC 0x0001
  ------------------
  |  Branch (391:7): [True: 0, False: 0]
  ------------------
  392|      0|			ncache_opts |= DNS_NCACHETOWIRE_OMITDNSSEC;
  ------------------
  |  |   52|      0|#define DNS_NCACHETOWIRE_OMITDNSSEC 0x0001
  ------------------
  393|      0|		}
  394|      0|		return dns_ncache_towire(rdataset, cctx, target, ncache_opts,
  395|      0|					 countp);
  396|      0|	}
  397|       |
  398|   201k|	name = dns_fixedname_initname(&fixed);
  399|   201k|	dns_name_copy(owner_name, name);
  400|   201k|	dns_rdataset_getownercase(rdataset, name);
  401|   201k|	dns_compress_setmultiuse(cctx, true);
  402|       |
  403|   201k|	name->attributes.nocompress |= owner_name->attributes.nocompress;
  404|       |
  405|   201k|	if (rdataset->attributes.question) {
  ------------------
  |  Branch (405:6): [True: 140k, False: 60.7k]
  ------------------
  406|   140k|		result = towire_question(rdataset, name, cctx, target,
  407|   140k|					 &rrbuffer, countp);
  408|   140k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (408:7): [True: 0, False: 140k]
  ------------------
  409|      0|			goto rollback;
  410|      0|		}
  411|   140k|	} else {
  412|  60.7k|		result = towire_answer(rdataset, name, cctx, target, &rrbuffer,
  413|  60.7k|				       id, countp);
  414|  60.7k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (414:7): [True: 160, False: 60.6k]
  ------------------
  415|    160|			goto rollback;
  416|    160|		}
  417|  60.7k|	}
  418|       |
  419|   200k|	return ISC_R_SUCCESS;
  420|       |
  421|    160|rollback:
  422|    160|	if (partial && result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (422:6): [True: 0, False: 160]
  |  Branch (422:17): [True: 0, False: 0]
  ------------------
  423|      0|		dns_compress_rollback(cctx, rrbuffer.used);
  424|      0|		*target = rrbuffer;
  425|      0|		return result;
  426|      0|	}
  427|    160|	dns_compress_rollback(cctx, savedbuffer.used);
  428|    160|	*countp = 0;
  429|    160|	*target = savedbuffer;
  430|       |
  431|    160|	return result;
  432|    160|}
dns_rdataset_setownercase:
  517|   291k|dns_rdataset_setownercase(dns_rdataset_t *rdataset, const dns_name_t *name) {
  518|   291k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   291k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   583k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 291k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 291k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   291k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  519|   291k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   291k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   291k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 291k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   291k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  520|       |
  521|   291k|	if (rdataset->methods->setownercase != NULL &&
  ------------------
  |  Branch (521:6): [True: 291k, False: 0]
  ------------------
  522|   291k|	    !rdataset->attributes.keepcase)
  ------------------
  |  Branch (522:6): [True: 291k, False: 0]
  ------------------
  523|   291k|	{
  524|   291k|		(rdataset->methods->setownercase)(rdataset, name);
  525|   291k|	}
  526|   291k|}
dns_rdataset_getownercase:
  529|   316k|dns_rdataset_getownercase(const dns_rdataset_t *rdataset, dns_name_t *name) {
  530|   316k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   633k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  531|   316k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   316k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   316k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 316k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   316k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  532|       |
  533|   316k|	if (rdataset->methods->getownercase != NULL &&
  ------------------
  |  Branch (533:6): [True: 316k, False: 0]
  ------------------
  534|   316k|	    !rdataset->attributes.keepcase)
  ------------------
  |  Branch (534:6): [True: 316k, False: 0]
  ------------------
  535|   316k|	{
  536|   316k|		(rdataset->methods->getownercase)(rdataset, name);
  537|   316k|	}
  538|   316k|}
rdataset.c:towire_question:
  266|   140k|		isc_buffer_t *rrbuffer, unsigned int *countp) {
  267|   140k|	isc_result_t result;
  268|       |
  269|   140k|	result = dns_rdataset_first(rdataset);
  270|   140k|	INSIST(result == ISC_R_NOMORE);
  ------------------
  |  |  202|   140k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   140k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 140k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   140k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  271|       |
  272|   140k|	result = towire_addtypeclass(rdataset, name, cctx, target, rrbuffer, 0);
  273|   140k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (273:6): [True: 107k, False: 32.5k]
  ------------------
  274|   107k|		return ISC_R_SUCCESS;
  275|   107k|	}
  276|       |
  277|  32.5k|	*countp += 1;
  278|       |
  279|  32.5k|	return ISC_R_SUCCESS;
  280|   140k|}
rdataset.c:towire_addtypeclass:
  219|   266k|		    isc_buffer_t *rrbuffer, size_t extralen) {
  220|   266k|	isc_region_t r;
  221|   266k|	isc_result_t result;
  222|   266k|	size_t headlen;
  223|       |
  224|   266k|	*rrbuffer = *target;
  225|   266k|	dns_compress_setpermitted(cctx, true);
  226|   266k|	result = dns_name_towire(name, cctx, target);
  227|   266k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (227:6): [True: 107k, False: 159k]
  ------------------
  228|   107k|		return result;
  229|   107k|	}
  230|   159k|	headlen = sizeof(dns_rdataclass_t) + sizeof(dns_rdatatype_t) + extralen;
  231|   159k|	isc_buffer_availableregion(target, &r);
  232|   159k|	if (r.length < headlen) {
  ------------------
  |  Branch (232:6): [True: 67, False: 159k]
  ------------------
  233|     67|		return ISC_R_NOSPACE;
  234|     67|	}
  235|   159k|	isc_buffer_putuint16(target, rdataset->type);
  236|   159k|	isc_buffer_putuint16(target, rdataset->rdclass);
  237|   159k|	return ISC_R_SUCCESS;
  238|   159k|}
rdataset.c:towire_answer:
  285|  60.7k|	      isc_buffer_t *rrbuffer, uint16_t id, unsigned int *countp) {
  286|  60.7k|	isc_result_t result;
  287|  60.7k|	size_t start = 0, count = 0, added = 0;
  288|  60.7k|	isc_buffer_t rdlen;
  289|  60.7k|	dns_rdata_t *rdatas = dns__rdataset_rdatas;
  290|       |
  291|  60.7k|	count = dns_rdataset_count(rdataset);
  292|  60.7k|	result = dns_rdataset_first(rdataset);
  293|  60.7k|	if (result == ISC_R_NOMORE) {
  ------------------
  |  Branch (293:6): [True: 0, False: 60.7k]
  ------------------
  294|      0|		return ISC_R_SUCCESS;
  295|  60.7k|	} else if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (295:13): [True: 0, False: 60.7k]
  ------------------
  296|      0|		return result;
  297|      0|	}
  298|       |
  299|  60.7k|	if (WANT_CYCLIC(rdataset) && rdataset->type != dns_rdatatype_rrsig) {
  ------------------
  |  |  214|   121k|#define WANT_CYCLIC(r) (((r)->attributes.order == dns_order_cyclic))
  |  |  ------------------
  |  |  |  Branch (214:24): [True: 0, False: 60.7k]
  |  |  ------------------
  ------------------
              	if (WANT_CYCLIC(rdataset) && rdataset->type != dns_rdatatype_rrsig) {
  ------------------
  |  |  160|      0|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (299:31): [True: 0, False: 0]
  ------------------
  300|      0|		start = id % count;
  301|       |
  302|       |		/* Do we need larger buffer? */
  303|      0|		if (start > ARRAY_SIZE(dns__rdataset_rdatas)) {
  ------------------
  |  |   98|      0|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (303:7): [True: 0, False: 0]
  ------------------
  304|      0|			rdatas = isc_mem_cget(cctx->mctx, start,
  ------------------
  |  |  130|      0|	isc__mem_get((c), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  131|      0|		     ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
  305|      0|					      sizeof(rdatas[0]));
  306|      0|		}
  307|      0|	}
  308|       |
  309|       |	/*
  310|       |	 * Save the rdata up until the start.  If we are not
  311|       |	 * doing cyclic, the start == 0, so this is no-op.
  312|       |	 */
  313|  60.7k|	for (size_t i = 0; i < start; i++) {
  ------------------
  |  Branch (313:21): [True: 0, False: 60.7k]
  ------------------
  314|      0|		dns_rdata_init(&rdatas[i]);
  315|      0|		dns_rdataset_current(rdataset, &rdatas[i]);
  316|       |
  317|      0|		result = dns_rdataset_next(rdataset);
  318|      0|		if (result == ISC_R_NOMORE) {
  ------------------
  |  Branch (318:7): [True: 0, False: 0]
  ------------------
  319|      0|			result = ISC_R_SUCCESS;
  320|      0|			break;
  321|      0|		} else if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (321:14): [True: 0, False: 0]
  ------------------
  322|      0|			goto cleanup;
  323|      0|		}
  324|      0|	}
  325|       |
  326|   126k|	for (size_t i = start; i < count; i++) {
  ------------------
  |  Branch (326:25): [True: 126k, False: 0]
  ------------------
  327|   126k|		dns_rdata_t rdata = DNS_RDATA_INIT;
  ------------------
  |  |  147|   126k|	{                                     \
  |  |  148|   126k|		.data = NULL,                 \
  |  |  149|   126k|		.link = ISC_LINK_INITIALIZER, \
  |  |  ------------------
  |  |  |  |   30|   126k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|   126k|	{                                         \
  |  |  |  |  |  |   27|   126k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   126k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   28|   126k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   126k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   29|   126k|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  150|   126k|	}
  ------------------
  328|       |
  329|   126k|		CHECK(towire_addtypeclass(rdataset, name, cctx, target,
  ------------------
  |  |  255|   126k|	{                                      \
  |  |  256|   126k|		result = (r);                  \
  |  |  257|   126k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 18, False: 126k]
  |  |  ------------------
  |  |  258|     18|			goto cleanup;          \
  |  |  259|     18|		}                              \
  |  |  260|   126k|	}
  ------------------
  330|   126k|					  rrbuffer, sizeof(dns_ttl_t) + 2));
  331|   126k|		towire_addttl(rdataset, target, &rdlen);
  332|       |
  333|   126k|		dns_rdataset_current(rdataset, &rdata);
  334|   126k|		CHECK(towire_addrdata(&rdata, cctx, target, &rdlen));
  ------------------
  |  |  255|   126k|	{                                      \
  |  |  256|   126k|		result = (r);                  \
  |  |  257|   126k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 142, False: 126k]
  |  |  ------------------
  |  |  258|    142|			goto cleanup;          \
  |  |  259|    142|		}                              \
  |  |  260|   126k|	}
  ------------------
  335|   126k|		added++;
  336|       |
  337|   126k|		result = dns_rdataset_next(rdataset);
  338|   126k|		if (result == ISC_R_NOMORE) {
  ------------------
  |  Branch (338:7): [True: 60.6k, False: 65.7k]
  ------------------
  339|  60.6k|			result = ISC_R_SUCCESS;
  340|  60.6k|			break;
  341|  65.7k|		} else if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (341:14): [True: 0, False: 65.7k]
  ------------------
  342|      0|			goto cleanup;
  343|      0|		}
  344|   126k|	}
  345|       |
  346|  60.6k|	for (size_t i = 0; i < start; i++) {
  ------------------
  |  Branch (346:21): [True: 0, False: 60.6k]
  ------------------
  347|      0|		CHECK(towire_addtypeclass(rdataset, name, cctx, target,
  ------------------
  |  |  255|      0|	{                                      \
  |  |  256|      0|		result = (r);                  \
  |  |  257|      0|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      0|	}
  ------------------
  348|      0|					  rrbuffer, sizeof(dns_ttl_t) + 2));
  349|      0|		towire_addttl(rdataset, target, &rdlen);
  350|       |
  351|      0|		CHECK(towire_addrdata(&rdatas[i], cctx, target, &rdlen));
  ------------------
  |  |  255|      0|	{                                      \
  |  |  256|      0|		result = (r);                  \
  |  |  257|      0|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      0|	}
  ------------------
  352|      0|		added++;
  353|      0|	}
  354|       |
  355|  60.6k|	INSIST(added == count);
  ------------------
  |  |  202|  60.6k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  60.6k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 60.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  60.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  356|       |
  357|  60.7k|cleanup:
  358|  60.7k|	*countp += added;
  359|  60.7k|	if (rdatas != dns__rdataset_rdatas) {
  ------------------
  |  Branch (359:6): [True: 0, False: 60.7k]
  ------------------
  360|      0|		isc_mem_cput(cctx->mctx, rdatas, start, sizeof(rdatas[0]));
  ------------------
  |  |  153|      0|	do {                                                      \
  |  |  154|      0|		isc__mem_put((c), (p), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  155|      0|			     ISC__MEM_ZERO _ISC_MEM_FILELINE);    \
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  |  |  156|      0|		(p) = NULL;                                       \
  |  |  157|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (157:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  361|      0|	}
  362|       |
  363|  60.7k|	return result;
  364|  60.6k|}
rdataset.c:towire_addttl:
  242|   126k|	      isc_buffer_t *rdlen) {
  243|   126k|	isc_buffer_putuint32(target, rdataset->ttl);
  244|       |
  245|       |	/* Save space for rdlen. */
  246|   126k|	*rdlen = *target;
  247|   126k|	isc_buffer_add(target, 2);
  248|   126k|}
rdataset.c:towire_addrdata:
  252|   126k|		isc_buffer_t *rdlen) {
  253|   126k|	isc_result_t result = dns_rdata_towire(rdata, cctx, target);
  254|   126k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (254:6): [True: 142, False: 126k]
  ------------------
  255|    142|		return result;
  256|    142|	}
  257|   126k|	INSIST((target->used >= rdlen->used + 2) &&
  ------------------
  |  |  202|   126k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   252k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 126k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 126k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  258|   126k|	       (target->used - rdlen->used - 2 < 65536));
  259|   126k|	isc_buffer_putuint16(rdlen, (uint16_t)(target->used - rdlen->used - 2));
  260|   126k|	return ISC_R_SUCCESS;
  261|   126k|}

dns_time64_totext:
   33|  13.9k|dns_time64_totext(int64_t t, isc_buffer_t *target) {
   34|  13.9k|	struct tm tm;
   35|  13.9k|	char buf[sizeof("!!!!!!YYYY!!!!!!!!MM!!!!!!!!DD!!!!!!!!HH!!!!!!!!MM!!!!"
   36|  13.9k|			"!!!!SS")];
   37|  13.9k|	int secs;
   38|  13.9k|	unsigned int l;
   39|  13.9k|	isc_region_t region;
   40|       |
   41|       |/*
   42|       | * Warning. Do NOT use arguments with side effects with these macros.
   43|       | */
   44|  13.9k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
   45|  13.9k|#define year_secs(y) ((is_leap(y) ? 366 : 365) * 86400)
   46|  13.9k|#define month_secs(m, y) ((days[m] + ((m == 1 && is_leap(y)) ? 1 : 0)) * 86400)
   47|       |
   48|  13.9k|	tm.tm_year = 70;
   49|  21.3k|	while (t < 0) {
  ------------------
  |  Branch (49:9): [True: 7.39k, False: 13.9k]
  ------------------
   50|  7.39k|		if (tm.tm_year == 0) {
  ------------------
  |  Branch (50:7): [True: 0, False: 7.39k]
  ------------------
   51|      0|			return ISC_R_RANGE;
   52|      0|		}
   53|  7.39k|		tm.tm_year--;
   54|  7.39k|		secs = year_secs(tm.tm_year + 1900);
  ------------------
  |  |   45|  7.39k|#define year_secs(y) ((is_leap(y) ? 366 : 365) * 86400)
  |  |  ------------------
  |  |  |  |   44|  7.39k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (44:24): [True: 1.53k, False: 5.86k]
  |  |  |  |  |  Branch (44:42): [True: 1.53k, False: 0]
  |  |  |  |  |  Branch (44:63): [True: 0, False: 5.86k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   55|  7.39k|		t += secs;
   56|  7.39k|	}
   57|   324k|	while ((secs = year_secs(tm.tm_year + 1900)) <= t) {
  ------------------
  |  |   45|   324k|#define year_secs(y) ((is_leap(y) ? 366 : 365) * 86400)
  |  |  ------------------
  |  |  |  |   44|   324k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (44:24): [True: 78.4k, False: 245k]
  |  |  |  |  |  Branch (44:42): [True: 74.0k, False: 4.37k]
  |  |  |  |  |  Branch (44:63): [True: 4.37k, False: 245k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (57:9): [True: 310k, False: 13.9k]
  ------------------
   58|   310k|		t -= secs;
   59|   310k|		tm.tm_year++;
   60|   310k|		if (tm.tm_year + 1900 > 9999) {
  ------------------
  |  Branch (60:7): [True: 0, False: 310k]
  ------------------
   61|      0|			return ISC_R_RANGE;
   62|      0|		}
   63|   310k|	}
   64|  13.9k|	tm.tm_mon = 0;
   65|  77.4k|	while ((secs = month_secs(tm.tm_mon, tm.tm_year + 1900)) <= t) {
  ------------------
  |  |   46|  77.4k|#define month_secs(m, y) ((days[m] + ((m == 1 && is_leap(y)) ? 1 : 0)) * 86400)
  |  |  ------------------
  |  |  |  |   44|  10.0k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (44:24): [True: 2.01k, False: 8.07k]
  |  |  |  |  |  Branch (44:42): [True: 1.74k, False: 265]
  |  |  |  |  |  Branch (44:63): [True: 265, False: 8.07k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (46:40): [True: 10.0k, False: 67.3k]
  |  |  ------------------
  ------------------
  |  Branch (65:9): [True: 63.4k, False: 13.9k]
  ------------------
   66|  63.4k|		t -= secs;
   67|  63.4k|		tm.tm_mon++;
   68|  63.4k|	}
   69|  13.9k|	tm.tm_mday = 1;
   70|   199k|	while (86400 <= t) {
  ------------------
  |  Branch (70:9): [True: 185k, False: 13.9k]
  ------------------
   71|   185k|		t -= 86400;
   72|   185k|		tm.tm_mday++;
   73|   185k|	}
   74|  13.9k|	tm.tm_hour = 0;
   75|   165k|	while (3600 <= t) {
  ------------------
  |  Branch (75:9): [True: 151k, False: 13.9k]
  ------------------
   76|   151k|		t -= 3600;
   77|   151k|		tm.tm_hour++;
   78|   151k|	}
   79|  13.9k|	tm.tm_min = 0;
   80|   370k|	while (60 <= t) {
  ------------------
  |  Branch (80:9): [True: 356k, False: 13.9k]
  ------------------
   81|   356k|		t -= 60;
   82|   356k|		tm.tm_min++;
   83|   356k|	}
   84|  13.9k|	tm.tm_sec = (int)t;
   85|       |	/* yyyy  mm  dd  HH  MM  SS */
   86|  13.9k|	snprintf(buf, sizeof(buf), "%04d%02d%02d%02d%02d%02d",
   87|  13.9k|		 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
   88|  13.9k|		 tm.tm_min, tm.tm_sec);
   89|       |
   90|  13.9k|	isc_buffer_availableregion(target, &region);
   91|  13.9k|	l = strlen(buf);
   92|       |
   93|  13.9k|	if (l > region.length) {
  ------------------
  |  Branch (93:6): [True: 0, False: 13.9k]
  ------------------
   94|      0|		return ISC_R_NOSPACE;
   95|      0|	}
   96|       |
   97|  13.9k|	memmove(region.base, buf, l);
   98|  13.9k|	isc_buffer_add(target, l);
   99|  13.9k|	return ISC_R_SUCCESS;
  100|  13.9k|}
dns_time64_from32:
  103|  13.9k|dns_time64_from32(uint32_t value) {
  104|  13.9k|	isc_stdtime_t now = isc_stdtime_now();
  105|  13.9k|	int64_t start;
  106|  13.9k|	int64_t t;
  107|       |
  108|       |	/*
  109|       |	 * Adjust the time to the closest epoch.  This should be changed
  110|       |	 * to use a 64-bit counterpart to isc_stdtime_now() if one ever
  111|       |	 * is defined, but even the current code is good until the year
  112|       |	 * 2106.
  113|       |	 */
  114|       |
  115|  13.9k|	start = (int64_t)now;
  116|  13.9k|	if (isc_serial_gt(value, now)) {
  ------------------
  |  Branch (116:6): [True: 1.88k, False: 12.0k]
  ------------------
  117|  1.88k|		t = start + (value - now);
  118|  12.0k|	} else {
  119|  12.0k|		t = start - (now - value);
  120|  12.0k|	}
  121|       |
  122|  13.9k|	return t;
  123|  13.9k|}
dns_time32_totext:
  126|  13.9k|dns_time32_totext(uint32_t value, isc_buffer_t *target) {
  127|  13.9k|	return dns_time64_totext(dns_time64_from32(value), target);
  128|  13.9k|}

dns_ttl_totext:
   68|  27.0k|dns_ttl_totext(uint32_t src, bool verbose, bool upcase, isc_buffer_t *target) {
   69|  27.0k|	unsigned int secs, mins, hours, days, weeks, x;
   70|       |
   71|  27.0k|	secs = src % 60;
   72|  27.0k|	src /= 60;
   73|  27.0k|	mins = src % 60;
   74|  27.0k|	src /= 60;
   75|  27.0k|	hours = src % 24;
   76|  27.0k|	src /= 24;
   77|  27.0k|	days = src % 7;
   78|  27.0k|	src /= 7;
   79|  27.0k|	weeks = src;
   80|  27.0k|	src = 0;
   81|  27.0k|	POST(src);
  ------------------
  |  |   74|  27.0k|#define POST(x) (void)(x)
  ------------------
   82|       |
   83|  27.0k|	x = 0;
   84|  27.0k|	if (weeks != 0) {
  ------------------
  |  Branch (84:6): [True: 17.6k, False: 9.43k]
  ------------------
   85|  17.6k|		RETERR(ttlfmt(weeks, "week", verbose, x > 0, target));
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.6k|	}
  ------------------
   86|  17.6k|		x++;
   87|  17.6k|	}
   88|  27.0k|	if (days != 0) {
  ------------------
  |  Branch (88:6): [True: 14.5k, False: 12.5k]
  ------------------
   89|  14.5k|		RETERR(ttlfmt(days, "day", verbose, x > 0, target));
  ------------------
  |  |  276|  14.5k|	{                                  \
  |  |  277|  14.5k|		isc_result_t _r = (x);     \
  |  |  278|  14.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 14.5k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  14.5k|	}
  ------------------
   90|  14.5k|		x++;
   91|  14.5k|	}
   92|  27.0k|	if (hours != 0) {
  ------------------
  |  Branch (92:6): [True: 22.5k, False: 4.51k]
  ------------------
   93|  22.5k|		RETERR(ttlfmt(hours, "hour", verbose, x > 0, target));
  ------------------
  |  |  276|  22.5k|	{                                  \
  |  |  277|  22.5k|		isc_result_t _r = (x);     \
  |  |  278|  22.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.5k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.5k|	}
  ------------------
   94|  22.5k|		x++;
   95|  22.5k|	}
   96|  27.0k|	if (mins != 0) {
  ------------------
  |  Branch (96:6): [True: 22.9k, False: 4.13k]
  ------------------
   97|  22.9k|		RETERR(ttlfmt(mins, "minute", verbose, x > 0, target));
  ------------------
  |  |  276|  22.9k|	{                                  \
  |  |  277|  22.9k|		isc_result_t _r = (x);     \
  |  |  278|  22.9k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.9k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.9k|	}
  ------------------
   98|  22.9k|		x++;
   99|  22.9k|	}
  100|  27.0k|	if (secs != 0 || (weeks == 0 && days == 0 && hours == 0 && mins == 0)) {
  ------------------
  |  Branch (100:6): [True: 19.4k, False: 7.67k]
  |  Branch (100:20): [True: 5.69k, False: 1.98k]
  |  Branch (100:34): [True: 5.48k, False: 214]
  |  Branch (100:47): [True: 3.69k, False: 1.78k]
  |  Branch (100:61): [True: 3.56k, False: 132]
  ------------------
  101|  22.9k|		RETERR(ttlfmt(secs, "second", verbose, x > 0, target));
  ------------------
  |  |  276|  22.9k|	{                                  \
  |  |  277|  22.9k|		isc_result_t _r = (x);     \
  |  |  278|  22.9k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.9k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.9k|	}
  ------------------
  102|  22.9k|		x++;
  103|  22.9k|	}
  104|  27.0k|	INSIST(x > 0);
  ------------------
  |  |  202|  27.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  27.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 27.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  27.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  105|       |	/*
  106|       |	 * If only a single unit letter is printed, print it
  107|       |	 * in upper case. (Why?  Because BIND 8 does that.
  108|       |	 * Presumably it has a reason.)
  109|       |	 */
  110|  27.0k|	if (x == 1 && upcase && !verbose) {
  ------------------
  |  Branch (110:6): [True: 4.05k, False: 23.0k]
  |  Branch (110:16): [True: 4.05k, False: 0]
  |  Branch (110:26): [True: 0, False: 4.05k]
  ------------------
  111|      0|		isc_region_t region;
  112|       |		/*
  113|       |		 * The unit letter is the last character in the
  114|       |		 * used region of the buffer.
  115|       |		 */
  116|      0|		isc_buffer_usedregion(target, &region);
  117|      0|		region.base[region.length - 1] =
  118|      0|			isc_ascii_toupper(region.base[region.length - 1]);
  ------------------
  |  |   32|      0|#define isc_ascii_toupper(c) isc__ascii_toupper[(uint8_t)(c)]
  ------------------
  119|      0|	}
  120|  27.0k|	return ISC_R_SUCCESS;
  121|  27.0k|}
ttl.c:ttlfmt:
   41|   100k|       isc_buffer_t *target) {
   42|   100k|	char tmp[60];
   43|   100k|	unsigned int len;
   44|   100k|	isc_region_t region;
   45|       |
   46|   100k|	if (verbose) {
  ------------------
  |  Branch (46:6): [True: 100k, False: 0]
  ------------------
   47|   100k|		len = snprintf(tmp, sizeof(tmp), "%s%u %s%s", space ? " " : "",
  ------------------
  |  Branch (47:49): [True: 73.5k, False: 27.0k]
  ------------------
   48|   100k|			       t, s, t == 1 ? "" : "s");
  ------------------
  |  Branch (48:17): [True: 2.37k, False: 98.2k]
  ------------------
   49|   100k|	} else {
   50|      0|		len = snprintf(tmp, sizeof(tmp), "%u%c", t, s[0]);
   51|      0|	}
   52|       |
   53|   100k|	INSIST(len + 1 <= sizeof(tmp));
  ------------------
  |  |  202|   100k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   100k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   54|   100k|	isc_buffer_availableregion(target, &region);
   55|   100k|	if (len > region.length) {
  ------------------
  |  Branch (55:6): [True: 0, False: 100k]
  ------------------
   56|      0|		return ISC_R_NOSPACE;
   57|      0|	}
   58|   100k|	memmove(region.base, tmp, len);
   59|   100k|	isc_buffer_add(target, len);
   60|       |
   61|   100k|	return ISC_R_SUCCESS;
   62|   100k|}

dns__zone_keymgmt_initialize:
16143|      2|dns__zone_keymgmt_initialize(void) {
16144|  2.05k|	for (size_t idx = 0; idx < ARRAY_SIZE(keymgmt_buckets_g); ++idx) {
  ------------------
  |  |   98|  2.05k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (16144:23): [True: 2.04k, False: 2]
  ------------------
16145|  2.04k|		isc_mutex_init(&keymgmt_buckets_g[idx].lock);
  ------------------
  |  |   68|  2.04k|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|  2.04k|	{                                                                 \
  |  |  |  |   80|  2.04k|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|  2.04k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|  2.04k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2.04k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|  2.04k|	}
  |  |  ------------------
  ------------------
16146|  2.04k|	}
16147|      2|}

isc_base32hexnp_totext:
  125|  3.57k|		       const char *wordbreak, isc_buffer_t *target) {
  126|  3.57k|	return base32_totext(source, wordlength, wordbreak, target, base32hex,
  127|  3.57k|			     0);
  128|  3.57k|}
isc_base32hexnp_decoderegion:
  394|  5.06k|isc_base32hexnp_decoderegion(isc_region_t *source, isc_buffer_t *target) {
  395|       |	return base32_decoderegion(source, base32hex, false, target);
  396|  5.06k|}
base32.c:base32_totext:
   45|  3.57k|	      isc_buffer_t *target, const char base[], char pad) {
   46|  3.57k|	char buf[9];
   47|  3.57k|	unsigned int loops = 0;
   48|       |
   49|  3.57k|	if (wordlength >= 0 && wordlength < 8) {
  ------------------
  |  Branch (49:6): [True: 3.57k, False: 0]
  |  Branch (49:25): [True: 3.57k, False: 0]
  ------------------
   50|  3.57k|		wordlength = 8;
   51|  3.57k|	}
   52|       |
   53|  3.57k|	memset(buf, 0, sizeof(buf));
   54|  7.44k|	while (source->length > 0) {
  ------------------
  |  Branch (54:9): [True: 6.31k, False: 1.12k]
  ------------------
   55|  6.31k|		buf[0] = base[((source->base[0] >> 3) & 0x1f)]; /* 5 + */
   56|  6.31k|		if (source->length == 1) {
  ------------------
  |  Branch (56:7): [True: 639, False: 5.67k]
  ------------------
   57|    639|			buf[1] = base[(source->base[0] << 2) & 0x1c];
   58|    639|			buf[2] = buf[3] = buf[4] = pad;
   59|    639|			buf[5] = buf[6] = buf[7] = pad;
   60|    639|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    639|	{                                  \
  |  |  277|    639|		isc_result_t _r = (x);     \
  |  |  278|    639|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 639]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    639|	}
  ------------------
   61|    639|			break;
   62|    639|		}
   63|  5.67k|		buf[1] = base[((source->base[0] << 2) & 0x1c) | /* 3 = 8 */
   64|  5.67k|			      ((source->base[1] >> 6) & 0x03)]; /* 2 + */
   65|  5.67k|		buf[2] = base[((source->base[1] >> 1) & 0x1f)]; /* 5 + */
   66|  5.67k|		if (source->length == 2) {
  ------------------
  |  Branch (66:7): [True: 859, False: 4.81k]
  ------------------
   67|    859|			buf[3] = base[(source->base[1] << 4) & 0x10];
   68|    859|			buf[4] = buf[5] = buf[6] = buf[7] = pad;
   69|    859|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    859|	{                                  \
  |  |  277|    859|		isc_result_t _r = (x);     \
  |  |  278|    859|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 859]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    859|	}
  ------------------
   70|    859|			break;
   71|    859|		}
   72|  4.81k|		buf[3] = base[((source->base[1] << 4) & 0x10) | /* 1 = 8 */
   73|  4.81k|			      ((source->base[2] >> 4) & 0x0f)]; /* 4 + */
   74|  4.81k|		if (source->length == 3) {
  ------------------
  |  Branch (74:7): [True: 309, False: 4.50k]
  ------------------
   75|    309|			buf[4] = base[(source->base[2] << 1) & 0x1e];
   76|    309|			buf[5] = buf[6] = buf[7] = pad;
   77|    309|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    309|	{                                  \
  |  |  277|    309|		isc_result_t _r = (x);     \
  |  |  278|    309|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 309]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    309|	}
  ------------------
   78|    309|			break;
   79|    309|		}
   80|  4.50k|		buf[4] = base[((source->base[2] << 1) & 0x1e) | /* 4 = 8 */
   81|  4.50k|			      ((source->base[3] >> 7) & 0x01)]; /* 1 + */
   82|  4.50k|		buf[5] = base[((source->base[3] >> 2) & 0x1f)]; /* 5 + */
   83|  4.50k|		if (source->length == 4) {
  ------------------
  |  Branch (83:7): [True: 640, False: 3.86k]
  ------------------
   84|    640|			buf[6] = base[(source->base[3] << 3) & 0x18];
   85|    640|			buf[7] = pad;
   86|    640|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    640|	{                                  \
  |  |  277|    640|		isc_result_t _r = (x);     \
  |  |  278|    640|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 640]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    640|	}
  ------------------
   87|    640|			break;
   88|    640|		}
   89|  3.86k|		buf[6] = base[((source->base[3] << 3) & 0x18) | /* 2 = 8 */
   90|  3.86k|			      ((source->base[4] >> 5) & 0x07)]; /* 3 + */
   91|  3.86k|		buf[7] = base[source->base[4] & 0x1f];		/* 5 = 8 */
   92|  3.86k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.86k|	{                                  \
  |  |  277|  3.86k|		isc_result_t _r = (x);     \
  |  |  278|  3.86k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.86k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.86k|	}
  ------------------
   93|  3.86k|		isc_region_consume(source, 5);
  ------------------
  |  |   50|  3.86k|	do {                              \
  |  |   51|  3.86k|		isc_region_t *_r = (r);   \
  |  |   52|  3.86k|		unsigned int  _l = (l);   \
  |  |   53|  3.86k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.86k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.86k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.86k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.86k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.86k|		_r->base += _l;           \
  |  |   55|  3.86k|		_r->length -= _l;         \
  |  |   56|  3.86k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.86k]
  |  |  ------------------
  ------------------
   94|       |
   95|  3.86k|		loops++;
   96|  3.86k|		if (source->length != 0 && wordlength >= 0 &&
  ------------------
  |  Branch (96:7): [True: 2.74k, False: 1.12k]
  |  Branch (96:30): [True: 2.74k, False: 0]
  ------------------
   97|  2.74k|		    (int)((loops + 1) * 8) >= wordlength)
  ------------------
  |  Branch (97:7): [True: 2.74k, False: 0]
  ------------------
   98|  2.74k|		{
   99|  2.74k|			loops = 0;
  100|  2.74k|			RETERR(str_totext(wordbreak, target));
  ------------------
  |  |  276|  2.74k|	{                                  \
  |  |  277|  2.74k|		isc_result_t _r = (x);     \
  |  |  278|  2.74k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.74k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.74k|	}
  ------------------
  101|  2.74k|		}
  102|  3.86k|	}
  103|  3.57k|	if (source->length > 0) {
  ------------------
  |  Branch (103:6): [True: 2.44k, False: 1.12k]
  ------------------
  104|  2.44k|		isc_region_consume(source, source->length);
  ------------------
  |  |   50|  2.44k|	do {                              \
  |  |   51|  2.44k|		isc_region_t *_r = (r);   \
  |  |   52|  2.44k|		unsigned int  _l = (l);   \
  |  |   53|  2.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.44k|		_r->base += _l;           \
  |  |   55|  2.44k|		_r->length -= _l;         \
  |  |   56|  2.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.44k]
  |  |  ------------------
  ------------------
  105|  2.44k|	}
  106|  3.57k|	return ISC_R_SUCCESS;
  107|  3.57k|}
base32.c:str_totext:
  399|  9.05k|str_totext(const char *source, isc_buffer_t *target) {
  400|  9.05k|	unsigned int l;
  401|  9.05k|	isc_region_t region;
  402|       |
  403|  9.05k|	isc_buffer_availableregion(target, &region);
  404|  9.05k|	l = strlen(source);
  405|       |
  406|  9.05k|	if (l > region.length) {
  ------------------
  |  Branch (406:6): [True: 0, False: 9.05k]
  ------------------
  407|      0|		return ISC_R_NOSPACE;
  408|      0|	}
  409|       |
  410|  9.05k|	memmove(region.base, source, l);
  411|  9.05k|	isc_buffer_add(target, l);
  412|  9.05k|	return ISC_R_SUCCESS;
  413|  9.05k|}
base32.c:base32_decode_char:
  146|  41.0k|base32_decode_char(base32_decode_ctx_t *ctx, int c) {
  147|  41.0k|	const char *s;
  148|  41.0k|	unsigned int last;
  149|       |
  150|  41.0k|	if (ctx->seen_end) {
  ------------------
  |  Branch (150:6): [True: 0, False: 41.0k]
  ------------------
  151|      0|		return ISC_R_BADBASE32;
  152|      0|	}
  153|  41.0k|	if ((s = strchr(ctx->base, c)) == NULL) {
  ------------------
  |  Branch (153:6): [True: 5, False: 41.0k]
  ------------------
  154|      5|		return ISC_R_BADBASE32;
  155|      5|	}
  156|  41.0k|	last = (unsigned int)(s - ctx->base);
  157|       |
  158|       |	/*
  159|       |	 * Handle lower case.
  160|       |	 */
  161|  41.0k|	if (last > 32) {
  ------------------
  |  Branch (161:6): [True: 1.69k, False: 39.3k]
  ------------------
  162|  1.69k|		last -= 33;
  163|  1.69k|	}
  164|       |
  165|       |	/*
  166|       |	 * Check that padding is contiguous.
  167|       |	 */
  168|  41.0k|	if (last != 32 && ctx->seen_32 != 0) {
  ------------------
  |  Branch (168:6): [True: 35.7k, False: 5.33k]
  |  Branch (168:20): [True: 0, False: 35.7k]
  ------------------
  169|      0|		return ISC_R_BADBASE32;
  170|      0|	}
  171|       |
  172|       |	/*
  173|       |	 * If padding is not permitted flag padding as a error.
  174|       |	 */
  175|  41.0k|	if (last == 32 && !ctx->pad) {
  ------------------
  |  Branch (175:6): [True: 5.33k, False: 35.7k]
  |  Branch (175:20): [True: 3, False: 5.32k]
  ------------------
  176|      3|		return ISC_R_BADBASE32;
  177|      3|	}
  178|       |
  179|       |	/*
  180|       |	 * Check that padding starts at the right place and that
  181|       |	 * bits that should be zero are.
  182|       |	 * Record how many significant bytes in answer (seen_32).
  183|       |	 */
  184|  41.0k|	if (last == 32 && ctx->seen_32 == 0) {
  ------------------
  |  Branch (184:6): [True: 5.32k, False: 35.7k]
  |  Branch (184:20): [True: 1.31k, False: 4.01k]
  ------------------
  185|  1.31k|		switch (ctx->digits) {
  ------------------
  |  Branch (185:11): [True: 1.31k, False: 0]
  ------------------
  186|      0|		case 0:
  ------------------
  |  Branch (186:3): [True: 0, False: 1.31k]
  ------------------
  187|      1|		case 1:
  ------------------
  |  Branch (187:3): [True: 1, False: 1.31k]
  ------------------
  188|      1|			return ISC_R_BADBASE32;
  189|    469|		case 2:
  ------------------
  |  Branch (189:3): [True: 469, False: 845]
  ------------------
  190|    469|			if ((ctx->val[1] & 0x03) != 0) {
  ------------------
  |  Branch (190:8): [True: 2, False: 467]
  ------------------
  191|      2|				return ISC_R_BADBASE32;
  192|      2|			}
  193|    467|			ctx->seen_32 = 1;
  194|    467|			break;
  195|      1|		case 3:
  ------------------
  |  Branch (195:3): [True: 1, False: 1.31k]
  ------------------
  196|      1|			return ISC_R_BADBASE32;
  197|    430|		case 4:
  ------------------
  |  Branch (197:3): [True: 430, False: 884]
  ------------------
  198|    430|			if ((ctx->val[3] & 0x0f) != 0) {
  ------------------
  |  Branch (198:8): [True: 4, False: 426]
  ------------------
  199|      4|				return ISC_R_BADBASE32;
  200|      4|			}
  201|    426|			ctx->seen_32 = 2;
  202|    426|			break;
  203|    201|		case 5:
  ------------------
  |  Branch (203:3): [True: 201, False: 1.11k]
  ------------------
  204|    201|			if ((ctx->val[4] & 0x01) != 0) {
  ------------------
  |  Branch (204:8): [True: 1, False: 200]
  ------------------
  205|      1|				return ISC_R_BADBASE32;
  206|      1|			}
  207|    200|			ctx->seen_32 = 3;
  208|    200|			break;
  209|      1|		case 6:
  ------------------
  |  Branch (209:3): [True: 1, False: 1.31k]
  ------------------
  210|      1|			return ISC_R_BADBASE32;
  211|    211|		case 7:
  ------------------
  |  Branch (211:3): [True: 211, False: 1.10k]
  ------------------
  212|    211|			if ((ctx->val[6] & 0x07) != 0) {
  ------------------
  |  Branch (212:8): [True: 1, False: 210]
  ------------------
  213|      1|				return ISC_R_BADBASE32;
  214|      1|			}
  215|    210|			ctx->seen_32 = 4;
  216|    210|			break;
  217|  1.31k|		}
  218|  1.31k|	}
  219|       |
  220|       |	/*
  221|       |	 * Zero fill pad values.
  222|       |	 */
  223|  41.0k|	ctx->val[ctx->digits++] = (last == 32) ? 0 : last;
  ------------------
  |  Branch (223:28): [True: 5.31k, False: 35.7k]
  ------------------
  224|       |
  225|  41.0k|	if (ctx->digits == 8) {
  ------------------
  |  Branch (225:6): [True: 5.12k, False: 35.9k]
  ------------------
  226|  5.12k|		int n = 5;
  227|  5.12k|		unsigned char buf[5];
  228|       |
  229|  5.12k|		if (ctx->seen_32 != 0) {
  ------------------
  |  Branch (229:7): [True: 1.30k, False: 3.82k]
  ------------------
  230|  1.30k|			ctx->seen_end = true;
  231|  1.30k|			n = ctx->seen_32;
  232|  1.30k|		}
  233|  5.12k|		buf[0] = (ctx->val[0] << 3) | (ctx->val[1] >> 2);
  234|  5.12k|		buf[1] = (ctx->val[1] << 6) | (ctx->val[2] << 1) |
  235|  5.12k|			 (ctx->val[3] >> 4);
  236|  5.12k|		buf[2] = (ctx->val[3] << 4) | (ctx->val[4] >> 1);
  237|  5.12k|		buf[3] = (ctx->val[4] << 7) | (ctx->val[5] << 2) |
  238|  5.12k|			 (ctx->val[6] >> 3);
  239|  5.12k|		buf[4] = (ctx->val[6] << 5) | (ctx->val[7]);
  240|  5.12k|		RETERR(mem_tobuffer(ctx->target, buf, n));
  ------------------
  |  |  276|  5.12k|	{                                  \
  |  |  277|  5.12k|		isc_result_t _r = (x);     \
  |  |  278|  5.12k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.12k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.12k|	}
  ------------------
  241|  5.12k|		if (ctx->length >= 0) {
  ------------------
  |  Branch (241:7): [True: 0, False: 5.12k]
  ------------------
  242|      0|			if (n > ctx->length) {
  ------------------
  |  Branch (242:8): [True: 0, False: 0]
  ------------------
  243|      0|				return ISC_R_BADBASE32;
  244|      0|			} else {
  245|      0|				ctx->length -= n;
  246|      0|			}
  247|      0|		}
  248|  5.12k|		ctx->digits = 0;
  249|  5.12k|	}
  250|  41.0k|	return ISC_R_SUCCESS;
  251|  41.0k|}
base32.c:mem_tobuffer:
  416|  5.12k|mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) {
  417|  5.12k|	isc_region_t tr;
  418|       |
  419|  5.12k|	isc_buffer_availableregion(target, &tr);
  420|  5.12k|	if (length > tr.length) {
  ------------------
  |  Branch (420:6): [True: 0, False: 5.12k]
  ------------------
  421|      0|		return ISC_R_NOSPACE;
  422|      0|	}
  423|  5.12k|	memmove(tr.base, base, length);
  424|  5.12k|	isc_buffer_add(target, length);
  425|  5.12k|	return ISC_R_SUCCESS;
  426|  5.12k|}
base32.c:base32_decode_finish:
  254|  5.05k|base32_decode_finish(base32_decode_ctx_t *ctx) {
  255|  5.05k|	if (ctx->length > 0) {
  ------------------
  |  Branch (255:6): [True: 0, False: 5.05k]
  ------------------
  256|      0|		return ISC_R_UNEXPECTEDEND;
  257|      0|	}
  258|       |	/*
  259|       |	 * Add missing padding if required.
  260|       |	 */
  261|  5.05k|	if (!ctx->pad && ctx->digits != 0) {
  ------------------
  |  Branch (261:6): [True: 5.05k, False: 0]
  |  Branch (261:19): [True: 1.31k, False: 3.74k]
  ------------------
  262|  1.31k|		ctx->pad = true;
  263|  5.32k|		do {
  264|  5.32k|			RETERR(base32_decode_char(ctx, '='));
  ------------------
  |  |  276|  5.32k|	{                                  \
  |  |  277|  5.32k|		isc_result_t _r = (x);     \
  |  |  278|  5.32k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 11, False: 5.31k]
  |  |  ------------------
  |  |  279|     11|			return ((_r));     \
  |  |  280|     11|		}                          \
  |  |  281|  5.32k|	}
  ------------------
  265|  5.31k|		} while (ctx->digits != 0);
  ------------------
  |  Branch (265:12): [True: 4.01k, False: 1.30k]
  ------------------
  266|  1.31k|	}
  267|  5.04k|	if (ctx->digits != 0) {
  ------------------
  |  Branch (267:6): [True: 0, False: 5.04k]
  ------------------
  268|      0|		return ISC_R_BADBASE32;
  269|      0|	}
  270|  5.04k|	return ISC_R_SUCCESS;
  271|  5.04k|}
base32.c:base32_decoderegion:
  369|  5.06k|		    isc_buffer_t *target) {
  370|  5.06k|	base32_decode_ctx_t ctx = {
  371|  5.06k|		.length = -1, .base = base, .target = target, .pad = pad
  372|  5.06k|	};
  373|       |
  374|  40.8k|	while (source->length != 0) {
  ------------------
  |  Branch (374:9): [True: 35.7k, False: 5.05k]
  ------------------
  375|  35.7k|		int c = *source->base;
  376|  35.7k|		RETERR(base32_decode_char(&ctx, c));
  ------------------
  |  |  276|  35.7k|	{                                  \
  |  |  277|  35.7k|		isc_result_t _r = (x);     \
  |  |  278|  35.7k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 8, False: 35.7k]
  |  |  ------------------
  |  |  279|      8|			return ((_r));     \
  |  |  280|      8|		}                          \
  |  |  281|  35.7k|	}
  ------------------
  377|  35.7k|		isc_region_consume(source, 1);
  ------------------
  |  |   50|  35.7k|	do {                              \
  |  |   51|  35.7k|		isc_region_t *_r = (r);   \
  |  |   52|  35.7k|		unsigned int  _l = (l);   \
  |  |   53|  35.7k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  35.7k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  35.7k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 35.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  35.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  35.7k|		_r->base += _l;           \
  |  |   55|  35.7k|		_r->length -= _l;         \
  |  |   56|  35.7k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 35.7k]
  |  |  ------------------
  ------------------
  378|  35.7k|	}
  379|  5.05k|	RETERR(base32_decode_finish(&ctx));
  ------------------
  |  |  276|  5.05k|	{                                  \
  |  |  277|  5.05k|		isc_result_t _r = (x);     \
  |  |  278|  5.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 11, False: 5.04k]
  |  |  ------------------
  |  |  279|     11|			return ((_r));     \
  |  |  280|     11|		}                          \
  |  |  281|  5.05k|	}
  ------------------
  380|  5.04k|	return ISC_R_SUCCESS;
  381|  5.05k|}

isc_base64_totext:
   41|  39.6k|		  isc_buffer_t *target) {
   42|  39.6k|	char buf[5];
   43|  39.6k|	unsigned int loops = 0;
   44|       |
   45|  39.6k|	if (wordlength < 4) {
  ------------------
  |  Branch (45:6): [True: 6.42k, False: 33.2k]
  ------------------
   46|  6.42k|		wordlength = 4;
   47|  6.42k|	}
   48|       |
   49|  39.6k|	memset(buf, 0, sizeof(buf));
   50|   819k|	while (source->length > 2) {
  ------------------
  |  Branch (50:9): [True: 779k, False: 39.6k]
  ------------------
   51|   779k|		buf[0] = base64[(source->base[0] >> 2) & 0x3f];
   52|   779k|		buf[1] = base64[((source->base[0] << 4) & 0x30) |
   53|   779k|				((source->base[1] >> 4) & 0x0f)];
   54|   779k|		buf[2] = base64[((source->base[1] << 2) & 0x3c) |
   55|   779k|				((source->base[2] >> 6) & 0x03)];
   56|   779k|		buf[3] = base64[source->base[2] & 0x3f];
   57|   779k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   779k|	{                                  \
  |  |  277|   779k|		isc_result_t _r = (x);     \
  |  |  278|   779k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 779k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   779k|	}
  ------------------
   58|   779k|		isc_region_consume(source, 3);
  ------------------
  |  |   50|   779k|	do {                              \
  |  |   51|   779k|		isc_region_t *_r = (r);   \
  |  |   52|   779k|		unsigned int  _l = (l);   \
  |  |   53|   779k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   779k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   779k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 779k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   779k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   779k|		_r->base += _l;           \
  |  |   55|   779k|		_r->length -= _l;         \
  |  |   56|   779k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 779k]
  |  |  ------------------
  ------------------
   59|       |
   60|   779k|		loops++;
   61|   779k|		if (source->length != 0 && (int)((loops + 1) * 4) >= wordlength)
  ------------------
  |  Branch (61:7): [True: 772k, False: 7.38k]
  |  Branch (61:30): [True: 67.8k, False: 704k]
  ------------------
   62|  67.8k|		{
   63|  67.8k|			loops = 0;
   64|  67.8k|			RETERR(str_totext(wordbreak, target));
  ------------------
  |  |  276|  67.8k|	{                                  \
  |  |  277|  67.8k|		isc_result_t _r = (x);     \
  |  |  278|  67.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 67.8k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  67.8k|	}
  ------------------
   65|  67.8k|		}
   66|   779k|	}
   67|  39.6k|	if (source->length == 2) {
  ------------------
  |  Branch (67:6): [True: 8.35k, False: 31.3k]
  ------------------
   68|  8.35k|		buf[0] = base64[(source->base[0] >> 2) & 0x3f];
   69|  8.35k|		buf[1] = base64[((source->base[0] << 4) & 0x30) |
   70|  8.35k|				((source->base[1] >> 4) & 0x0f)];
   71|  8.35k|		buf[2] = base64[((source->base[1] << 2) & 0x3c)];
   72|  8.35k|		buf[3] = '=';
   73|  8.35k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  8.35k|	{                                  \
  |  |  277|  8.35k|		isc_result_t _r = (x);     \
  |  |  278|  8.35k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 8.35k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  8.35k|	}
  ------------------
   74|  8.35k|		isc_region_consume(source, 2);
  ------------------
  |  |   50|  8.35k|	do {                              \
  |  |   51|  8.35k|		isc_region_t *_r = (r);   \
  |  |   52|  8.35k|		unsigned int  _l = (l);   \
  |  |   53|  8.35k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.35k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.35k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.35k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.35k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.35k|		_r->base += _l;           \
  |  |   55|  8.35k|		_r->length -= _l;         \
  |  |   56|  8.35k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.35k]
  |  |  ------------------
  ------------------
   75|  31.3k|	} else if (source->length == 1) {
  ------------------
  |  Branch (75:13): [True: 22.1k, False: 9.18k]
  ------------------
   76|  22.1k|		buf[0] = base64[(source->base[0] >> 2) & 0x3f];
   77|  22.1k|		buf[1] = base64[((source->base[0] << 4) & 0x30)];
   78|  22.1k|		buf[2] = buf[3] = '=';
   79|  22.1k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  22.1k|	{                                  \
  |  |  277|  22.1k|		isc_result_t _r = (x);     \
  |  |  278|  22.1k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.1k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.1k|	}
  ------------------
   80|  22.1k|		isc_region_consume(source, 1);
  ------------------
  |  |   50|  22.1k|	do {                              \
  |  |   51|  22.1k|		isc_region_t *_r = (r);   \
  |  |   52|  22.1k|		unsigned int  _l = (l);   \
  |  |   53|  22.1k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  22.1k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  22.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 22.1k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  22.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  22.1k|		_r->base += _l;           \
  |  |   55|  22.1k|		_r->length -= _l;         \
  |  |   56|  22.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 22.1k]
  |  |  ------------------
  ------------------
   81|  22.1k|	}
   82|  39.6k|	return ISC_R_SUCCESS;
   83|  39.6k|}
base64.c:str_totext:
  236|   878k|str_totext(const char *source, isc_buffer_t *target) {
  237|   878k|	unsigned int l;
  238|   878k|	isc_region_t region;
  239|       |
  240|   878k|	isc_buffer_availableregion(target, &region);
  241|   878k|	l = strlen(source);
  242|       |
  243|   878k|	if (l > region.length) {
  ------------------
  |  Branch (243:6): [True: 0, False: 878k]
  ------------------
  244|      0|		return ISC_R_NOSPACE;
  245|      0|	}
  246|       |
  247|   878k|	memmove(region.base, source, l);
  248|   878k|	isc_buffer_add(target, l);
  249|   878k|	return ISC_R_SUCCESS;
  250|   878k|}

isc_hmac:
  247|     12|	 unsigned int *digestlen) {
  248|     12|	EVP_MAC_CTX *ctx;
  249|     12|	size_t maclen;
  250|       |
  251|     12|	REQUIRE(type < ISC_MD_MAX);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     12|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|       |
  253|     12|	if (isc__crypto_md[type] == NULL) {
  ------------------
  |  Branch (253:6): [True: 0, False: 12]
  ------------------
  254|      0|		return ISC_R_NOTIMPLEMENTED;
  255|      0|	}
  256|       |
  257|     12|	ctx = EVP_MAC_CTX_new(evp_hmac);
  258|     12|	RUNTIME_CHECK(ctx != NULL);
  ------------------
  |  |  245|     12|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 12, False: 0]
  |  |  ------------------
  ------------------
  259|       |
  260|     12|	if (EVP_MAC_init(ctx, key, keylen, md_to_hmac_params[type]) != 1) {
  ------------------
  |  Branch (260:6): [True: 0, False: 12]
  ------------------
  261|      0|		goto fail;
  262|      0|	}
  263|       |
  264|     12|	if (EVP_MAC_update(ctx, buf, len) != 1) {
  ------------------
  |  Branch (264:6): [True: 0, False: 12]
  ------------------
  265|      0|		goto fail;
  266|      0|	}
  267|       |
  268|     12|	maclen = *digestlen;
  269|     12|	if (EVP_MAC_final(ctx, digest, &maclen, maclen) != 1) {
  ------------------
  |  Branch (269:6): [True: 0, False: 12]
  ------------------
  270|      0|		goto fail;
  271|      0|	}
  272|       |
  273|     12|	*digestlen = maclen;
  274|       |
  275|     12|	EVP_MAC_CTX_free(ctx);
  276|     12|	return ISC_R_SUCCESS;
  277|       |
  278|      0|fail:
  279|      0|	ERR_clear_error();
  280|      0|	EVP_MAC_CTX_free(ctx);
  281|      0|	return ISC_R_CRYPTOFAILURE;
  282|     12|}
isc_crypto_fips_mode:
  916|      2|isc_crypto_fips_mode(void) {
  917|       |	return EVP_default_properties_is_fips_enabled(NULL) != 0;
  918|      2|}
isc__crypto_initialize:
  970|      2|isc__crypto_initialize(void) {
  971|       |	/*
  972|       |	 * We call OPENSSL_cleanup() manually, in a correct order, thus disable
  973|       |	 * the automatic atexit() handler.
  974|       |	 */
  975|      2|	uint64_t opts = OPENSSL_INIT_LOAD_CONFIG | OPENSSL_INIT_NO_ATEXIT;
  976|       |
  977|      2|	RUNTIME_CHECK(OPENSSL_init_ssl(opts, NULL) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  978|       |
  979|      2|	register_algorithms();
  980|       |
  981|       |#if defined(ENABLE_FIPS_MODE)
  982|       |	if (isc_crypto_fips_enable() != ISC_R_SUCCESS) {
  983|       |		ERR_clear_error();
  984|       |		FATAL_ERROR("Failed to toggle FIPS mode but is "
  985|       |			    "required for this build");
  986|       |	}
  987|       |#endif
  988|       |
  989|       |	/* Protect ourselves against unseeded PRNG */
  990|      2|	if (RAND_status() != 1) {
  ------------------
  |  Branch (990:6): [True: 0, False: 2]
  ------------------
  991|      0|		isc_ossl_wrap_logged_toresult(
  ------------------
  |  |   26|      0|	isc__ossl_wrap_logged_toresult(category, module, funcname, fallback, \
  |  |   27|      0|				       __FILE__, __LINE__)
  ------------------
  992|      0|			ISC_LOGCATEGORY_GENERAL, ISC_LOGMODULE_CRYPTO,
  993|      0|			"RAND_status", ISC_R_CRYPTOFAILURE);
  994|      0|		FATAL_ERROR("OpenSSL pseudorandom number generator "
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  995|      0|			    "cannot be initialized (see the `PRNG not "
  996|      0|			    "seeded' message in the OpenSSL FAQ)");
  997|      0|	}
  998|      2|}
ossl3.c:register_algorithms:
  133|      2|register_algorithms(void) {
  134|      2|	if (!isc_crypto_fips_mode()) {
  ------------------
  |  Branch (134:6): [True: 2, False: 0]
  ------------------
  135|      2|		md_register_algorithm(MD5);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  136|       |
  137|      2|		INSIST(evp_chacha20poly1305 == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  138|      2|		evp_chacha20poly1305 =
  139|      2|			EVP_CIPHER_fetch(NULL, "ChaCha20-Poly1305", NULL);
  140|       |
  141|      2|		INSIST(evp_chacha20 == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  142|      2|		evp_chacha20 = EVP_CIPHER_fetch(NULL, "ChaCha20", NULL);
  143|      2|	}
  144|       |
  145|      2|	md_register_algorithm(SHA1);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  146|      2|	md_register_algorithm(SHA224);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  147|      2|	md_register_algorithm(SHA256);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  148|      2|	md_register_algorithm(SHA384);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  149|      2|	md_register_algorithm(SHA512);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  150|       |
  151|      2|	INSIST(evp_aes_128_gcm == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  152|      2|	evp_aes_128_gcm = EVP_CIPHER_fetch(NULL, "AES-128-GCM", NULL);
  153|       |
  154|      2|	INSIST(evp_aes_256_gcm == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  155|      2|	evp_aes_256_gcm = EVP_CIPHER_fetch(NULL, "AES-256-GCM", NULL);
  156|       |
  157|      2|	INSIST(evp_aes_128_ctr == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  158|      2|	evp_aes_128_ctr = EVP_CIPHER_fetch(NULL, "AES-128-CTR", NULL);
  159|       |
  160|      2|	INSIST(evp_aes_256_ctr == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  161|      2|	evp_aes_256_ctr = EVP_CIPHER_fetch(NULL, "AES-256-CTR", NULL);
  162|       |
  163|       |	/* We _must_ have HMAC */
  164|      2|	evp_hmac = EVP_MAC_fetch(NULL, "HMAC", NULL);
  165|      2|	if (evp_hmac == NULL) {
  ------------------
  |  Branch (165:6): [True: 0, False: 2]
  ------------------
  166|      0|		FATAL_ERROR("OpenSSL failed to find an HMAC implementation. "
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  167|      0|			    "Please make sure the default provider has an "
  168|      0|			    "EVP_MAC-HMAC implementation");
  169|      0|	}
  170|       |
  171|      2|	evp_tls_1_3_kdf = EVP_KDF_fetch(NULL, OSSL_KDF_NAME_TLS1_3_KDF, NULL);
  172|      2|	if (evp_tls_1_3_kdf == NULL) {
  ------------------
  |  Branch (172:6): [True: 0, False: 2]
  ------------------
  173|      0|		FATAL_ERROR(
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  174|      0|			"OpenSSL failed to find an TLS 1.3 KDF implementation."
  175|      0|			"Please make sure the default provider has an "
  176|      0|			"EVP_KDF-TLS13_KDF implementation");
  177|      0|	}
  178|       |
  179|      2|	evp_hkdf = EVP_KDF_fetch(NULL, OSSL_KDF_NAME_HKDF, NULL);
  180|      2|	if (evp_hkdf == NULL) {
  ------------------
  |  Branch (180:6): [True: 0, False: 2]
  ------------------
  181|      0|		FATAL_ERROR("OpenSSL failed to find an HKDF implementation. "
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  182|      0|			    "Please make sure the default provider has an "
  183|      0|			    "EVP_KDF-HKDF implementation");
  184|      0|	}
  185|       |
  186|      2|	ERR_clear_error();
  187|       |
  188|      2|	return ISC_R_SUCCESS;
  189|      2|}

isc__hash_initialize:
   30|      2|isc__hash_initialize(void) {
   31|       |	/*
   32|       |	 * Set a constant key to help in problem reproduction should
   33|       |	 * fuzzing find a crash or a hang.
   34|       |	 */
   35|      2|	uint8_t key[16] = { 1 };
   36|       |#if !FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
   37|       |	isc_random_buf(key, sizeof(key));
   38|       |#endif /* if FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION */
   39|      2|	STATIC_ASSERT(sizeof(key) >= sizeof(isc_hash_key),
  ------------------
  |  |  154|      2|#define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
  ------------------
   40|      2|		      "sizeof(key) < sizeof(isc_hash_key)");
   41|      2|	memmove(isc_hash_key, key, sizeof(isc_hash_key));
   42|      2|}
isc_hash32_init:
   57|   473k|isc_hash32_init(isc_hash32_t *restrict state) {
   58|   473k|	isc_halfsiphash13_init(state, isc_hash_key);
   59|   473k|}
isc_hash32_hash:
   63|   929k|		const size_t length, const bool case_sensitive) {
   64|   929k|	REQUIRE(length == 0 || data != NULL);
  ------------------
  |  |  198|   929k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.85M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 929k]
  |  |  |  |  |  Branch (42:11): [True: 929k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   929k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   65|       |
   66|   929k|	isc_halfsiphash13_hash(state, data, length, case_sensitive);
   67|   929k|}
isc_hash32_finalize:
   70|   473k|isc_hash32_finalize(isc_hash32_t *restrict state) {
   71|   473k|	uint32_t hval;
   72|       |
   73|   473k|	isc_halfsiphash13_finalize(state, (uint8_t *)&hval);
   74|       |
   75|   473k|	return hval;
   76|   473k|}

isc_hashmap_create:
  209|  28.8k|isc_hashmap_create(isc_mem_t *mctx, uint8_t bits, isc_hashmap_t **hashmapp) {
  210|  28.8k|	isc_hashmap_t *hashmap = isc_mem_get(mctx, sizeof(*hashmap));
  ------------------
  |  |  128|  28.8k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  211|       |
  212|  28.8k|	REQUIRE(hashmapp != NULL && *hashmapp == NULL);
  ------------------
  |  |  198|  28.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  57.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  28.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  213|  28.8k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  28.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  28.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 28.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  28.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  214|  28.8k|	REQUIRE(bits >= HASHMAP_MIN_BITS && bits <= HASHMAP_MAX_BITS);
  ------------------
  |  |  198|  28.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  57.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  28.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  215|       |
  216|  28.8k|	*hashmap = (isc_hashmap_t){
  217|  28.8k|		.magic = ISC_HASHMAP_MAGIC,
  ------------------
  |  |   57|  28.8k|#define ISC_HASHMAP_MAGIC	   ISC_MAGIC('H', 'M', 'a', 'p')
  |  |  ------------------
  |  |  |  |   31|  28.8k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  218|  28.8k|	};
  219|  28.8k|	isc_mem_attach(mctx, &hashmap->mctx);
  220|       |
  221|  28.8k|	hashmap_create_table(hashmap, 0, bits);
  222|       |
  223|  28.8k|	hashmap->magic = ISC_HASHMAP_MAGIC;
  ------------------
  |  |   57|  28.8k|#define ISC_HASHMAP_MAGIC	   ISC_MAGIC('H', 'M', 'a', 'p')
  |  |  ------------------
  |  |  |  |   31|  28.8k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  224|       |
  225|  28.8k|	*hashmapp = hashmap;
  226|  28.8k|}
isc_hashmap_destroy:
  229|  28.8k|isc_hashmap_destroy(isc_hashmap_t **hashmapp) {
  230|  28.8k|	isc_hashmap_t *hashmap;
  231|       |
  232|  28.8k|	REQUIRE(hashmapp != NULL && *hashmapp != NULL);
  ------------------
  |  |  198|  28.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  57.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  28.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  233|  28.8k|	REQUIRE(ISC_HASHMAP_VALID(*hashmapp));
  ------------------
  |  |  198|  28.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  57.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 28.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  28.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  234|       |
  235|  28.8k|	hashmap = *hashmapp;
  236|  28.8k|	*hashmapp = NULL;
  237|       |
  238|  28.8k|	hashmap->magic = 0;
  239|       |
  240|  86.5k|	for (size_t i = 0; i < HASHMAP_NUM_TABLES; i++) {
  ------------------
  |  |   61|  86.5k|#define HASHMAP_NUM_TABLES 2
  ------------------
  |  Branch (240:21): [True: 57.7k, False: 28.8k]
  ------------------
  241|  57.7k|		if (hashmap->tables[i].table != NULL) {
  ------------------
  |  Branch (241:7): [True: 33.1k, False: 24.5k]
  ------------------
  242|  33.1k|			hashmap_free_table(hashmap, i, true);
  243|  33.1k|		}
  244|  57.7k|	}
  245|  28.8k|	INSIST(hashmap->count == 0);
  ------------------
  |  |  202|  28.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  28.8k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 28.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  28.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  246|       |
  247|       |	isc_mem_putanddetach(&hashmap->mctx, hashmap, sizeof(*hashmap));
  ------------------
  |  |  159|  28.8k|	do {                                                               \
  |  |  160|  28.8k|		isc__mem_putanddetach((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  161|  28.8k|		(p) = NULL;                                                \
  |  |  162|  28.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (162:11): [Folded, False: 28.8k]
  |  |  ------------------
  ------------------
  248|  28.8k|}
isc_hashmap_add:
  568|   473k|		void **foundp) {
  569|   473k|	REQUIRE(ISC_HASHMAP_VALID(hashmap));
  ------------------
  |  |  198|   473k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   947k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 473k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 473k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   473k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  570|   473k|	REQUIRE(key != NULL);
  ------------------
  |  |  198|   473k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   473k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   473k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  571|       |
  572|   473k|	if (rehashing_in_progress(hashmap)) {
  ------------------
  |  Branch (572:6): [True: 45.3k, False: 428k]
  ------------------
  573|  45.3k|		hashmap_rehash_one(hashmap);
  574|   428k|	} else if (over_threshold(hashmap)) {
  ------------------
  |  Branch (574:13): [True: 14.1k, False: 414k]
  ------------------
  575|  14.1k|		hashmap_rehash_start_grow(hashmap);
  576|  14.1k|		hashmap_rehash_one(hashmap);
  577|  14.1k|	}
  578|       |
  579|   473k|	if (rehashing_in_progress(hashmap)) {
  ------------------
  |  Branch (579:6): [True: 49.6k, False: 424k]
  ------------------
  580|  49.6k|		uint8_t fidx = hashmap_nexttable(hashmap->hindex);
  581|  49.6k|		uint32_t psl;
  582|       |
  583|       |		/* Look for the value in the old table */
  584|  49.6k|		hashmap_node_t *found = hashmap_find(hashmap, hashval, match,
  585|  49.6k|						     key, &psl, &fidx);
  586|  49.6k|		if (found != NULL) {
  ------------------
  |  Branch (586:7): [True: 11.0k, False: 38.6k]
  ------------------
  587|  11.0k|			INSIST(found->key != NULL);
  ------------------
  |  |  202|  11.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  11.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 11.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  11.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  588|  11.0k|			SET_IF_NOT_NULL(foundp, found->value);
  ------------------
  |  |  104|  11.0k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 11.0k, False: 0]
  |  |  ------------------
  |  |  105|  11.0k|		*(obj) = (val);   \
  |  |  106|  11.0k|	}
  ------------------
  589|  11.0k|			return ISC_R_EXISTS;
  590|  11.0k|		}
  591|  49.6k|	}
  592|       |
  593|   462k|	return hashmap_add(hashmap, hashval, match, key, value, foundp,
  594|   462k|			   hashmap->hindex);
  595|   473k|}
hashmap.c:hashmap_create_table:
  168|  42.9k|		     const uint8_t bits) {
  169|  42.9k|	REQUIRE(hashmap->tables[idx].hashbits == HASHMAP_NO_BITS);
  ------------------
  |  |  198|  42.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  42.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 42.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  42.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  170|  42.9k|	REQUIRE(hashmap->tables[idx].table == NULL);
  ------------------
  |  |  198|  42.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  42.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 42.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  42.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  171|  42.9k|	REQUIRE(bits >= HASHMAP_MIN_BITS);
  ------------------
  |  |  198|  42.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  42.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 42.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  42.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  172|  42.9k|	REQUIRE(bits <= HASHMAP_MAX_BITS);
  ------------------
  |  |  198|  42.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  42.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 42.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  42.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  173|       |
  174|  42.9k|	hashmap->tables[idx] = (hashmap_table_t){
  175|  42.9k|		.hashbits = bits,
  176|  42.9k|		.hashmask = HASHSIZE(bits) - 1,
  ------------------
  |  |   63|  42.9k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  177|  42.9k|		.size = HASHSIZE(bits),
  ------------------
  |  |   63|  42.9k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  178|  42.9k|	};
  179|       |
  180|  42.9k|	hashmap->tables[idx].table =
  181|       |		isc_mem_cget(hashmap->mctx, hashmap->tables[idx].size,
  ------------------
  |  |  130|  42.9k|	isc__mem_get((c), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|  42.9k|	({                                                \
  |  |  |  |   33|  42.9k|		typeof(a) _c;                             \
  |  |  |  |   34|  42.9k|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|  42.9k|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|  42.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  42.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 42.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  42.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|  42.9k|		_c;                                       \
  |  |  |  |   37|  42.9k|	})
  |  |  ------------------
  |  |  131|  42.9k|		     ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|  42.9k|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
  182|  42.9k|			     sizeof(hashmap->tables[idx].table[0]));
  183|  42.9k|}
hashmap.c:hashmap_free_table:
  186|  42.9k|hashmap_free_table(isc_hashmap_t *hashmap, const uint8_t idx, bool cleanup) {
  187|  42.9k|	size_t size;
  188|       |
  189|  42.9k|	if (cleanup) {
  ------------------
  |  Branch (189:6): [True: 33.1k, False: 9.76k]
  ------------------
  190|   295k|		for (size_t i = 0; i < hashmap->tables[idx].size; i++) {
  ------------------
  |  Branch (190:22): [True: 262k, False: 33.1k]
  ------------------
  191|   262k|			hashmap_node_t *node = &hashmap->tables[idx].table[i];
  192|   262k|			if (node->key != NULL) {
  ------------------
  |  Branch (192:8): [True: 101k, False: 161k]
  ------------------
  193|   101k|				*node = (hashmap_node_t){ 0 };
  194|   101k|				hashmap->count--;
  195|   101k|			}
  196|   262k|		}
  197|  33.1k|	}
  198|       |
  199|  42.9k|	size = hashmap->tables[idx].size *
  200|  42.9k|	       sizeof(hashmap->tables[idx].table[0]);
  201|  42.9k|	isc_mem_put(hashmap->mctx, hashmap->tables[idx].table, size);
  ------------------
  |  |  148|  42.9k|	do {                                                      \
  |  |  149|  42.9k|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|  42.9k|		(p) = NULL;                                       \
  |  |  151|  42.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 42.9k]
  |  |  ------------------
  ------------------
  202|       |
  203|  42.9k|	hashmap->tables[idx] = (hashmap_table_t){
  204|  42.9k|		.hashbits = HASHMAP_NO_BITS,
  ------------------
  |  |   65|  42.9k|#define HASHMAP_NO_BITS	 0U
  ------------------
  205|  42.9k|	};
  206|  42.9k|}
hashmap.c:hashmap_find:
  253|  49.6k|	     uint8_t *idxp) {
  254|  49.6k|	uint32_t hash;
  255|  49.6k|	uint32_t psl;
  256|  49.6k|	uint8_t idx = *idxp;
  257|  49.6k|	uint32_t pos;
  258|       |
  259|  49.6k|nexttable:
  260|  49.6k|	psl = 0;
  261|  49.6k|	hash = isc_hash_bits32(hashval, hashmap->tables[idx].hashbits);
  262|       |
  263|  77.3k|	while (true) {
  ------------------
  |  Branch (263:9): [True: 77.3k, Folded]
  ------------------
  264|  77.3k|		hashmap_node_t *node = NULL;
  265|       |
  266|  77.3k|		pos = (hash + psl) & hashmap->tables[idx].hashmask;
  267|       |
  268|  77.3k|		node = &hashmap->tables[idx].table[pos];
  269|       |
  270|  77.3k|		if (node->key == NULL || psl > node->psl) {
  ------------------
  |  Branch (270:7): [True: 33.6k, False: 43.7k]
  |  Branch (270:28): [True: 5.01k, False: 38.7k]
  ------------------
  271|  38.6k|			break;
  272|  38.6k|		}
  273|       |
  274|  38.7k|		if (node->hashval == hashval) {
  ------------------
  |  Branch (274:7): [True: 11.0k, False: 27.6k]
  ------------------
  275|  11.0k|			if (match(node->value, key)) {
  ------------------
  |  Branch (275:8): [True: 11.0k, False: 23]
  ------------------
  276|  11.0k|				*pslp = psl;
  277|  11.0k|				*idxp = idx;
  278|  11.0k|				return node;
  279|  11.0k|			}
  280|  11.0k|		}
  281|       |
  282|  27.6k|		psl++;
  283|  27.6k|	}
  284|  38.6k|	if (try_nexttable(hashmap, idx)) {
  ------------------
  |  Branch (284:6): [True: 0, False: 38.6k]
  ------------------
  285|      0|		idx = hashmap_nexttable(idx);
  286|      0|		goto nexttable;
  287|      0|	}
  288|       |
  289|  38.6k|	return NULL;
  290|  38.6k|}
hashmap.c:try_nexttable:
  129|  38.6k|try_nexttable(const isc_hashmap_t *hashmap, uint8_t idx) {
  130|  38.6k|	return idx == hashmap->hindex && rehashing_in_progress(hashmap);
  ------------------
  |  Branch (130:9): [True: 0, False: 38.6k]
  |  Branch (130:35): [True: 0, False: 0]
  ------------------
  131|  38.6k|}
hashmap.c:rehashing_in_progress:
  123|   962k|rehashing_in_progress(const isc_hashmap_t *hashmap) {
  124|   962k|	return hashmap->tables[hashmap_nexttable(hashmap->hindex)].table !=
  125|       |	       NULL;
  126|   962k|}
hashmap.c:hashmap_rehash_one:
  349|  59.4k|hashmap_rehash_one(isc_hashmap_t *hashmap) {
  350|  59.4k|	uint8_t oldidx = hashmap_nexttable(hashmap->hindex);
  351|  59.4k|	uint32_t oldsize = hashmap->tables[oldidx].size;
  352|  59.4k|	hashmap_node_t *oldtable = hashmap->tables[oldidx].table;
  353|  59.4k|	hashmap_node_t node;
  354|       |
  355|       |	/* Don't rehash when iterating */
  356|  59.4k|	INSIST(atomic_load_acquire(&hashmap->iterators) == 0);
  ------------------
  |  |  202|  59.4k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  59.4k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 59.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  59.4k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  357|       |
  358|       |	/* Find first non-empty node */
  359|   104k|	while (hashmap->hiter < oldsize && oldtable[hashmap->hiter].key == NULL)
  ------------------
  |  Branch (359:9): [True: 94.6k, False: 9.76k]
  |  Branch (359:37): [True: 44.9k, False: 49.6k]
  ------------------
  360|  44.9k|	{
  361|  44.9k|		hashmap->hiter++;
  362|  44.9k|	}
  363|       |
  364|       |	/* Rehashing complete */
  365|  59.4k|	if (hashmap->hiter == oldsize) {
  ------------------
  |  Branch (365:6): [True: 9.76k, False: 49.6k]
  ------------------
  366|  9.76k|		hashmap_free_table(hashmap, hashmap_nexttable(hashmap->hindex),
  367|  9.76k|				   false);
  368|  9.76k|		hashmap->hiter = 0;
  369|  9.76k|		return;
  370|  9.76k|	}
  371|       |
  372|       |	/* Move the first non-empty node from old table to new table */
  373|  49.6k|	node = oldtable[hashmap->hiter];
  374|       |
  375|  49.6k|	(void)hashmap_delete_node(hashmap, &oldtable[hashmap->hiter],
  376|  49.6k|				  node.hashval, node.psl, oldidx, UINT32_MAX);
  377|       |
  378|  49.6k|	isc_result_t result = hashmap_add(hashmap, node.hashval, NULL, node.key,
  379|  49.6k|					  node.value, NULL, hashmap->hindex);
  380|  49.6k|	INSIST(result == ISC_R_SUCCESS);
  ------------------
  |  |  202|  49.6k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  49.6k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 49.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  49.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  381|       |
  382|       |	/*
  383|       |	 * we don't increase the hiter here because the table has been reordered
  384|       |	 * when we deleted the old node
  385|       |	 */
  386|  49.6k|}
hashmap.c:hashmap_delete_node:
  313|  49.6k|		    size_t size) {
  314|  49.6k|	uint32_t pos;
  315|  49.6k|	uint32_t hash;
  316|  49.6k|	bool last = false;
  317|       |
  318|  49.6k|	hashmap->count--;
  319|       |
  320|  49.6k|	hash = isc_hash_bits32(hashval, hashmap->tables[idx].hashbits);
  321|  49.6k|	pos = (hash + psl) & hashmap->tables[idx].hashmask;
  322|       |
  323|  91.9k|	while (true) {
  ------------------
  |  Branch (323:9): [True: 91.9k, Folded]
  ------------------
  324|  91.9k|		hashmap_node_t *node = NULL;
  325|       |
  326|  91.9k|		pos = (pos + 1) & hashmap->tables[idx].hashmask;
  327|  91.9k|		INSIST(pos < hashmap->tables[idx].size);
  ------------------
  |  |  202|  91.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  91.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 91.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  91.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  328|       |
  329|  91.9k|		node = &hashmap->tables[idx].table[pos];
  330|       |
  331|  91.9k|		if (node->key == NULL || node->psl == 0) {
  ------------------
  |  Branch (331:7): [True: 22.7k, False: 69.1k]
  |  Branch (331:28): [True: 26.9k, False: 42.2k]
  ------------------
  332|  49.6k|			break;
  333|  49.6k|		}
  334|       |
  335|  42.2k|		if ((pos % size) == 0) {
  ------------------
  |  Branch (335:7): [True: 0, False: 42.2k]
  ------------------
  336|      0|			last = true;
  337|      0|		}
  338|       |
  339|  42.2k|		node->psl--;
  340|  42.2k|		*entry = *node;
  341|  42.2k|		entry = &hashmap->tables[idx].table[pos];
  342|  42.2k|	}
  343|       |
  344|  49.6k|	*entry = (hashmap_node_t){ 0 };
  345|  49.6k|	return last;
  346|  49.6k|}
hashmap.c:over_threshold:
  482|   428k|over_threshold(isc_hashmap_t *hashmap) {
  483|   428k|	uint32_t bits = hashmap->tables[hashmap->hindex].hashbits;
  484|   428k|	if (bits == HASHMAP_MAX_BITS) {
  ------------------
  |  |   67|   428k|#define HASHMAP_MAX_BITS 32U
  ------------------
  |  Branch (484:6): [True: 0, False: 428k]
  ------------------
  485|      0|		return false;
  486|      0|	}
  487|   428k|	size_t threshold = APPROX_90_PERCENT(HASHSIZE(bits));
  ------------------
  |  |   45|   428k|#define APPROX_90_PERCENT(x) (((x) * 921) >> 10)
  ------------------
  488|   428k|	return hashmap->count > threshold;
  489|   428k|}
hashmap.c:hashmap_rehash_start_grow:
  416|  14.1k|hashmap_rehash_start_grow(isc_hashmap_t *hashmap) {
  417|  14.1k|	uint32_t newbits;
  418|  14.1k|	uint8_t oldindex = hashmap->hindex;
  419|  14.1k|	uint32_t oldbits = hashmap->tables[oldindex].hashbits;
  420|  14.1k|	uint8_t newindex = hashmap_nexttable(oldindex);
  421|       |
  422|  14.1k|	REQUIRE(!rehashing_in_progress(hashmap));
  ------------------
  |  |  198|  14.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  14.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 14.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  14.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  423|       |
  424|  14.1k|	newbits = grow_bits(hashmap);
  425|       |
  426|  14.1k|	if (newbits > oldbits) {
  ------------------
  |  Branch (426:6): [True: 14.1k, False: 0]
  ------------------
  427|  14.1k|		hashmap_create_table(hashmap, newindex, newbits);
  428|  14.1k|		hashmap->hindex = newindex;
  429|  14.1k|	}
  430|  14.1k|}
hashmap.c:grow_bits:
  389|  14.1k|grow_bits(isc_hashmap_t *hashmap) {
  390|  14.1k|	uint32_t newbits = hashmap->tables[hashmap->hindex].hashbits + 1;
  391|  14.1k|	size_t newsize = HASHSIZE(newbits);
  ------------------
  |  |   63|  14.1k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  392|       |
  393|  28.2k|	while (hashmap->count > APPROX_40_PERCENT(newsize)) {
  ------------------
  |  |   47|  28.2k|#define APPROX_40_PERCENT(x) (((x) * 409) >> 10)
  ------------------
  |  Branch (393:9): [True: 14.1k, False: 14.1k]
  ------------------
  394|  14.1k|		newbits += 1;
  395|  14.1k|		newsize = HASHSIZE(newbits);
  ------------------
  |  |   63|  14.1k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  396|  14.1k|	}
  397|  14.1k|	if (newbits > HASHMAP_MAX_BITS) {
  ------------------
  |  |   67|  14.1k|#define HASHMAP_MAX_BITS 32U
  ------------------
  |  Branch (397:6): [True: 0, False: 14.1k]
  ------------------
  398|      0|		newbits = HASHMAP_MAX_BITS;
  ------------------
  |  |   67|      0|#define HASHMAP_MAX_BITS 32U
  ------------------
  399|      0|	}
  400|       |
  401|  14.1k|	return newbits;
  402|  14.1k|}
hashmap.c:hashmap_nexttable:
  118|  1.09M|hashmap_nexttable(uint8_t idx) {
  119|  1.09M|	return (idx == 0) ? 1 : 0;
  ------------------
  |  Branch (119:9): [True: 609k, False: 486k]
  ------------------
  120|  1.09M|}
hashmap.c:hashmap_add:
  504|   512k|	    void **foundp, uint8_t idx) {
  505|   512k|	uint32_t hash;
  506|   512k|	uint32_t psl = 0;
  507|   512k|	hashmap_node_t node;
  508|   512k|	hashmap_node_t *current = NULL;
  509|   512k|	uint32_t pos;
  510|       |
  511|   512k|	INSIST(atomic_load_acquire(&hashmap->iterators) == 0);
  ------------------
  |  |  202|   512k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   512k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 512k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   512k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  512|       |
  513|   512k|	hash = isc_hash_bits32(hashval, hashmap->tables[idx].hashbits);
  514|       |
  515|       |	/* Initialize the node to be store to 'node' */
  516|   512k|	hashmap_node_init(&node, hashval, key, value);
  517|       |
  518|   512k|	psl = 0;
  519|   690k|	while (true) {
  ------------------
  |  Branch (519:9): [True: 690k, Folded]
  ------------------
  520|   690k|		pos = (hash + psl) & hashmap->tables[idx].hashmask;
  521|       |
  522|   690k|		current = &hashmap->tables[idx].table[pos];
  523|       |
  524|       |		/* Found an empty node */
  525|   690k|		if (current->key == NULL) {
  ------------------
  |  Branch (525:7): [True: 151k, False: 539k]
  ------------------
  526|   151k|			break;
  527|   151k|		}
  528|       |
  529|   539k|		if (current->hashval == hashval) {
  ------------------
  |  Branch (529:7): [True: 361k, False: 177k]
  ------------------
  530|   361k|			if (match != NULL && match(current->value, key)) {
  ------------------
  |  Branch (530:8): [True: 361k, False: 23]
  |  Branch (530:25): [True: 361k, False: 77]
  ------------------
  531|   361k|				SET_IF_NOT_NULL(foundp, current->value);
  ------------------
  |  |  104|   361k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 361k, False: 0]
  |  |  ------------------
  |  |  105|   361k|		*(obj) = (val);   \
  |  |  106|   361k|	}
  ------------------
  532|   361k|				return ISC_R_EXISTS;
  533|   361k|			}
  534|   361k|		}
  535|       |
  536|       |		/* Found rich node */
  537|   177k|		if (node.psl > current->psl) {
  ------------------
  |  Branch (537:7): [True: 32.3k, False: 145k]
  ------------------
  538|       |			/* Swap the poor with the rich node */
  539|  32.3k|			ISC_SWAP(*current, node);
  ------------------
  |  |  305|  32.3k|	{                                 \
  |  |  306|  32.3k|		typeof(a) __tmp_swap = a; \
  |  |  307|  32.3k|		a = b;                    \
  |  |  308|  32.3k|		b = __tmp_swap;           \
  |  |  309|  32.3k|	}
  ------------------
  540|  32.3k|		}
  541|       |
  542|   177k|		node.psl++;
  543|   177k|		psl++;
  544|   177k|	}
  545|       |
  546|       |	/*
  547|       |	 * Possible optimalization - start growing when the poor node is too far
  548|       |	 */
  549|       |#if ISC_HASHMAP_GROW_FAST
  550|       |	if (psl > hashmap->hashbits[idx]) {
  551|       |		if (!rehashing_in_progress(hashmap)) {
  552|       |			hashmap_rehash_start_grow(hashmap);
  553|       |		}
  554|       |	}
  555|       |#endif
  556|       |
  557|   151k|	hashmap->count++;
  558|       |
  559|       |	/* We found an empty place, store entry into current node */
  560|   151k|	*current = node;
  561|       |
  562|   151k|	return ISC_R_SUCCESS;
  563|   512k|}
hashmap.c:hashmap_node_init:
  135|   512k|		  const uint8_t *key, void *value) {
  136|   512k|	*node = (hashmap_node_t){
  137|   512k|		.value = value,
  138|   512k|		.hashval = hashval,
  139|   512k|		.key = key,
  140|   512k|		.psl = 0,
  141|   512k|	};
  142|   512k|}

isc_hex_totext:
   54|  73.3k|	       isc_buffer_t *target) {
   55|  73.3k|	char buf[3];
   56|  73.3k|	unsigned int loops = 0;
   57|       |
   58|  73.3k|	if (wordlength < 2) {
  ------------------
  |  Branch (58:6): [True: 8.27k, False: 65.1k]
  ------------------
   59|  8.27k|		wordlength = 2;
   60|  8.27k|	}
   61|       |
   62|  73.3k|	memset(buf, 0, sizeof(buf));
   63|  2.13M|	while (source->length > 0) {
  ------------------
  |  Branch (63:9): [True: 2.06M, False: 73.3k]
  ------------------
   64|  2.06M|		buf[0] = hex[(source->base[0] >> 4) & 0xf];
   65|  2.06M|		buf[1] = hex[(source->base[0]) & 0xf];
   66|  2.06M|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.06M|	{                                  \
  |  |  277|  2.06M|		isc_result_t _r = (x);     \
  |  |  278|  2.06M|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.06M]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.06M|	}
  ------------------
   67|  2.06M|		isc_region_consume(source, 1);
  ------------------
  |  |   50|  2.06M|	do {                              \
  |  |   51|  2.06M|		isc_region_t *_r = (r);   \
  |  |   52|  2.06M|		unsigned int  _l = (l);   \
  |  |   53|  2.06M|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.06M|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.06M|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.06M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.06M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.06M|		_r->base += _l;           \
  |  |   55|  2.06M|		_r->length -= _l;         \
  |  |   56|  2.06M|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.06M]
  |  |  ------------------
  ------------------
   68|       |
   69|  2.06M|		loops++;
   70|  2.06M|		if (source->length != 0 && (int)((loops + 1) * 2) >= wordlength)
  ------------------
  |  Branch (70:7): [True: 1.98M, False: 73.3k]
  |  Branch (70:30): [True: 104k, False: 1.88M]
  ------------------
   71|   104k|		{
   72|   104k|			loops = 0;
   73|   104k|			RETERR(str_totext(wordbreak, target));
  ------------------
  |  |  276|   104k|	{                                  \
  |  |  277|   104k|		isc_result_t _r = (x);     \
  |  |  278|   104k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 104k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   104k|	}
  ------------------
   74|   104k|		}
   75|  2.06M|	}
   76|  73.3k|	return ISC_R_SUCCESS;
   77|  73.3k|}
hex.c:str_totext:
  185|  2.16M|str_totext(const char *source, isc_buffer_t *target) {
  186|  2.16M|	unsigned int l;
  187|  2.16M|	isc_region_t region;
  188|       |
  189|  2.16M|	isc_buffer_availableregion(target, &region);
  190|  2.16M|	l = strlen(source);
  191|       |
  192|  2.16M|	if (l > region.length) {
  ------------------
  |  Branch (192:6): [True: 0, False: 2.16M]
  ------------------
  193|      0|		return ISC_R_NOSPACE;
  194|      0|	}
  195|       |
  196|  2.16M|	memmove(region.base, source, l);
  197|  2.16M|	isc_buffer_add(target, l);
  198|  2.16M|	return ISC_R_SUCCESS;
  199|  2.16M|}

compress.c:isc__ascii_tolower1:
   39|  13.1M|isc__ascii_tolower1(uint8_t c) {
   40|  13.1M|	return c + ('a' - 'A') * ('A' <= c && c <= 'Z');
  ------------------
  |  Branch (40:28): [True: 599k, False: 12.5M]
  |  Branch (40:40): [True: 33.0k, False: 566k]
  ------------------
   41|  13.1M|}
compress.c:isc_ascii_lowerequal:
  135|   810k|		     unsigned int len) {
  136|   810k|	uint64_t a8 = 0, b8 = 0;
  137|   810k|	if (len >= 8) {
  ------------------
  |  Branch (137:6): [True: 255k, False: 554k]
  ------------------
  138|   255k|		const uint8_t *a_tail = a + len - 8;
  139|   255k|		const uint8_t *b_tail = b + len - 8;
  140|  1.41M|		while (len >= 8) {
  ------------------
  |  Branch (140:10): [True: 1.17M, False: 237k]
  ------------------
  141|  1.17M|			a8 = isc_ascii_tolower8(isc__ascii_load8(a));
  142|  1.17M|			b8 = isc_ascii_tolower8(isc__ascii_load8(b));
  143|  1.17M|			if (a8 != b8) {
  ------------------
  |  Branch (143:8): [True: 18.5k, False: 1.15M]
  ------------------
  144|  18.5k|				return false;
  145|  18.5k|			}
  146|  1.15M|			len -= 8;
  147|  1.15M|			a += 8;
  148|  1.15M|			b += 8;
  149|  1.15M|		}
  150|       |
  151|   237k|		a8 = isc_ascii_tolower8(isc__ascii_load8(a_tail));
  152|   237k|		b8 = isc_ascii_tolower8(isc__ascii_load8(b_tail));
  153|   237k|		return a8 == b8;
  154|   255k|	}
  155|       |
  156|  2.96M|	while (len-- > 0) {
  ------------------
  |  Branch (156:9): [True: 2.41M, False: 550k]
  ------------------
  157|  2.41M|		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|  2.41M|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
              		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|  2.41M|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  |  Branch (157:7): [True: 4.29k, False: 2.40M]
  ------------------
  158|  4.29k|			return false;
  159|  4.29k|		}
  160|  2.41M|	}
  161|   550k|	return true;
  162|   554k|}
compress.c:isc_ascii_tolower8:
   71|  2.82M|isc_ascii_tolower8(uint64_t octets) {
   72|       |	/*
   73|       |	 * Multiply a single-byte constant by `all_bytes` to replicate
   74|       |	 * it to all eight bytes in a word.
   75|       |	 */
   76|  2.82M|	uint64_t all_bytes = 0x0101010101010101;
   77|       |	/*
   78|       |	 * Clear the top bit of each byte to make space for a per-byte flag.
   79|       |	 */
   80|  2.82M|	uint64_t heptets = octets & (0x7F * all_bytes);
   81|       |	/*
   82|       |	 * We will need to avoid going wrong if our flag bits were originally
   83|       |	 * set, and clear calculation leftovers in our non-flag bits
   84|       |	 */
   85|  2.82M|	uint64_t is_ascii = ~octets & (0x80 * all_bytes);
   86|       |	/*
   87|       |	 * To compare a heptet to `N`, we can add `0x7F - N` so that carry
   88|       |	 * propagation will set the flag when our heptet is greater than `N`
   89|       |	 */
   90|  2.82M|	uint64_t is_gt_Z = heptets + (0x7F - 'Z') * all_bytes;
   91|       |	/*
   92|       |	 * Add one for greater-than-or-equal comparison
   93|       |	 */
   94|  2.82M|	uint64_t is_ge_A = heptets + (0x80 - 'A') * all_bytes;
   95|       |	/*
   96|       |	 * Now we have what we need to identify the ascii uppercase bytes
   97|       |	 */
   98|  2.82M|	uint64_t is_upper = (is_ge_A ^ is_gt_Z) & is_ascii;
   99|       |	/*
  100|       |	 * Move the is_upper flag bits to bit 0x20 (which is 'a' - 'A')
  101|       |	 * and use them to adjust each byte as required
  102|       |	 */
  103|  2.82M|	return octets | (is_upper >> 2);
  104|  2.82M|}
compress.c:isc__ascii_load8:
  124|  2.82M|isc__ascii_load8(const uint8_t *ptr) {
  125|  2.82M|	uint64_t bytes = 0;
  126|  2.82M|	memmove(&bytes, ptr, sizeof(bytes));
  127|  2.82M|	return bytes;
  128|  2.82M|}
name.c:isc_ascii_lowercmp:
  171|  10.0k|isc_ascii_lowercmp(const uint8_t *a, const uint8_t *b, unsigned int len) {
  172|  10.0k|	uint64_t a8 = 0, b8 = 0;
  173|  80.1k|	while (len >= 8) {
  ------------------
  |  Branch (173:9): [True: 71.1k, False: 8.91k]
  ------------------
  174|  71.1k|		a8 = isc_ascii_tolower8(htobe64(isc__ascii_load8(a)));
  175|  71.1k|		b8 = isc_ascii_tolower8(htobe64(isc__ascii_load8(b)));
  176|  71.1k|		if (a8 != b8) {
  ------------------
  |  Branch (176:7): [True: 1.15k, False: 70.0k]
  ------------------
  177|  1.15k|			goto ret;
  178|  1.15k|		}
  179|  70.0k|		len -= 8;
  180|  70.0k|		a += 8;
  181|  70.0k|		b += 8;
  182|  70.0k|	}
  183|  25.1k|	while (len-- > 0) {
  ------------------
  |  Branch (183:9): [True: 17.5k, False: 7.59k]
  ------------------
  184|  17.5k|		a8 = isc_ascii_tolower(*a++);
  ------------------
  |  |   31|  17.5k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  185|  17.5k|		b8 = isc_ascii_tolower(*b++);
  ------------------
  |  |   31|  17.5k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  186|  17.5k|		if (a8 != b8) {
  ------------------
  |  Branch (186:7): [True: 1.31k, False: 16.2k]
  ------------------
  187|  1.31k|			goto ret;
  188|  1.31k|		}
  189|  17.5k|	}
  190|  10.0k|ret:
  191|  10.0k|	if (a8 < b8) {
  ------------------
  |  Branch (191:6): [True: 1.13k, False: 8.93k]
  ------------------
  192|  1.13k|		return -1;
  193|  1.13k|	}
  194|  8.93k|	if (a8 > b8) {
  ------------------
  |  Branch (194:6): [True: 1.33k, False: 7.59k]
  ------------------
  195|  1.33k|		return +1;
  196|  1.33k|	}
  197|  7.59k|	return 0;
  198|  8.93k|}
name.c:isc_ascii_tolower8:
   71|   430k|isc_ascii_tolower8(uint64_t octets) {
   72|       |	/*
   73|       |	 * Multiply a single-byte constant by `all_bytes` to replicate
   74|       |	 * it to all eight bytes in a word.
   75|       |	 */
   76|   430k|	uint64_t all_bytes = 0x0101010101010101;
   77|       |	/*
   78|       |	 * Clear the top bit of each byte to make space for a per-byte flag.
   79|       |	 */
   80|   430k|	uint64_t heptets = octets & (0x7F * all_bytes);
   81|       |	/*
   82|       |	 * We will need to avoid going wrong if our flag bits were originally
   83|       |	 * set, and clear calculation leftovers in our non-flag bits
   84|       |	 */
   85|   430k|	uint64_t is_ascii = ~octets & (0x80 * all_bytes);
   86|       |	/*
   87|       |	 * To compare a heptet to `N`, we can add `0x7F - N` so that carry
   88|       |	 * propagation will set the flag when our heptet is greater than `N`
   89|       |	 */
   90|   430k|	uint64_t is_gt_Z = heptets + (0x7F - 'Z') * all_bytes;
   91|       |	/*
   92|       |	 * Add one for greater-than-or-equal comparison
   93|       |	 */
   94|   430k|	uint64_t is_ge_A = heptets + (0x80 - 'A') * all_bytes;
   95|       |	/*
   96|       |	 * Now we have what we need to identify the ascii uppercase bytes
   97|       |	 */
   98|   430k|	uint64_t is_upper = (is_ge_A ^ is_gt_Z) & is_ascii;
   99|       |	/*
  100|       |	 * Move the is_upper flag bits to bit 0x20 (which is 'a' - 'A')
  101|       |	 * and use them to adjust each byte as required
  102|       |	 */
  103|   430k|	return octets | (is_upper >> 2);
  104|   430k|}
name.c:isc__ascii_load8:
  124|   430k|isc__ascii_load8(const uint8_t *ptr) {
  125|   430k|	uint64_t bytes = 0;
  126|   430k|	memmove(&bytes, ptr, sizeof(bytes));
  127|   430k|	return bytes;
  128|   430k|}
name.c:isc_ascii_lowerequal:
  135|   221k|		     unsigned int len) {
  136|   221k|	uint64_t a8 = 0, b8 = 0;
  137|   221k|	if (len >= 8) {
  ------------------
  |  Branch (137:6): [True: 17.2k, False: 204k]
  ------------------
  138|  17.2k|		const uint8_t *a_tail = a + len - 8;
  139|  17.2k|		const uint8_t *b_tail = b + len - 8;
  140|   144k|		while (len >= 8) {
  ------------------
  |  Branch (140:10): [True: 126k, False: 17.2k]
  ------------------
  141|   126k|			a8 = isc_ascii_tolower8(isc__ascii_load8(a));
  142|   126k|			b8 = isc_ascii_tolower8(isc__ascii_load8(b));
  143|   126k|			if (a8 != b8) {
  ------------------
  |  Branch (143:8): [True: 0, False: 126k]
  ------------------
  144|      0|				return false;
  145|      0|			}
  146|   126k|			len -= 8;
  147|   126k|			a += 8;
  148|   126k|			b += 8;
  149|   126k|		}
  150|       |
  151|  17.2k|		a8 = isc_ascii_tolower8(isc__ascii_load8(a_tail));
  152|  17.2k|		b8 = isc_ascii_tolower8(isc__ascii_load8(b_tail));
  153|  17.2k|		return a8 == b8;
  154|  17.2k|	}
  155|       |
  156|   467k|	while (len-- > 0) {
  ------------------
  |  Branch (156:9): [True: 263k, False: 204k]
  ------------------
  157|   263k|		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|   263k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
              		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|   263k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  |  Branch (157:7): [True: 0, False: 263k]
  ------------------
  158|      0|			return false;
  159|      0|		}
  160|   263k|	}
  161|   204k|	return true;
  162|   204k|}
hash.c:isc__ascii_tolower1:
   39|   287k|isc__ascii_tolower1(uint8_t c) {
   40|   287k|	return c + ('a' - 'A') * ('A' <= c && c <= 'Z');
  ------------------
  |  Branch (40:28): [True: 9.17k, False: 278k]
  |  Branch (40:40): [True: 282, False: 8.89k]
  ------------------
   41|   287k|}
hash.c:isc_ascii_tolower4:
  110|   500k|isc_ascii_tolower4(uint32_t octets) {
  111|   500k|	uint32_t all_bytes = 0x01010101;
  112|   500k|	uint32_t heptets = octets & (0x7F * all_bytes);
  113|   500k|	uint32_t is_ascii = ~octets & (0x80 * all_bytes);
  114|   500k|	uint32_t is_gt_Z = heptets + (0x7F - 'Z') * all_bytes;
  115|   500k|	uint32_t is_ge_A = heptets + (0x80 - 'A') * all_bytes;
  116|   500k|	uint32_t is_upper = (is_ge_A ^ is_gt_Z) & is_ascii;
  117|   500k|	return octets | (is_upper >> 2);
  118|   500k|}

hash.c:isc_rotate_left32:
   82|  15.7M|isc_rotate_left32(const uint32_t x, uint32_t n) {
   83|  15.7M|	return (x << n) | (x >> (32 - n));
   84|  15.7M|}

dns_message_parse.c:isc_buffer_init:
  524|  39.6k|		const unsigned int length) {
  525|  39.6k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  39.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  39.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 39.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  39.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  39.6k|	*b = (isc_buffer_t){
  528|  39.6k|		.base = base,
  529|  39.6k|		.length = length,
  530|  39.6k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  39.6k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  39.6k|	{                                         \
  |  |  |  |   27|  39.6k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  39.6k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  39.6k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  39.6k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  39.6k|	}
  |  |  ------------------
  ------------------
  531|  39.6k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  39.6k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  39.6k|	};
  533|  39.6k|}
dns_message_parse.c:isc_buffer_add:
  652|  13.3k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  13.3k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  13.3k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  26.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 13.3k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 13.3k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.3k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  13.3k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  13.3k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.3k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.3k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  13.3k|	b->used += n;
  657|  13.3k|}
dns_message_parse.c:isc_buffer_setactive:
  771|  13.3k|isc_buffer_setactive(isc_buffer_t *restrict b, const unsigned int n) {
  772|  13.3k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  13.3k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  26.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 13.3k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 13.3k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.3k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  773|  13.3k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|  13.3k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.3k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.3k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|       |
  775|  13.3k|	b->active = b->current + n;
  776|  13.3k|}
masterdump.c:isc_buffer_availableregion:
  634|  2.56M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  2.56M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.56M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.13M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.56M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.56M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.56M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  2.56M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  2.56M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.56M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.56M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.56M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  2.56M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  2.56M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  2.56M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  2.56M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  2.56M|}
masterdump.c:isc_buffer_add:
  652|  2.56M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.56M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.56M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.13M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.56M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.56M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.56M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.56M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.56M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.56M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.56M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.56M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.56M|	b->used += n;
  657|  2.56M|}
message.c:isc_buffer_allocate:
 1077|   100k|		    const unsigned int length) {
 1078|   100k|	REQUIRE(dbufp != NULL && *dbufp == NULL);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   200k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1079|       |
 1080|   100k|	isc_buffer_t *dbuf = isc_mem_get(mctx, sizeof(*dbuf) + length);
  ------------------
  |  |  128|   100k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1081|   100k|	uint8_t	     *bdata = (uint8_t *)dbuf + sizeof(*dbuf);
 1082|       |
 1083|   100k|	isc_buffer_init(dbuf, bdata, length);
 1084|   100k|	dbuf->extra = length;
 1085|   100k|	isc_buffer_setmctx(dbuf, mctx);
 1086|       |
 1087|   100k|	*dbufp = dbuf;
 1088|   100k|}
message.c:isc_buffer_setmctx:
 1091|   100k|isc_buffer_setmctx(isc_buffer_t *restrict b, isc_mem_t *mctx) {
 1092|   100k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   200k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1093|       |
 1094|   100k|	b->mctx = mctx;
 1095|   100k|}
message.c:isc_buffer_free:
 1154|   100k|isc_buffer_free(isc_buffer_t **restrict dbufp) {
 1155|   100k|	REQUIRE(dbufp != NULL && ISC_BUFFER_VALID(*dbufp));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   401k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1156|   100k|	REQUIRE((*dbufp)->mctx != NULL);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1157|       |
 1158|   100k|	isc_buffer_t *dbuf = *dbufp;
 1159|   100k|	isc_mem_t    *mctx = dbuf->mctx;
 1160|   100k|	unsigned int  extra = dbuf->extra;
 1161|       |
 1162|   100k|	*dbufp = NULL; /* destroy external reference */
 1163|       |
 1164|   100k|	isc_buffer_clearmctx(dbuf);
 1165|       |
 1166|   100k|	isc_buffer_invalidate(dbuf);
 1167|       |	isc_mem_put(mctx, dbuf, sizeof(*dbuf) + extra);
  ------------------
  |  |  148|   100k|	do {                                                      \
  |  |  149|   100k|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|   100k|		(p) = NULL;                                       \
  |  |  151|   100k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 100k]
  |  |  ------------------
  ------------------
 1168|   100k|}
message.c:isc_buffer_clearmctx:
 1098|   100k|isc_buffer_clearmctx(isc_buffer_t *restrict b) {
 1099|   100k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   200k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1100|       |
 1101|   100k|	if (b->dynamic) {
  ------------------
  |  Branch (1101:6): [True: 0, False: 100k]
  ------------------
 1102|      0|		isc_mem_put(b->mctx, b->base, b->length);
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1103|      0|		b->dynamic = false;
 1104|      0|	}
 1105|       |
 1106|       |	b->mctx = NULL;
 1107|   100k|}
message.c:isc_buffer_invalidate:
  577|   100k|isc_buffer_invalidate(isc_buffer_t *restrict b) {
  578|   100k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   200k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  579|   100k|	REQUIRE(!ISC_LINK_LINKED(b, link));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  580|   100k|	REQUIRE(b->mctx == NULL);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  581|       |
  582|   100k|	*b = (isc_buffer_t){
  583|   100k|		.magic = 0,
  584|   100k|	};
  585|   100k|}
message.c:isc_buffer_usedregion:
  616|  30.6k|		      isc_region_t *restrict r) {
  617|  30.6k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  30.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  61.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 30.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 30.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  618|  30.6k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  30.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  30.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 30.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  619|       |
  620|  30.6k|	r->base = b->base;
  621|  30.6k|	r->length = b->used;
  622|  30.6k|}
message.c:isc_buffer_remainingregion:
  730|   972k|isc_buffer_remainingregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  731|   972k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   972k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.94M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 972k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 972k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   972k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  732|   972k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   972k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   972k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 972k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   972k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  733|       |
  734|   972k|	r->base = isc_buffer_current(b);
  ------------------
  |  |  145|   972k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  735|   972k|	r->length = isc_buffer_remaininglength(b);
  ------------------
  |  |  159|   972k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  736|   972k|}
message.c:isc_buffer_getuint16:
  888|  2.17M|isc_buffer_getuint16(isc_buffer_t *restrict b) {
  889|  2.17M|	uint16_t     val = 0;
  890|  2.17M|	isc_result_t result = isc_buffer_peekuint16(b, &val);
  891|  2.17M|	ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|  2.17M|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  2.17M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 2.17M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  2.17M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  892|  2.17M|	b->current += sizeof(val);
  893|  2.17M|	return val;
  894|  2.17M|}
message.c:isc_buffer_peekuint16:
  878|  2.17M|isc_buffer_peekuint16(const isc_buffer_t *restrict b, uint16_t *valp) {
  879|  2.17M|	ISC_BUFFER_PEEK_CHECK(b, sizeof(*valp));
  ------------------
  |  |  831|  2.17M|	{                                           \
  |  |  832|  2.17M|		REQUIRE(ISC_BUFFER_VALID(b));       \
  |  |  ------------------
  |  |  |  |  198|  2.17M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  4.34M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.17M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.17M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  2.17M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  833|  2.17M|		if ((b)->used - (b)->current < s) { \
  |  |  ------------------
  |  |  |  Branch (833:7): [True: 0, False: 2.17M]
  |  |  ------------------
  |  |  834|      0|			return (ISC_R_NOMORE);      \
  |  |  835|      0|		}                                   \
  |  |  836|  2.17M|	}
  ------------------
  880|       |
  881|  2.17M|	uint8_t *cp = isc_buffer_current(b);
  ------------------
  |  |  145|  2.17M|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  882|       |
  883|       |	SET_IF_NOT_NULL(valp, ISC_U8TO16_BE(cp));
  ------------------
  |  |  104|  2.17M|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 2.17M, False: 0]
  |  |  ------------------
  |  |  105|  2.17M|		*(obj) = (val);   \
  |  |  106|  2.17M|	}
  ------------------
  884|  2.17M|	return ISC_R_SUCCESS;
  885|  2.17M|}
message.c:isc_buffer_clear:
  694|  41.9k|isc_buffer_clear(isc_buffer_t *restrict b) {
  695|  41.9k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  41.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  83.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 41.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 41.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  41.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  696|       |
  697|  41.9k|	b->used = 0;
  698|  41.9k|	b->current = 0;
  699|  41.9k|	b->active = 0;
  700|  41.9k|}
message.c:isc_buffer_availableregion:
  634|  17.4k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  17.4k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  17.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  34.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  17.4k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  17.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 17.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  17.4k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  17.4k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  17.4k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  17.4k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  17.4k|}
message.c:isc_buffer_add:
  652|  26.8k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  26.8k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  26.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  53.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 26.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 26.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  26.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  26.8k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  26.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  26.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 26.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  26.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  26.8k|	b->used += n;
  657|  26.8k|}
message.c:isc_buffer_putuint16:
  897|  52.0k|isc_buffer_putuint16(isc_buffer_t *restrict b, const uint16_t val) {
  898|  52.0k|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  52.0k|	{                                                               \
  |  |  858|  52.0k|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  52.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   104k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 52.0k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 52.0k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  52.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  52.0k|                                                                        \
  |  |  860|  52.0k|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 52.0k]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  52.0k|                                                                        \
  |  |  865|  52.0k|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  52.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  52.0k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 52.0k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  52.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  52.0k|	}
  ------------------
  899|       |
  900|  52.0k|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  52.0k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  901|  52.0k|	b->used += sizeof(val);
  902|  52.0k|	ISC_U16TO8_BE(cp, val);
  ------------------
  |  |  223|  52.0k|	(p)[0] = (uint8_t)((v) >> 8); \
  |  |  224|  52.0k|	(p)[1] = (uint8_t)((v));
  ------------------
  903|  52.0k|}
message.c:isc_buffer_init:
  524|   125k|		const unsigned int length) {
  525|   125k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|   125k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   125k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 125k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   125k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|   125k|	*b = (isc_buffer_t){
  528|   125k|		.base = base,
  529|   125k|		.length = length,
  530|   125k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   125k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   125k|	{                                         \
  |  |  |  |   27|   125k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   125k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   125k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   125k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   125k|	}
  |  |  ------------------
  ------------------
  531|   125k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|   125k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|   125k|	};
  533|   125k|}
message.c:isc_buffer_putmem:
  965|  20.8M|		  const unsigned int length) {
  966|  20.8M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  20.8M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  41.6M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 20.8M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 20.8M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  20.8M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  967|       |
  968|  20.8M|	if (b->mctx) {
  ------------------
  |  Branch (968:6): [True: 0, False: 20.8M]
  ------------------
  969|      0|		isc_result_t result = isc_buffer_reserve(b, length);
  970|      0|		REQUIRE(result == ISC_R_SUCCESS);
  ------------------
  |  |  198|      0|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      0|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      0|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  971|      0|	}
  972|       |
  973|  20.8M|	REQUIRE(isc_buffer_availablelength(b) >= (unsigned int)length);
  ------------------
  |  |  198|  20.8M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  20.8M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 20.8M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  20.8M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  974|       |
  975|  20.8M|	if (length > 0U) {
  ------------------
  |  Branch (975:6): [True: 20.8M, False: 0]
  ------------------
  976|  20.8M|		memmove(isc_buffer_used(b), base, length);
  ------------------
  |  |  149|  20.8M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  977|  20.8M|		b->used += length;
  978|  20.8M|	}
  979|  20.8M|}
message.c:isc_buffer_putstr:
  996|   523M|isc_buffer_putstr(isc_buffer_t *restrict b, const char *restrict source) {
  997|   523M|	unsigned int   length;
  998|   523M|	unsigned char *cp;
  999|       |
 1000|   523M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   523M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.04G|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 523M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 523M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   523M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1001|   523M|	REQUIRE(source != NULL);
  ------------------
  |  |  198|   523M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   523M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 523M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   523M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1002|       |
 1003|   523M|	length = (unsigned int)strlen(source);
 1004|   523M|	if (b->mctx) {
  ------------------
  |  Branch (1004:6): [True: 0, False: 523M]
  ------------------
 1005|      0|		isc_result_t result = isc_buffer_reserve(b, length);
 1006|      0|		ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 1007|      0|	}
 1008|       |
 1009|   523M|	REQUIRE(isc_buffer_availablelength(b) >= length);
  ------------------
  |  |  198|   523M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   523M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 523M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   523M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1010|       |
 1011|   523M|	cp = isc_buffer_used(b);
  ------------------
  |  |  149|   523M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1012|   523M|	memmove(cp, source, length);
 1013|   523M|	b->used += length;
 1014|   523M|}
message.c:isc_buffer_getuint32:
  916|   331k|isc_buffer_getuint32(isc_buffer_t *restrict b) {
  917|   331k|	uint32_t     val = 0;
  918|   331k|	isc_result_t result = isc_buffer_peekuint32(b, &val);
  919|   331k|	ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|   331k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|   331k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 331k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|   331k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  920|   331k|	b->current += sizeof(val);
  921|   331k|	return val;
  922|   331k|}
message.c:isc_buffer_peekuint32:
  906|   331k|isc_buffer_peekuint32(const isc_buffer_t *restrict b, uint32_t *valp) {
  907|   331k|	ISC_BUFFER_PEEK_CHECK(b, sizeof(*valp));
  ------------------
  |  |  831|   331k|	{                                           \
  |  |  832|   331k|		REQUIRE(ISC_BUFFER_VALID(b));       \
  |  |  ------------------
  |  |  |  |  198|   331k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   662k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 331k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 331k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   331k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  833|   331k|		if ((b)->used - (b)->current < s) { \
  |  |  ------------------
  |  |  |  Branch (833:7): [True: 0, False: 331k]
  |  |  ------------------
  |  |  834|      0|			return (ISC_R_NOMORE);      \
  |  |  835|      0|		}                                   \
  |  |  836|   331k|	}
  ------------------
  908|       |
  909|   331k|	uint8_t *cp = isc_buffer_current(b);
  ------------------
  |  |  145|   331k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  910|       |
  911|       |	SET_IF_NOT_NULL(valp, ISC_U8TO32_BE(cp));
  ------------------
  |  |  104|   331k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 331k, False: 0]
  |  |  ------------------
  |  |  105|   331k|		*(obj) = (val);   \
  |  |  106|   331k|	}
  ------------------
  912|   331k|	return ISC_R_SUCCESS;
  913|   331k|}
message.c:isc_buffer_getuint8:
  848|  94.7k|isc_buffer_getuint8(isc_buffer_t *restrict b) {
  849|  94.7k|	uint8_t	     val = 0;
  850|  94.7k|	isc_result_t result = isc_buffer_peekuint8(b, &val);
  851|  94.7k|	ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|  94.7k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  94.7k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 94.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  94.7k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  852|  94.7k|	b->current += sizeof(val);
  853|  94.7k|	return val;
  854|  94.7k|}
message.c:isc_buffer_peekuint8:
  839|  94.7k|isc_buffer_peekuint8(const isc_buffer_t *restrict b, uint8_t *valp) {
  840|  94.7k|	ISC_BUFFER_PEEK_CHECK(b, sizeof(*valp));
  ------------------
  |  |  831|  94.7k|	{                                           \
  |  |  832|  94.7k|		REQUIRE(ISC_BUFFER_VALID(b));       \
  |  |  ------------------
  |  |  |  |  198|  94.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   189k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 94.7k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 94.7k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  94.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  833|  94.7k|		if ((b)->used - (b)->current < s) { \
  |  |  ------------------
  |  |  |  Branch (833:7): [True: 0, False: 94.7k]
  |  |  ------------------
  |  |  834|      0|			return (ISC_R_NOMORE);      \
  |  |  835|      0|		}                                   \
  |  |  836|  94.7k|	}
  ------------------
  841|       |
  842|  94.7k|	uint8_t *cp = isc_buffer_current(b);
  ------------------
  |  |  145|  94.7k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  843|       |	SET_IF_NOT_NULL(valp, (uint8_t)(cp[0]));
  ------------------
  |  |  104|  94.7k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 94.7k, False: 0]
  |  |  ------------------
  |  |  105|  94.7k|		*(obj) = (val);   \
  |  |  106|  94.7k|	}
  ------------------
  844|  94.7k|	return ISC_R_SUCCESS;
  845|  94.7k|}
message.c:isc_buffer_forward:
  806|   125k|isc_buffer_forward(isc_buffer_t *restrict b, const unsigned int n) {
  807|   125k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   125k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   250k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 125k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 125k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   125k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  808|   125k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|   125k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   125k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 125k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   125k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  809|       |
  810|   125k|	b->current += n;
  811|   125k|}
message.c:isc_buffer_setactive:
  771|   791k|isc_buffer_setactive(isc_buffer_t *restrict b, const unsigned int n) {
  772|   791k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   791k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.58M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 791k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 791k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   791k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  773|   791k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|   791k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   791k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 791k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   791k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|       |
  775|   791k|	b->active = b->current + n;
  776|   791k|}
name.c:isc_buffer_clear:
  694|   323k|isc_buffer_clear(isc_buffer_t *restrict b) {
  695|   323k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   323k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   647k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 323k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 323k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   323k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  696|       |
  697|   323k|	b->used = 0;
  698|   323k|	b->current = 0;
  699|   323k|	b->active = 0;
  700|   323k|}
name.c:isc_buffer_add:
  652|  2.23M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.23M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.23M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.46M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.23M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.23M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.23M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.23M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.23M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.23M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.23M|	b->used += n;
  657|  2.23M|}
name.c:isc_buffer_reserve:
 1110|  87.0M|isc_buffer_reserve(isc_buffer_t *restrict dbuf, const unsigned int size) {
 1111|  87.0M|	REQUIRE(ISC_BUFFER_VALID(dbuf));
  ------------------
  |  |  198|  87.0M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   174M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 87.0M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 87.0M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  87.0M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1112|       |
 1113|  87.0M|	size_t len;
 1114|       |
 1115|  87.0M|	len = dbuf->length;
 1116|  87.0M|	if ((len - dbuf->used) >= size) {
  ------------------
  |  Branch (1116:6): [True: 87.0M, False: 7]
  ------------------
 1117|  87.0M|		return ISC_R_SUCCESS;
 1118|  87.0M|	}
 1119|       |
 1120|      7|	if (dbuf->mctx == NULL) {
  ------------------
  |  Branch (1120:6): [True: 7, False: 0]
  ------------------
 1121|      7|		return ISC_R_NOSPACE;
 1122|      7|	}
 1123|       |
 1124|       |	/* Round to nearest buffer size increment */
 1125|      0|	len = size + dbuf->used;
 1126|      0|	len = ISC_ALIGN(len, ISC_BUFFER_INCR);
  ------------------
  |  |  296|      0|#define ISC_ALIGN(x, a) (((x) + (a) - 1) & ~((typeof(x))(a) - 1))
  ------------------
 1127|       |
 1128|       |	/* Cap at UINT_MAX */
 1129|      0|	if (len > UINT_MAX) {
  ------------------
  |  Branch (1129:6): [True: 0, False: 0]
  ------------------
 1130|      0|		len = UINT_MAX;
 1131|      0|	}
 1132|       |
 1133|      0|	if ((len - dbuf->used) < size) {
  ------------------
  |  Branch (1133:6): [True: 0, False: 0]
  ------------------
 1134|      0|		return ISC_R_NOMEMORY;
 1135|      0|	}
 1136|       |
 1137|      0|	if (!dbuf->dynamic) {
  ------------------
  |  Branch (1137:6): [True: 0, False: 0]
  ------------------
 1138|      0|		void *old_base = dbuf->base;
 1139|      0|		dbuf->base = isc_mem_get(dbuf->mctx, len);
  ------------------
  |  |  128|      0|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1140|      0|		if (old_base != NULL) {
  ------------------
  |  Branch (1140:7): [True: 0, False: 0]
  ------------------
 1141|      0|			memmove(dbuf->base, old_base, dbuf->used);
 1142|      0|		}
 1143|      0|		dbuf->dynamic = true;
 1144|      0|	} else {
 1145|      0|		dbuf->base = isc_mem_creget(dbuf->mctx, dbuf->base,
  ------------------
  |  |  135|      0|	isc__mem_reget((c), (p), ISC_CHECKED_MUL((o), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  136|      0|		       ISC_CHECKED_MUL((n), (s)),           \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  137|      0|		       ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
 1146|      0|					    dbuf->length, len, sizeof(char));
 1147|      0|	}
 1148|      0|	dbuf->length = (unsigned int)len;
 1149|       |
 1150|      0|	return ISC_R_SUCCESS;
 1151|      0|}
name.c:isc_buffer_putuint8:
  869|  10.3M|isc_buffer_putuint8(isc_buffer_t *restrict b, const uint8_t val) {
  870|  10.3M|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  10.3M|	{                                                               \
  |  |  858|  10.3M|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  10.3M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  20.7M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 10.3M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 10.3M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  10.3M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  10.3M|                                                                        \
  |  |  860|  10.3M|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 10.3M]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  10.3M|                                                                        \
  |  |  865|  10.3M|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  10.3M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  10.3M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 10.3M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  10.3M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  10.3M|	}
  ------------------
  871|       |
  872|  10.3M|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  10.3M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  873|  10.3M|	b->used += sizeof(val);
  874|  10.3M|	cp[0] = val;
  875|  10.3M|}
name.c:isc_buffer_putuint16:
  897|  2.12M|isc_buffer_putuint16(isc_buffer_t *restrict b, const uint16_t val) {
  898|  2.12M|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  2.12M|	{                                                               \
  |  |  858|  2.12M|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  2.12M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  4.25M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.12M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.12M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  2.12M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  2.12M|                                                                        \
  |  |  860|  2.12M|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 2.12M]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  2.12M|                                                                        \
  |  |  865|  2.12M|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  2.12M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  2.12M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2.12M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  2.12M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  2.12M|	}
  ------------------
  899|       |
  900|  2.12M|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  2.12M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  901|  2.12M|	b->used += sizeof(val);
  902|  2.12M|	ISC_U16TO8_BE(cp, val);
  ------------------
  |  |  223|  2.12M|	(p)[0] = (uint8_t)((v) >> 8); \
  |  |  224|  2.12M|	(p)[1] = (uint8_t)((v));
  ------------------
  903|  2.12M|}
name.c:isc_buffer_putuint32:
  925|  74.5M|isc_buffer_putuint32(isc_buffer_t *restrict b, const uint32_t val) {
  926|  74.5M|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  74.5M|	{                                                               \
  |  |  858|  74.5M|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  74.5M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   149M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 74.5M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 74.5M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  74.5M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  74.5M|                                                                        \
  |  |  860|  74.5M|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 74.5M]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  74.5M|                                                                        \
  |  |  865|  74.5M|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  74.5M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  74.5M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 74.5M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  74.5M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  74.5M|	}
  ------------------
  927|       |
  928|  74.5M|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  74.5M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  929|  74.5M|	b->used += sizeof(val);
  930|       |
  931|  74.5M|	ISC_U32TO8_BE(cp, val);
  ------------------
  |  |  229|  74.5M|	(p)[0] = (uint8_t)((v) >> 24); \
  |  |  230|  74.5M|	(p)[1] = (uint8_t)((v) >> 16); \
  |  |  231|  74.5M|	(p)[2] = (uint8_t)((v) >> 8);  \
  |  |  232|  74.5M|	(p)[3] = (uint8_t)((v));
  ------------------
  932|  74.5M|}
name.c:isc_buffer_forward:
  806|  1.74M|isc_buffer_forward(isc_buffer_t *restrict b, const unsigned int n) {
  807|  1.74M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  1.74M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.48M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.74M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.74M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.74M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  808|  1.74M|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|  1.74M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.74M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.74M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.74M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  809|       |
  810|  1.74M|	b->current += n;
  811|  1.74M|}
name.c:isc_buffer_init:
  524|  2.45k|		const unsigned int length) {
  525|  2.45k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  2.45k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.45k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.45k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.45k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  2.45k|	*b = (isc_buffer_t){
  528|  2.45k|		.base = base,
  529|  2.45k|		.length = length,
  530|  2.45k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  2.45k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  2.45k|	{                                         \
  |  |  |  |   27|  2.45k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  2.45k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  2.45k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  2.45k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  2.45k|	}
  |  |  ------------------
  ------------------
  531|  2.45k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  2.45k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  2.45k|	};
  533|  2.45k|}
rcode.c:isc_buffer_init:
  524|  6.27k|		const unsigned int length) {
  525|  6.27k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  6.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  6.27k|	*b = (isc_buffer_t){
  528|  6.27k|		.base = base,
  529|  6.27k|		.length = length,
  530|  6.27k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  6.27k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  6.27k|	{                                         \
  |  |  |  |   27|  6.27k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  6.27k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  6.27k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  6.27k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  6.27k|	}
  |  |  ------------------
  ------------------
  531|  6.27k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  6.27k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  6.27k|	};
  533|  6.27k|}
rcode.c:isc_buffer_usedregion:
  616|  6.27k|		      isc_region_t *restrict r) {
  617|  6.27k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  6.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 6.27k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 6.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  618|  6.27k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  6.27k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.27k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.27k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.27k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  619|       |
  620|  6.27k|	r->base = b->base;
  621|  6.27k|	r->length = b->used;
  622|  6.27k|}
rcode.c:isc_buffer_availableregion:
  634|   448k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|   448k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   448k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   897k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 448k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 448k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   448k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|   448k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   448k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   448k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 448k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   448k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|   448k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|   448k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|   448k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|   448k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|   448k|}
rcode.c:isc_buffer_add:
  652|   448k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|   448k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   448k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   897k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 448k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 448k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   448k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|   448k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|   448k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   448k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 448k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   448k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|   448k|	b->used += n;
  657|   448k|}
rdata.c:isc_buffer_activeregion:
  748|   313k|isc_buffer_activeregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  749|   313k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   313k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   626k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 313k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 313k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   313k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  750|   313k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   313k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   313k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 313k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   313k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  751|       |
  752|   313k|	if (b->current < b->active) {
  ------------------
  |  Branch (752:6): [True: 302k, False: 11.2k]
  ------------------
  753|   302k|		r->base = isc_buffer_current(b);
  ------------------
  |  |  145|   302k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  754|   302k|		r->length = isc_buffer_activelength(b);
  ------------------
  |  |  160|   302k|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  755|   302k|	} else {
  756|       |		r->base = NULL;
  757|  11.2k|		r->length = 0;
  758|  11.2k|	}
  759|   313k|}
rdata.c:isc_buffer_setactive:
  771|  2.90k|isc_buffer_setactive(isc_buffer_t *restrict b, const unsigned int n) {
  772|  2.90k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.90k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.80k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.90k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.90k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.90k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  773|  2.90k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|  2.90k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.90k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.90k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.90k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|       |
  775|  2.90k|	b->active = b->current + n;
  776|  2.90k|}
rdata.c:isc_buffer_putmem:
  965|   100k|		  const unsigned int length) {
  966|   100k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   200k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  967|       |
  968|   100k|	if (b->mctx) {
  ------------------
  |  Branch (968:6): [True: 100k, False: 0]
  ------------------
  969|   100k|		isc_result_t result = isc_buffer_reserve(b, length);
  970|   100k|		REQUIRE(result == ISC_R_SUCCESS);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  971|   100k|	}
  972|       |
  973|   100k|	REQUIRE(isc_buffer_availablelength(b) >= (unsigned int)length);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  974|       |
  975|   100k|	if (length > 0U) {
  ------------------
  |  Branch (975:6): [True: 49.2k, False: 50.9k]
  ------------------
  976|  49.2k|		memmove(isc_buffer_used(b), base, length);
  ------------------
  |  |  149|  49.2k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  977|  49.2k|		b->used += length;
  978|  49.2k|	}
  979|   100k|}
rdata.c:isc_buffer_reserve:
 1110|   100k|isc_buffer_reserve(isc_buffer_t *restrict dbuf, const unsigned int size) {
 1111|   100k|	REQUIRE(ISC_BUFFER_VALID(dbuf));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   200k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1112|       |
 1113|   100k|	size_t len;
 1114|       |
 1115|   100k|	len = dbuf->length;
 1116|   100k|	if ((len - dbuf->used) >= size) {
  ------------------
  |  Branch (1116:6): [True: 100k, False: 0]
  ------------------
 1117|   100k|		return ISC_R_SUCCESS;
 1118|   100k|	}
 1119|       |
 1120|      0|	if (dbuf->mctx == NULL) {
  ------------------
  |  Branch (1120:6): [True: 0, False: 0]
  ------------------
 1121|      0|		return ISC_R_NOSPACE;
 1122|      0|	}
 1123|       |
 1124|       |	/* Round to nearest buffer size increment */
 1125|      0|	len = size + dbuf->used;
 1126|      0|	len = ISC_ALIGN(len, ISC_BUFFER_INCR);
  ------------------
  |  |  296|      0|#define ISC_ALIGN(x, a) (((x) + (a) - 1) & ~((typeof(x))(a) - 1))
  ------------------
 1127|       |
 1128|       |	/* Cap at UINT_MAX */
 1129|      0|	if (len > UINT_MAX) {
  ------------------
  |  Branch (1129:6): [True: 0, False: 0]
  ------------------
 1130|      0|		len = UINT_MAX;
 1131|      0|	}
 1132|       |
 1133|      0|	if ((len - dbuf->used) < size) {
  ------------------
  |  Branch (1133:6): [True: 0, False: 0]
  ------------------
 1134|      0|		return ISC_R_NOMEMORY;
 1135|      0|	}
 1136|       |
 1137|      0|	if (!dbuf->dynamic) {
  ------------------
  |  Branch (1137:6): [True: 0, False: 0]
  ------------------
 1138|      0|		void *old_base = dbuf->base;
 1139|      0|		dbuf->base = isc_mem_get(dbuf->mctx, len);
  ------------------
  |  |  128|      0|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1140|      0|		if (old_base != NULL) {
  ------------------
  |  Branch (1140:7): [True: 0, False: 0]
  ------------------
 1141|      0|			memmove(dbuf->base, old_base, dbuf->used);
 1142|      0|		}
 1143|      0|		dbuf->dynamic = true;
 1144|      0|	} else {
 1145|      0|		dbuf->base = isc_mem_creget(dbuf->mctx, dbuf->base,
  ------------------
  |  |  135|      0|	isc__mem_reget((c), (p), ISC_CHECKED_MUL((o), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  136|      0|		       ISC_CHECKED_MUL((n), (s)),           \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  137|      0|		       ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
 1146|      0|					    dbuf->length, len, sizeof(char));
 1147|      0|	}
 1148|      0|	dbuf->length = (unsigned int)len;
 1149|       |
 1150|      0|	return ISC_R_SUCCESS;
 1151|      0|}
rdata.c:isc_buffer_forward:
  806|   404k|isc_buffer_forward(isc_buffer_t *restrict b, const unsigned int n) {
  807|   404k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   404k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   808k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 404k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 404k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   404k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  808|   404k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|   404k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   404k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 404k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   404k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  809|       |
  810|   404k|	b->current += n;
  811|   404k|}
rdata.c:isc_buffer_availableregion:
  634|  2.50M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  2.50M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.50M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.01M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.50M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.50M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.50M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  2.50M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  2.50M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.50M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.50M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.50M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  2.50M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  2.50M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  2.50M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  2.50M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  2.50M|}
rdata.c:isc_buffer_add:
  652|  2.49M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.49M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.49M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.98M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.49M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.49M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.49M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.49M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.49M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.49M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.49M|	b->used += n;
  657|  2.49M|}
rdata.c:isc_buffer_putstr:
  996|  9.67k|isc_buffer_putstr(isc_buffer_t *restrict b, const char *restrict source) {
  997|  9.67k|	unsigned int   length;
  998|  9.67k|	unsigned char *cp;
  999|       |
 1000|  9.67k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  9.67k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  19.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 9.67k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 9.67k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  9.67k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1001|  9.67k|	REQUIRE(source != NULL);
  ------------------
  |  |  198|  9.67k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  9.67k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 9.67k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  9.67k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1002|       |
 1003|  9.67k|	length = (unsigned int)strlen(source);
 1004|  9.67k|	if (b->mctx) {
  ------------------
  |  Branch (1004:6): [True: 0, False: 9.67k]
  ------------------
 1005|      0|		isc_result_t result = isc_buffer_reserve(b, length);
 1006|      0|		ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 1007|      0|	}
 1008|       |
 1009|  9.67k|	REQUIRE(isc_buffer_availablelength(b) >= length);
  ------------------
  |  |  198|  9.67k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  9.67k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 9.67k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  9.67k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1010|       |
 1011|  9.67k|	cp = isc_buffer_used(b);
  ------------------
  |  |  149|  9.67k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1012|  9.67k|	memmove(cp, source, length);
 1013|  9.67k|	b->used += length;
 1014|  9.67k|}
rdata.c:isc_buffer_subtract:
  669|  99.6k|isc_buffer_subtract(isc_buffer_t *restrict b, const unsigned int n) {
  670|  99.6k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  99.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   199k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 99.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 99.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  99.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  671|  99.6k|	REQUIRE(b->used >= n);
  ------------------
  |  |  198|  99.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  99.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 99.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  99.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  672|       |
  673|  99.6k|	b->used -= n;
  674|  99.6k|	if (b->current > b->used) {
  ------------------
  |  Branch (674:6): [True: 0, False: 99.6k]
  ------------------
  675|      0|		b->current = b->used;
  676|      0|	}
  677|  99.6k|	if (b->active > b->used) {
  ------------------
  |  Branch (677:6): [True: 0, False: 99.6k]
  ------------------
  678|      0|		b->active = b->used;
  679|      0|	}
  680|  99.6k|}
rdata.c:isc_buffer_init:
  524|  7.96k|		const unsigned int length) {
  525|  7.96k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  7.96k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.96k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 7.96k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  7.96k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  7.96k|	*b = (isc_buffer_t){
  528|  7.96k|		.base = base,
  529|  7.96k|		.length = length,
  530|  7.96k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  7.96k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  7.96k|	{                                         \
  |  |  |  |   27|  7.96k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  7.96k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  7.96k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  7.96k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  7.96k|	}
  |  |  ------------------
  ------------------
  531|  7.96k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  7.96k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  7.96k|	};
  533|  7.96k|}
rdataset.c:isc_buffer_availableregion:
  634|   159k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|   159k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   159k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   318k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 159k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 159k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   159k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|   159k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   159k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   159k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 159k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   159k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|   159k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|   159k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|   159k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|   159k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|   159k|}
rdataset.c:isc_buffer_putuint16:
  897|   444k|isc_buffer_putuint16(isc_buffer_t *restrict b, const uint16_t val) {
  898|   444k|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|   444k|	{                                                               \
  |  |  858|   444k|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|   444k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   889k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 444k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 444k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   444k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|   444k|                                                                        \
  |  |  860|   444k|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 444k]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|   444k|                                                                        \
  |  |  865|   444k|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|   444k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   444k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 444k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   444k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|   444k|	}
  ------------------
  899|       |
  900|   444k|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|   444k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  901|   444k|	b->used += sizeof(val);
  902|   444k|	ISC_U16TO8_BE(cp, val);
  ------------------
  |  |  223|   444k|	(p)[0] = (uint8_t)((v) >> 8); \
  |  |  224|   444k|	(p)[1] = (uint8_t)((v));
  ------------------
  903|   444k|}
rdataset.c:isc_buffer_putuint32:
  925|   126k|isc_buffer_putuint32(isc_buffer_t *restrict b, const uint32_t val) {
  926|   126k|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|   126k|	{                                                               \
  |  |  858|   126k|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|   126k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   253k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 126k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 126k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|   126k|                                                                        \
  |  |  860|   126k|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 126k]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|   126k|                                                                        \
  |  |  865|   126k|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|   126k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   126k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 126k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|   126k|	}
  ------------------
  927|       |
  928|   126k|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|   126k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  929|   126k|	b->used += sizeof(val);
  930|       |
  931|   126k|	ISC_U32TO8_BE(cp, val);
  ------------------
  |  |  229|   126k|	(p)[0] = (uint8_t)((v) >> 24); \
  |  |  230|   126k|	(p)[1] = (uint8_t)((v) >> 16); \
  |  |  231|   126k|	(p)[2] = (uint8_t)((v) >> 8);  \
  |  |  232|   126k|	(p)[3] = (uint8_t)((v));
  ------------------
  932|   126k|}
rdataset.c:isc_buffer_add:
  652|   126k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|   126k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   126k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   253k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 126k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 126k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|   126k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|   126k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   126k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 126k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   126k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|   126k|	b->used += n;
  657|   126k|}
time.c:isc_buffer_availableregion:
  634|  13.9k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  13.9k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  13.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  27.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 13.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 13.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  13.9k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  13.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  13.9k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  13.9k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  13.9k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  13.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  13.9k|}
time.c:isc_buffer_add:
  652|  13.9k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  13.9k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  13.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  27.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 13.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 13.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  13.9k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  13.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  13.9k|	b->used += n;
  657|  13.9k|}
ttl.c:isc_buffer_availableregion:
  634|   100k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|   100k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   201k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|   100k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|   100k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|   100k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|   100k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|   100k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|   100k|}
ttl.c:isc_buffer_add:
  652|   100k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|   100k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   201k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|   100k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|   100k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   100k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 100k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   100k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|   100k|	b->used += n;
  657|   100k|}
fixedname.c:isc_buffer_init:
  524|  1.07M|		const unsigned int length) {
  525|  1.07M|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  1.07M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  1.07M|	*b = (isc_buffer_t){
  528|  1.07M|		.base = base,
  529|  1.07M|		.length = length,
  530|  1.07M|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  1.07M|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  1.07M|	{                                         \
  |  |  |  |   27|  1.07M|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.07M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  1.07M|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.07M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  1.07M|	}
  |  |  ------------------
  ------------------
  531|  1.07M|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  1.07M|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  1.07M|	};
  533|  1.07M|}
base32.c:isc_buffer_availableregion:
  634|  14.1k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  14.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  14.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  28.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 14.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 14.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  14.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  14.1k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  14.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  14.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 14.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  14.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  14.1k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  14.1k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  14.1k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  14.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  14.1k|}
base32.c:isc_buffer_add:
  652|  14.1k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  14.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  14.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  28.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 14.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 14.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  14.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  14.1k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  14.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  14.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 14.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  14.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  14.1k|	b->used += n;
  657|  14.1k|}
base64.c:isc_buffer_availableregion:
  634|   878k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|   878k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   878k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.75M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 878k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 878k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   878k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|   878k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   878k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   878k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 878k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   878k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|   878k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|   878k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|   878k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|   878k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|   878k|}
base64.c:isc_buffer_add:
  652|   878k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|   878k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   878k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.75M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 878k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 878k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   878k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|   878k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|   878k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   878k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 878k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   878k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|   878k|	b->used += n;
  657|   878k|}
hex.c:isc_buffer_availableregion:
  634|  2.16M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  2.16M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.16M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.33M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.16M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.16M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.16M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  2.16M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  2.16M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.16M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.16M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.16M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  2.16M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  2.16M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  2.16M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  2.16M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  2.16M|}
hex.c:isc_buffer_add:
  652|  2.16M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.16M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.16M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.33M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.16M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.16M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.16M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.16M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.16M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.16M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.16M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.16M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.16M|	b->used += n;
  657|  2.16M|}

compress.c:isc_hash_bits32:
  114|   907k|isc_hash_bits32(uint32_t val, unsigned int bits) {
  115|   907k|	ISC_REQUIRE(bits <= ISC_HASH_MAX_BITS);
  ------------------
  |  |   42|   907k|	((void)((cond) ||                                                  \
  |  |  ------------------
  |  |  |  Branch (42:10): [True: 907k, False: 0]
  |  |  ------------------
  |  |   43|   907k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  ------------------
  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  ------------------
  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |   45|      0|		 0)))
  ------------------
  116|       |	/* High bits are more random. */
  117|   907k|	return val * ISC_HASH_GOLDENRATIO_32 >> (32 - bits);
  ------------------
  |  |  111|   907k|#define ISC_HASH_GOLDENRATIO_32 0x61C88647
  ------------------
  118|   907k|}
name.c:isc_hash32:
   53|   246k|isc_hash32(const void *data, const size_t length, const bool case_sensitive) {
   54|   246k|	isc_hash32_t state;
   55|   246k|	isc_hash32_init(&state);
   56|   246k|	isc_hash32_hash(&state, data, length, case_sensitive);
   57|   246k|	return isc_hash32_finalize(&state);
   58|   246k|}
hashmap.c:isc_hash_bits32:
  114|   611k|isc_hash_bits32(uint32_t val, unsigned int bits) {
  115|   611k|	ISC_REQUIRE(bits <= ISC_HASH_MAX_BITS);
  ------------------
  |  |   42|   611k|	((void)((cond) ||                                                  \
  |  |  ------------------
  |  |  |  Branch (42:10): [True: 611k, False: 0]
  |  |  ------------------
  |  |   43|   611k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  ------------------
  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  ------------------
  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |   45|      0|		 0)))
  ------------------
  116|       |	/* High bits are more random. */
  117|   611k|	return val * ISC_HASH_GOLDENRATIO_32 >> (32 - bits);
  ------------------
  |  |  111|   611k|#define ISC_HASH_GOLDENRATIO_32 0x61C88647
  ------------------
  118|   611k|}

isc_lib_initialize:
   57|      2|isc_lib_initialize(void) {
   58|      2|	isc__lib_initialize();
   59|      2|}

isc_mem_attach:
  222|  94.8k|	stat void name##_attach(name##_t *ptr, name##_t **ptrp) {    \
  223|  94.8k|		REQUIRE(ptrp != NULL && *ptrp == NULL);              \
  ------------------
  |  |  198|  94.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   189k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 94.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 94.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  94.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  224|  94.8k|		name##_ref(ptr);                                     \
  225|  94.8k|		*ptrp = ptr;                                         \
  226|  94.8k|	}                                                            \

hash.c:isc_halfsiphash13_init:
  633|   473k|isc_halfsiphash13_init(isc_halfsiphash24_t *restrict state, const uint8_t *k) {
  634|   473k|	REQUIRE(k != NULL);
  ------------------
  |  |  198|   473k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   473k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   473k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  635|       |
  636|   473k|	uint32_t k0 = ISC_U8TO32_LE(k);
  ------------------
  |  |  188|   473k|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|   473k|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  637|   473k|	uint32_t k1 = ISC_U8TO32_LE(k + 4);
  ------------------
  |  |  188|   473k|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|   473k|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  638|       |
  639|   473k|	*state = (isc_halfsiphash24_t){
  640|   473k|		.k0 = k0,
  641|   473k|		.k1 = k1,
  642|   473k|		.v0 = UINT32_C(0x00000000) ^ k0,
  643|   473k|		.v1 = UINT32_C(0x00000000) ^ k1,
  644|   473k|		.v2 = UINT32_C(0x6c796765) ^ k0,
  645|       |		.v3 = UINT32_C(0x74656462) ^ k1,
  646|   473k|	};
  647|   473k|}
hash.c:isc_halfsiphash13_hash:
  662|   929k|		       const size_t inlen, const bool case_sensitive) {
  663|   929k|	REQUIRE(inlen == 0 || in != NULL);
  ------------------
  |  |  198|   929k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.85M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 929k]
  |  |  |  |  |  Branch (42:11): [True: 929k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   929k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  664|       |
  665|   929k|	if (in == NULL || inlen == 0) {
  ------------------
  |  Branch (665:6): [True: 0, False: 929k]
  |  Branch (665:20): [True: 0, False: 929k]
  ------------------
  666|      0|		return;
  667|      0|	}
  668|       |
  669|   929k|	size_t	  len = inlen;
  670|   929k|	const int right = state->inlen & 3;
  671|       |
  672|   929k|	switch (right) {
  673|   701k|	case 0:
  ------------------
  |  Branch (673:2): [True: 701k, False: 227k]
  ------------------
  674|   701k|		break;
  675|      0|	case 1:
  ------------------
  |  Branch (675:2): [True: 0, False: 929k]
  ------------------
  676|      0|		state->b |= U8TO32_ONE(case_sensitive, in[0]) << 8;
  ------------------
  |  |   77|      0|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  677|      0|		state->inlen++;
  678|      0|		++in;
  679|       |
  680|      0|		if (--len == 0) {
  ------------------
  |  Branch (680:7): [True: 0, False: 0]
  ------------------
  681|      0|			return;
  682|      0|		}
  683|      0|		FALLTHROUGH;
  ------------------
  |  |  101|      0|#define FALLTHROUGH [[fallthrough]]
  ------------------
  684|   227k|	case 2:
  ------------------
  |  Branch (684:2): [True: 227k, False: 701k]
  ------------------
  685|   227k|		state->b |= U8TO32_ONE(case_sensitive, in[0]) << 16;
  ------------------
  |  |   77|   227k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 227k, False: 0]
  |  |  ------------------
  ------------------
  686|   227k|		state->inlen++;
  687|   227k|		++in;
  688|       |
  689|   227k|		if (--len == 0) {
  ------------------
  |  Branch (689:7): [True: 0, False: 227k]
  ------------------
  690|      0|			return;
  691|      0|		}
  692|   227k|		FALLTHROUGH;
  ------------------
  |  |  101|   227k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  693|   227k|	case 3:
  ------------------
  |  Branch (693:2): [True: 0, False: 929k]
  ------------------
  694|   227k|		state->b |= U8TO32_ONE(case_sensitive, in[0]) << 24;
  ------------------
  |  |   77|   227k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 227k, False: 0]
  |  |  ------------------
  ------------------
  695|   227k|		state->inlen++;
  696|   227k|		++in;
  697|       |
  698|   227k|		isc_halfsiphash13_one(state, state->b);
  699|   227k|		state->b = 0; /* consumed */
  700|       |
  701|   227k|		if (--len == 0) {
  ------------------
  |  Branch (701:7): [True: 227k, False: 0]
  ------------------
  702|   227k|			return;
  703|   227k|		}
  704|      0|		break;
  705|      0|	default:
  ------------------
  |  Branch (705:2): [True: 0, False: 929k]
  ------------------
  706|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  707|   929k|	}
  708|       |
  709|   701k|	const uint8_t *end = in + len - (len % sizeof(uint32_t));
  710|   701k|	const int      left = len & 3;
  711|       |
  712|  1.20M|	for (; in != end; in += 4) {
  ------------------
  |  Branch (712:9): [True: 500k, False: 701k]
  ------------------
  713|   500k|		uint32_t m = case_sensitive
  ------------------
  |  Branch (713:16): [True: 0, False: 500k]
  ------------------
  714|   500k|				     ? ISC_U8TO32_LE(in)
  ------------------
  |  |  188|      0|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|      0|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  715|   500k|				     : isc_ascii_tolower4(ISC_U8TO32_LE(in));
  ------------------
  |  |  188|   500k|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|   500k|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  716|       |
  717|   500k|		isc_halfsiphash13_one(state, m);
  718|   500k|	}
  719|       |
  720|   701k|	INSIST(state->b == 0);
  ------------------
  |  |  202|   701k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   701k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 701k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   701k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  721|   701k|	switch (left) {
  722|  22.1k|	case 3:
  ------------------
  |  Branch (722:2): [True: 22.1k, False: 679k]
  ------------------
  723|  22.1k|		state->b |= U8TO32_ONE(case_sensitive, in[2]) << 16;
  ------------------
  |  |   77|  22.1k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 0, False: 22.1k]
  |  |  ------------------
  ------------------
  724|  22.1k|		FALLTHROUGH;
  ------------------
  |  |  101|  22.1k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  725|   489k|	case 2:
  ------------------
  |  Branch (725:2): [True: 467k, False: 234k]
  ------------------
  726|   489k|		state->b |= U8TO32_ONE(case_sensitive, in[1]) << 8;
  ------------------
  |  |   77|   489k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 455k, False: 34.2k]
  |  |  ------------------
  ------------------
  727|   489k|		FALLTHROUGH;
  ------------------
  |  |  101|   489k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  728|   686k|	case 1:
  ------------------
  |  Branch (728:2): [True: 196k, False: 504k]
  ------------------
  729|   686k|		state->b |= U8TO32_ONE(case_sensitive, in[0]);
  ------------------
  |  |   77|   686k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 455k, False: 231k]
  |  |  ------------------
  ------------------
  730|   686k|		FALLTHROUGH;
  ------------------
  |  |  101|   686k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  731|   701k|	case 0:
  ------------------
  |  Branch (731:2): [True: 15.2k, False: 686k]
  ------------------
  732|   701k|		break;
  733|      0|	default:
  ------------------
  |  Branch (733:2): [True: 0, False: 701k]
  ------------------
  734|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  735|   701k|	}
  736|       |
  737|   701k|	state->inlen += len;
  738|   701k|}
hash.c:isc_halfsiphash13_one:
  650|  1.20M|isc_halfsiphash13_one(isc_halfsiphash13_t *restrict state, const uint32_t m) {
  651|  1.20M|	state->v3 ^= m;
  652|       |
  653|  2.40M|	for (size_t i = 0; i < cROUNDS_13; ++i) {
  ------------------
  |  |   47|  2.40M|#define cROUNDS_13 1
  ------------------
  |  Branch (653:21): [True: 1.20M, False: 1.20M]
  ------------------
  654|  1.20M|		HALFSIPROUND(state->v0, state->v1, state->v2, state->v3);
  ------------------
  |  |   74|  1.20M|#define HALFSIPROUND FULL_ROUND32
  |  |  ------------------
  |  |  |  |   71|  1.20M|	HALF_ROUND32(v0, v1, v2, v3, 5, 8); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.20M|	a += b;                        \
  |  |  |  |  |  |   65|  1.20M|	c += d;                        \
  |  |  |  |  |  |   66|  1.20M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.20M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.20M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.20M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.20M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.20M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.20M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.20M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.20M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.20M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.20M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.20M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.20M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.20M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.20M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.20M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.20M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.20M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   72|  1.20M|	HALF_ROUND32(v2, v1, v0, v3, 13, 7);
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.20M|	a += b;                        \
  |  |  |  |  |  |   65|  1.20M|	c += d;                        \
  |  |  |  |  |  |   66|  1.20M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.20M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.20M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.20M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.20M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.20M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.20M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.20M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.20M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.20M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.20M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.20M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.20M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.20M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.20M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.20M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.20M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.20M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  655|  1.20M|	}
  656|       |
  657|  1.20M|	state->v0 ^= m;
  658|  1.20M|}
hash.c:isc_halfsiphash13_finalize:
  741|   473k|isc_halfsiphash13_finalize(isc_halfsiphash13_t *restrict state, uint8_t *out) {
  742|   473k|	REQUIRE(out != NULL);
  ------------------
  |  |  198|   473k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   473k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   473k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  743|       |
  744|   473k|	uint32_t b = ((uint32_t)state->inlen) << 24 | state->b;
  745|       |
  746|   473k|	isc_halfsiphash13_one(state, b);
  747|       |
  748|   473k|	state->v2 ^= 0xff;
  749|       |
  750|  1.89M|	for (size_t i = 0; i < dROUNDS_13; ++i) {
  ------------------
  |  |   48|  1.89M|#define dROUNDS_13 3
  ------------------
  |  Branch (750:21): [True: 1.42M, False: 473k]
  ------------------
  751|  1.42M|		HALFSIPROUND(state->v0, state->v1, state->v2, state->v3);
  ------------------
  |  |   74|  1.42M|#define HALFSIPROUND FULL_ROUND32
  |  |  ------------------
  |  |  |  |   71|  1.42M|	HALF_ROUND32(v0, v1, v2, v3, 5, 8); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.42M|	a += b;                        \
  |  |  |  |  |  |   65|  1.42M|	c += d;                        \
  |  |  |  |  |  |   66|  1.42M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.42M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.42M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.42M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.42M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.42M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.42M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.42M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.42M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.42M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.42M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.42M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.42M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.42M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.42M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.42M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.42M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.42M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   72|  1.42M|	HALF_ROUND32(v2, v1, v0, v3, 13, 7);
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.42M|	a += b;                        \
  |  |  |  |  |  |   65|  1.42M|	c += d;                        \
  |  |  |  |  |  |   66|  1.42M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.42M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.42M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.42M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.42M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.42M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.42M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.42M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.42M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.42M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.42M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.42M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.42M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.42M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.42M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.42M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.42M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.42M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  752|  1.42M|	}
  753|       |
  754|   473k|	b = state->v1 ^ state->v3;
  755|   473k|	ISC_U32TO8_LE(out, b);
  ------------------
  |  |  182|   473k|	(p)[0] = (uint8_t)((v));       \
  |  |  183|   473k|	(p)[1] = (uint8_t)((v) >> 8);  \
  |  |  184|   473k|	(p)[2] = (uint8_t)((v) >> 16); \
  |  |  185|   473k|	(p)[3] = (uint8_t)((v) >> 24);
  ------------------
  756|   473k|}

mem.c:isc_tid:
   39|  86.4M|isc_tid(void) {
   40|  86.4M|	return isc__tid_local;
   41|  86.4M|}

isc__iterated_hash_initialize:
  144|      2|isc__iterated_hash_initialize(void) {
  145|      2|	if (initialized) {
  ------------------
  |  Branch (145:6): [True: 0, False: 2]
  ------------------
  146|      0|		return;
  147|      0|	}
  148|       |
  149|      2|	basectx = EVP_MD_CTX_new();
  150|      2|	INSIST(basectx != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  151|      2|	mdctx = EVP_MD_CTX_new();
  152|      2|	INSIST(mdctx != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  153|       |
  154|      2|	RUNTIME_CHECK(EVP_DigestInit_ex(basectx, isc__crypto_md[ISC_MD_SHA1],
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  155|      2|					NULL) == 1);
  156|       |	initialized = true;
  157|      2|}

mem.c:mallocx:
   66|  43.2M|mallocx(size_t size, int flags) {
   67|  43.2M|	void *ptr = malloc(size);
   68|  43.2M|	INSIST(ptr != NULL);
  ------------------
  |  |  202|  43.2M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  43.2M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 43.2M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  43.2M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   69|       |
   70|  43.2M|	if ((flags & MALLOCX_ZERO) != 0) {
  ------------------
  |  |   32|  43.2M|#define MALLOCX_ZERO		((int)0x40)
  ------------------
  |  Branch (70:6): [True: 42.9k, False: 43.1M]
  ------------------
   71|  42.9k|		memset(ptr, 0, size);
   72|  42.9k|	}
   73|       |
   74|  43.2M|	return ptr;
   75|  43.2M|}
mem.c:sdallocx:
   78|  43.2M|sdallocx(void *ptr, size_t size ISC_ATTR_UNUSED, int flags ISC_ATTR_UNUSED) {
   79|  43.2M|	free(ptr);
   80|  43.2M|}
mem.c:sallocx:
   59|      8|sallocx(void *ptr, int flags ISC_ATTR_UNUSED) {
   60|      8|	return malloc_usable_size(ptr);
   61|      8|}

isc__lib_initialize:
   46|      4|isc__lib_initialize(void) {
   47|      4|	if (isc_refcount_increment0(&isc__lib_references) > 0) {
  ------------------
  |  |   68|      4|	({                                                 \
  |  |   69|      4|		uint_fast32_t __v;                         \
  |  |   70|      4|		__v = atomic_fetch_add_release(target, 1); \
  |  |  ------------------
  |  |  |  |   52|      4|	atomic_fetch_add_explicit((o), (v), memory_order_release)
  |  |  ------------------
  |  |   71|      4|		INSIST(__v < UINT32_MAX);                  \
  |  |  ------------------
  |  |  |  |  202|      4|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      4|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      4|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   72|      4|		__v;                                       \
  |  |   73|      4|	})
  ------------------
  |  Branch (47:6): [True: 2, False: 2]
  ------------------
   48|      2|		return;
   49|      2|	}
   50|       |
   51|      4|	rcu_register_thread();
   52|      2|	isc__os_initialize();
   53|      2|	isc__mutex_initialize();
   54|      2|	isc__mem_initialize();
   55|      2|	isc__log_initialize();
   56|      2|	isc__crypto_initialize();
   57|      2|	isc__uv_initialize();
   58|      2|	isc__xml_initialize();
   59|      2|	isc__hash_initialize();
   60|      2|	isc__iterated_hash_initialize();
   61|      2|	(void)isc_os_ncpus();
   62|      2|}

isc_logconfig_create:
  328|      2|isc_logconfig_create(isc_logconfig_t **lcfgp) {
  329|      2|	REQUIRE(lcfgp != NULL && *lcfgp == NULL);
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  330|      2|	REQUIRE(VALID_CONTEXT(isc__lctx));
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  331|       |
  332|      2|	int level = ISC_LOG_INFO;
  ------------------
  |  |   42|      2|#define ISC_LOG_INFO	 (-1)
  ------------------
  333|       |
  334|      2|	isc_logconfig_t *lcfg = isc_mem_get(isc__lctx->mctx, sizeof(*lcfg));
  ------------------
  |  |  128|      2|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  335|       |
  336|      2|	*lcfg = (isc_logconfig_t){
  337|      2|		.magic = LCFG_MAGIC,
  ------------------
  |  |   43|      2|#define LCFG_MAGIC	   ISC_MAGIC('L', 'c', 'f', 'g')
  |  |  ------------------
  |  |  |  |   31|      2|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  338|      2|		.lctx = isc__lctx,
  339|      2|		.channels = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|      2|	{                     \
  |  |   22|      2|		.head = NULL, \
  |  |   23|      2|		.tail = NULL, \
  |  |   24|      2|	}
  ------------------
  340|      2|		.highest_level = level,
  341|      2|	};
  342|       |
  343|       |	/*
  344|       |	 * Create the default channels:
  345|       |	 *      default_syslog, default_stderr, default_debug and null.
  346|       |	 */
  347|      2|	isc_log_createchannel(lcfg, "default_syslog", ISC_LOG_TOSYSLOG, level,
  ------------------
  |  |   54|      2|#define ISC_LOG_TOSYSLOG   2
  ------------------
  348|      2|			      ISC_LOGDESTINATION_SYSLOG(LOG_DAEMON), 0);
  ------------------
  |  |  287|      2|	(&(isc_logdestination_t){ .facility = (f) })
  ------------------
  349|       |
  350|      2|	isc_log_createchannel(lcfg, "default_stderr", ISC_LOG_TOFILEDESC, level,
  ------------------
  |  |   56|      2|#define ISC_LOG_TOFILEDESC 4
  ------------------
  351|      2|			      ISC_LOGDESTINATION_STDERR, ISC_LOG_PRINTTIME);
  ------------------
  |  |  284|      2|#define ISC_LOGDESTINATION_STDERR ISC_LOGDESTINATION_FILE(stderr)
  |  |  ------------------
  |  |  |  |  277|      2|	(&(isc_logdestination_t){                               \
  |  |  |  |  278|      2|		.file = {                                       \
  |  |  |  |  279|      2|			.stream = errout,                       \
  |  |  |  |  280|      2|			.versions = ISC_LOG_ROLLNEVER,          \
  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      2|#define ISC_LOG_ROLLNEVER    (-2)
  |  |  |  |  ------------------
  |  |  |  |  281|      2|			.suffix = isc_log_rollsuffix_increment, \
  |  |  |  |  282|      2|		} })
  |  |  ------------------
  ------------------
              			      ISC_LOGDESTINATION_STDERR, ISC_LOG_PRINTTIME);
  ------------------
  |  |   63|      2|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
  352|       |
  353|       |	/*
  354|       |	 * Set the default category's channel to default_stderr,
  355|       |	 * which is at the head of the channels list because it was
  356|       |	 * just created.
  357|       |	 */
  358|      2|	default_channel.channel = ISC_LIST_HEAD(lcfg->channels);
  ------------------
  |  |   62|      2|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  359|       |
  360|      2|	isc_log_createchannel(lcfg, "default_debug", ISC_LOG_TOFILEDESC,
  ------------------
  |  |   56|      2|#define ISC_LOG_TOFILEDESC 4
  ------------------
  361|      2|			      ISC_LOG_DYNAMIC, ISC_LOGDESTINATION_STDERR,
  ------------------
  |  |   41|      2|#define ISC_LOG_DYNAMIC	 0
  ------------------
              			      ISC_LOG_DYNAMIC, ISC_LOGDESTINATION_STDERR,
  ------------------
  |  |  284|      2|#define ISC_LOGDESTINATION_STDERR ISC_LOGDESTINATION_FILE(stderr)
  |  |  ------------------
  |  |  |  |  277|      2|	(&(isc_logdestination_t){                               \
  |  |  |  |  278|      2|		.file = {                                       \
  |  |  |  |  279|      2|			.stream = errout,                       \
  |  |  |  |  280|      2|			.versions = ISC_LOG_ROLLNEVER,          \
  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      2|#define ISC_LOG_ROLLNEVER    (-2)
  |  |  |  |  ------------------
  |  |  |  |  281|      2|			.suffix = isc_log_rollsuffix_increment, \
  |  |  |  |  282|      2|		} })
  |  |  ------------------
  ------------------
  362|      2|			      ISC_LOG_PRINTTIME);
  ------------------
  |  |   63|      2|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
  363|       |
  364|      2|	isc_log_createchannel(lcfg, "null", ISC_LOG_TONULL, ISC_LOG_DYNAMIC,
  ------------------
  |  |   53|      2|#define ISC_LOG_TONULL	   1
  ------------------
              	isc_log_createchannel(lcfg, "null", ISC_LOG_TONULL, ISC_LOG_DYNAMIC,
  ------------------
  |  |   41|      2|#define ISC_LOG_DYNAMIC	 0
  ------------------
  365|      2|			      NULL, 0);
  366|       |
  367|      2|	*lcfgp = lcfg;
  368|      2|}
isc_log_createchannel:
  473|      8|		      unsigned int flags) {
  474|      8|	isc_logchannel_t *channel;
  475|      8|	isc_mem_t *mctx;
  476|      8|	unsigned int permitted = ISC_LOG_PRINTALL | ISC_LOG_DEBUGONLY |
  ------------------
  |  |   69|      8|#define ISC_LOG_PRINTALL      0x0003F
  ------------------
              	unsigned int permitted = ISC_LOG_PRINTALL | ISC_LOG_DEBUGONLY |
  ------------------
  |  |   71|      8|#define ISC_LOG_DEBUGONLY     0x01000
  ------------------
  477|      8|				 ISC_LOG_BUFFERED | ISC_LOG_ISO8601 |
  ------------------
  |  |   70|      8|#define ISC_LOG_BUFFERED      0x00040
  ------------------
              				 ISC_LOG_BUFFERED | ISC_LOG_ISO8601 |
  ------------------
  |  |   73|      8|#define ISC_LOG_ISO8601	      0x10000 /* if PRINTTIME, use ISO8601 */
  ------------------
  478|      8|				 ISC_LOG_UTC | ISC_LOG_TZINFO;
  ------------------
  |  |   74|      8|#define ISC_LOG_UTC	      0x20000 /* if PRINTTIME, use UTC */
  ------------------
              				 ISC_LOG_UTC | ISC_LOG_TZINFO;
  ------------------
  |  |   75|      8|#define ISC_LOG_TZINFO	      0x40000 /* if PRINTTIME, output TZ info */
  ------------------
  479|       |
  480|      8|	REQUIRE(VALID_CONFIG(lcfg));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     16|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  481|      8|	REQUIRE(name != NULL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  482|      8|	REQUIRE(type == ISC_LOG_TOSYSLOG || type == ISC_LOG_TOFILE ||
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     38|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 6]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 6]
  |  |  |  |  |  Branch (42:11): [True: 4, False: 2]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  483|      8|		type == ISC_LOG_TOFILEDESC || type == ISC_LOG_TONULL);
  484|      8|	REQUIRE(destination != NULL || type == ISC_LOG_TONULL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     10|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 6, False: 2]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  485|      8|	REQUIRE(level >= ISC_LOG_CRITICAL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  486|      8|	REQUIRE((flags & ~permitted) == 0);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  487|      8|	REQUIRE(!(flags & ISC_LOG_UTC) || !(flags & ISC_LOG_TZINFO));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  488|       |
  489|       |	/* FIXME: find duplicate names? */
  490|       |
  491|      8|	mctx = lcfg->lctx->mctx;
  492|       |
  493|      8|	channel = isc_mem_get(mctx, sizeof(*channel));
  ------------------
  |  |  128|      8|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  494|       |
  495|      8|	channel->name = isc_mem_strdup(mctx, name);
  ------------------
  |  |  144|      8|#define isc_mem_strdup(c, p) isc__mem_strdup((c), (p)_ISC_MEM_FILELINE)
  ------------------
  496|       |
  497|      8|	channel->type = type;
  498|      8|	channel->level = level;
  499|      8|	channel->flags = flags;
  500|      8|	ISC_LINK_INIT(channel, link);
  ------------------
  |  |   57|      8|#define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
  |  |  ------------------
  |  |  |  |   53|      8|	do {                                                 \
  |  |  |  |   54|      8|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      8|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   55|      8|		(elt)->link.next = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      8|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   56|      8|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (56:11): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|       |
  502|      8|	switch (type) {
  503|      2|	case ISC_LOG_TOSYSLOG:
  ------------------
  |  |   54|      2|#define ISC_LOG_TOSYSLOG   2
  ------------------
  |  Branch (503:2): [True: 2, False: 6]
  ------------------
  504|      2|		FACILITY(channel) = destination->facility;
  ------------------
  |  |  314|      2|#define FACILITY(channel)	 (channel->destination.facility)
  ------------------
  505|      2|		break;
  506|       |
  507|      0|	case ISC_LOG_TOFILE:
  ------------------
  |  |   55|      0|#define ISC_LOG_TOFILE	   3
  ------------------
  |  Branch (507:2): [True: 0, False: 8]
  ------------------
  508|       |		/*
  509|       |		 * The file name is copied because greatest_version wants
  510|       |		 * to scribble on it, so it needs to be definitely in
  511|       |		 * writable memory.
  512|       |		 */
  513|      0|		FILE_NAME(channel) = isc_mem_strdup(mctx,
  ------------------
  |  |  315|      0|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
              		FILE_NAME(channel) = isc_mem_strdup(mctx,
  ------------------
  |  |  144|      0|#define isc_mem_strdup(c, p) isc__mem_strdup((c), (p)_ISC_MEM_FILELINE)
  ------------------
  514|      0|						    destination->file.name);
  515|      0|		FILE_STREAM(channel) = NULL;
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  516|      0|		FILE_VERSIONS(channel) = destination->file.versions;
  ------------------
  |  |  317|      0|#define FILE_VERSIONS(channel)	 (channel->destination.file.versions)
  ------------------
  517|      0|		FILE_SUFFIX(channel) = destination->file.suffix;
  ------------------
  |  |  318|      0|#define FILE_SUFFIX(channel)	 (channel->destination.file.suffix)
  ------------------
  518|      0|		FILE_MAXSIZE(channel) = destination->file.maximum_size;
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  519|      0|		FILE_MAXREACHED(channel) = false;
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  ------------------
  520|      0|		break;
  521|       |
  522|      4|	case ISC_LOG_TOFILEDESC:
  ------------------
  |  |   56|      4|#define ISC_LOG_TOFILEDESC 4
  ------------------
  |  Branch (522:2): [True: 4, False: 4]
  ------------------
  523|      4|		FILE_NAME(channel) = NULL;
  ------------------
  |  |  315|      4|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
  524|      4|		FILE_STREAM(channel) = destination->file.stream;
  ------------------
  |  |  316|      4|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  525|      4|		FILE_MAXSIZE(channel) = 0;
  ------------------
  |  |  319|      4|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  526|      4|		FILE_VERSIONS(channel) = ISC_LOG_ROLLNEVER;
  ------------------
  |  |  317|      4|#define FILE_VERSIONS(channel)	 (channel->destination.file.versions)
  ------------------
              		FILE_VERSIONS(channel) = ISC_LOG_ROLLNEVER;
  ------------------
  |  |   87|      4|#define ISC_LOG_ROLLNEVER    (-2)
  ------------------
  527|      4|		FILE_SUFFIX(channel) = isc_log_rollsuffix_increment;
  ------------------
  |  |  318|      4|#define FILE_SUFFIX(channel)	 (channel->destination.file.suffix)
  ------------------
  528|      4|		break;
  529|       |
  530|      2|	case ISC_LOG_TONULL:
  ------------------
  |  |   53|      2|#define ISC_LOG_TONULL	   1
  ------------------
  |  Branch (530:2): [True: 2, False: 6]
  ------------------
  531|       |		/* Nothing. */
  532|      2|		break;
  533|       |
  534|      0|	default:
  ------------------
  |  Branch (534:2): [True: 0, False: 8]
  ------------------
  535|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  536|      8|	}
  537|       |
  538|      8|	ISC_LIST_PREPEND(lcfg->channels, channel, link);
  ------------------
  |  |   79|      8|	do {                                                  \
  |  |   80|      8|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |   81|      8|		__ISC_LIST_PREPENDUNSAFE(list, elt, link);    \
  |  |  ------------------
  |  |  |  |   67|      8|	do {                                            \
  |  |  |  |   68|      8|		if ((list).head != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (68:7): [True: 6, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   69|      6|			(list).head->link.prev = (elt); \
  |  |  |  |   70|      6|		} else {                                \
  |  |  |  |   71|      2|			(list).tail = (elt);            \
  |  |  |  |   72|      2|		}                                       \
  |  |  |  |   73|      8|		(elt)->link.prev = NULL;                \
  |  |  |  |   74|      8|		(elt)->link.next = (list).head;         \
  |  |  |  |   75|      8|		(list).head = (elt);                    \
  |  |  |  |   76|      8|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (76:11): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      8|	} while (0)
  |  |  ------------------
  |  |  |  Branch (82:11): [Folded, False: 8]
  |  |  ------------------
  ------------------
  539|       |
  540|       |	/*
  541|       |	 * If default_stderr was redefined, make the default category
  542|       |	 * point to the new default_stderr.
  543|       |	 */
  544|      8|	if (strcmp(name, "default_stderr") == 0) {
  ------------------
  |  Branch (544:6): [True: 2, False: 6]
  ------------------
  545|      2|		default_channel.channel = channel;
  546|      2|	}
  547|      8|}
isc_log_write:
  612|  1.91k|	      const char *format, ...) {
  613|  1.91k|	va_list args;
  614|       |
  615|       |	/*
  616|       |	 * Contract checking is done in isc_log_doit().
  617|       |	 */
  618|       |
  619|  1.91k|	va_start(args, format);
  620|  1.91k|	isc_log_doit(category, module, level, format, args);
  621|       |	va_end(args);
  622|  1.91k|}
isc_log_wouldlog:
 1197|  1.91k|isc_log_wouldlog(int level) {
 1198|       |	/*
 1199|       |	 * Try to avoid locking the mutex for messages which can't
 1200|       |	 * possibly be logged to any channels -- primarily debugging
 1201|       |	 * messages that the debug level is not high enough to print.
 1202|       |	 *
 1203|       |	 * If the level is (mathematically) less than or equal to the
 1204|       |	 * highest_level, or if there is a dynamic channel and the level is
 1205|       |	 * less than or equal to the debug level, the main loop must be
 1206|       |	 * entered to see if the message should really be output.
 1207|       |	 */
 1208|  1.91k|	if (isc__lctx == NULL) {
  ------------------
  |  Branch (1208:6): [True: 0, False: 1.91k]
  ------------------
 1209|      0|		return false;
 1210|      0|	}
 1211|  1.91k|	if (forcelog) {
  ------------------
  |  Branch (1211:6): [True: 0, False: 1.91k]
  ------------------
 1212|      0|		return true;
 1213|      0|	}
 1214|       |
 1215|  1.91k|	int highest_level = atomic_load_acquire(&isc__lctx->highest_level);
  ------------------
  |  |   50|  1.91k|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  ------------------
 1216|  1.91k|	if (level <= highest_level) {
  ------------------
  |  Branch (1216:6): [True: 0, False: 1.91k]
  ------------------
 1217|      0|		return true;
 1218|      0|	}
 1219|  1.91k|	if (atomic_load_acquire(&isc__lctx->dynamic)) {
  ------------------
  |  |   50|  1.91k|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  |  |  ------------------
  |  |  |  Branch (50:32): [True: 0, False: 1.91k]
  |  |  ------------------
  ------------------
 1220|      0|		int debug_level = atomic_load_acquire(&isc__lctx->debug_level);
  ------------------
  |  |   50|      0|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  ------------------
 1221|      0|		if (level <= debug_level) {
  ------------------
  |  Branch (1221:7): [True: 0, False: 0]
  ------------------
 1222|      0|			return true;
 1223|      0|		}
 1224|      0|	}
 1225|       |
 1226|  1.91k|	return false;
 1227|  1.91k|}
isc__log_initialize:
 1532|      2|isc__log_initialize(void) {
 1533|      2|	REQUIRE(isc__lctx == NULL);
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1534|       |
 1535|      2|	isc_mem_t *mctx = NULL;
 1536|       |
 1537|      2|	isc_mem_create("log", &mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
 1538|      2|	isc_mem_setdebugging(mctx, 0);
 1539|       |
 1540|      2|	isc__lctx = isc_mem_get(mctx, sizeof(*isc__lctx));
  ------------------
  |  |  128|      2|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1541|      2|	*isc__lctx = (isc_log_t){
 1542|      2|		.magic = LCTX_MAGIC,
  ------------------
  |  |   40|      2|#define LCTX_MAGIC	    ISC_MAGIC('L', 'c', 't', 'x')
  |  |  ------------------
  |  |  |  |   31|      2|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
 1543|      2|		.mctx = mctx, /* implicit attach */
 1544|      2|	};
 1545|       |
 1546|      2|	isc_mutex_init(&isc__lctx->lock);
  ------------------
  |  |   68|      2|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|      2|	{                                                                 \
  |  |  |  |   80|      2|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|      2|	}
  |  |  ------------------
  ------------------
 1547|       |
 1548|       |	/* Create default logging configuration */
 1549|      2|	isc_logconfig_t *lcfg = NULL;
 1550|      2|	isc_logconfig_create(&lcfg);
 1551|       |
 1552|      2|	atomic_init(&isc__lctx->highest_level, lcfg->highest_level);
 1553|      2|	atomic_init(&isc__lctx->dynamic, lcfg->dynamic);
 1554|       |
 1555|      2|	isc__lctx->logconfig = lcfg;
 1556|      2|}
log.c:isc_log_doit:
 1231|  1.91k|	     const char *format, va_list args) {
 1232|  1.91k|	int syslog_level;
 1233|  1.91k|	const char *time_string;
 1234|  1.91k|	char local_time[64] = { 0 };
 1235|  1.91k|	char iso8601z_string[64] = { 0 };
 1236|  1.91k|	char iso8601l_string[64] = { 0 };
 1237|  1.91k|	char iso8601tz_string[64] = { 0 };
 1238|  1.91k|	char level_string[24] = { 0 };
 1239|  1.91k|	struct stat statbuf;
 1240|  1.91k|	bool matched = false;
 1241|  1.91k|	bool printtime, iso8601, utc, tzinfo, printtag, printcolon;
 1242|  1.91k|	bool printcategory, printmodule, printlevel, buffered;
 1243|  1.91k|	isc_logchannel_t *channel;
 1244|  1.91k|	isc_logchannellist_t *category_channels;
 1245|  1.91k|	int_fast32_t dlevel;
 1246|  1.91k|	isc_result_t result;
 1247|       |
 1248|  1.91k|	REQUIRE(isc__lctx == NULL || VALID_CONTEXT(isc__lctx));
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.91k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.91k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 1.91k]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1249|  1.91k|	REQUIRE(category > ISC_LOGCATEGORY_DEFAULT &&
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.91k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1250|  1.91k|		category < ISC_LOGCATEGORY_MAX);
 1251|  1.91k|	REQUIRE(module > ISC_LOGMODULE_DEFAULT && module < ISC_LOGMODULE_MAX);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.91k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1252|  1.91k|	REQUIRE(level != ISC_LOG_DYNAMIC);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1253|  1.91k|	REQUIRE(format != NULL);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1254|       |
 1255|  1.91k|	if (!isc_log_wouldlog(level)) {
  ------------------
  |  Branch (1255:6): [True: 1.91k, False: 0]
  ------------------
 1256|  1.91k|		return;
 1257|  1.91k|	}
 1258|       |
 1259|  1.91k|	rcu_read_lock();
 1260|      0|	LOCK(&isc__lctx->lock);
  ------------------
  |  |   26|      0|	{                                                                  \
  |  |   27|      0|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |   28|      0|				       __FILE__, __LINE__));               \
  |  |   29|      0|		isc_mutex_lock((lp));                                      \
  |  |  ------------------
  |  |  |  |   69|      0|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   85|      0|	{                                                         \
  |  |  |  |  |  |   86|      0|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |   87|      0|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|      0|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   30|      0|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |   31|      0|				       __FILE__, __LINE__));               \
  |  |   32|      0|	}
  ------------------
 1261|       |
 1262|      0|	isc__lctx->buffer[0] = '\0';
 1263|       |
 1264|      0|	isc_logconfig_t *lcfg = rcu_dereference(isc__lctx->logconfig);
 1265|      0|	if (lcfg == NULL) {
  ------------------
  |  Branch (1265:6): [True: 0, False: 0]
  ------------------
 1266|      0|		goto unlock;
 1267|      0|	}
 1268|       |
 1269|      0|	category_channels = ISC_LIST_HEAD(lcfg->channellists[category]);
  ------------------
  |  |   62|      0|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1270|       |
 1271|      0|	do {
 1272|       |		/*
 1273|       |		 * If the channel list end was reached and a match was
 1274|       |		 * made, everything is finished.
 1275|       |		 */
 1276|      0|		if (category_channels == NULL && matched) {
  ------------------
  |  Branch (1276:7): [True: 0, False: 0]
  |  Branch (1276:36): [True: 0, False: 0]
  ------------------
 1277|      0|			break;
 1278|      0|		}
 1279|       |
 1280|      0|		if (category_channels == NULL && !matched &&
  ------------------
  |  Branch (1280:7): [True: 0, False: 0]
  |  Branch (1280:36): [True: 0, False: 0]
  ------------------
 1281|      0|		    category_channels != ISC_LIST_HEAD(lcfg->channellists[0]))
  ------------------
  |  |   62|      0|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  |  Branch (1281:7): [True: 0, False: 0]
  ------------------
 1282|      0|		{
 1283|       |			/*
 1284|       |			 * No category/module pair was explicitly
 1285|       |			 * configured. Try the category named "default".
 1286|       |			 */
 1287|      0|			category_channels =
 1288|      0|				ISC_LIST_HEAD(lcfg->channellists[0]);
  ------------------
  |  |   62|      0|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1289|      0|		}
 1290|       |
 1291|      0|		if (category_channels == NULL && !matched) {
  ------------------
  |  Branch (1291:7): [True: 0, False: 0]
  |  Branch (1291:36): [True: 0, False: 0]
  ------------------
 1292|       |			/*
 1293|       |			 * No matching module was explicitly configured
 1294|       |			 * for the category named "default".  Use the
 1295|       |			 * internal default channel.
 1296|       |			 */
 1297|      0|			category_channels = &default_channel;
 1298|      0|		}
 1299|       |
 1300|      0|		if (category_channels->module != ISC_LOGMODULE_DEFAULT &&
  ------------------
  |  Branch (1300:7): [True: 0, False: 0]
  ------------------
 1301|      0|		    category_channels->module != module)
  ------------------
  |  Branch (1301:7): [True: 0, False: 0]
  ------------------
 1302|      0|		{
 1303|      0|			category_channels = ISC_LIST_NEXT(category_channels,
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
 1304|      0|							  link);
 1305|      0|			continue;
 1306|      0|		}
 1307|       |
 1308|      0|		matched = true;
 1309|       |
 1310|      0|		channel = category_channels->channel;
 1311|      0|		category_channels = ISC_LIST_NEXT(category_channels, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
 1312|       |
 1313|      0|		if (!forcelog) {
  ------------------
  |  Branch (1313:7): [True: 0, False: 0]
  ------------------
 1314|      0|			dlevel = atomic_load_acquire(&isc__lctx->debug_level);
  ------------------
  |  |   50|      0|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  ------------------
 1315|      0|			if (((channel->flags & ISC_LOG_DEBUGONLY) != 0) &&
  ------------------
  |  |   71|      0|#define ISC_LOG_DEBUGONLY     0x01000
  ------------------
  |  Branch (1315:8): [True: 0, False: 0]
  ------------------
 1316|      0|			    dlevel == 0)
  ------------------
  |  Branch (1316:8): [True: 0, False: 0]
  ------------------
 1317|      0|			{
 1318|      0|				continue;
 1319|      0|			}
 1320|       |
 1321|      0|			if (channel->level == ISC_LOG_DYNAMIC) {
  ------------------
  |  |   41|      0|#define ISC_LOG_DYNAMIC	 0
  ------------------
  |  Branch (1321:8): [True: 0, False: 0]
  ------------------
 1322|      0|				if (dlevel < level) {
  ------------------
  |  Branch (1322:9): [True: 0, False: 0]
  ------------------
 1323|      0|					continue;
 1324|      0|				}
 1325|      0|			} else if (channel->level < level) {
  ------------------
  |  Branch (1325:15): [True: 0, False: 0]
  ------------------
 1326|      0|				continue;
 1327|      0|			}
 1328|      0|		}
 1329|       |
 1330|      0|		if ((channel->flags & ISC_LOG_PRINTTIME) != 0 &&
  ------------------
  |  |   63|      0|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
  |  Branch (1330:7): [True: 0, False: 0]
  ------------------
 1331|      0|		    local_time[0] == '\0')
  ------------------
  |  Branch (1331:7): [True: 0, False: 0]
  ------------------
 1332|      0|		{
 1333|      0|			isc_time_t isctime;
 1334|       |
 1335|      0|			isctime = isc_time_now();
 1336|       |
 1337|      0|			isc_time_formattimestamp(&isctime, local_time,
 1338|      0|						 sizeof(local_time));
 1339|      0|			isc_time_formatISO8601ms(&isctime, iso8601z_string,
 1340|      0|						 sizeof(iso8601z_string));
 1341|      0|			isc_time_formatISO8601Lms(&isctime, iso8601l_string,
 1342|      0|						  sizeof(iso8601l_string));
 1343|      0|			isc_time_formatISO8601TZms(&isctime, iso8601tz_string,
 1344|      0|						   sizeof(iso8601tz_string));
 1345|      0|		}
 1346|       |
 1347|      0|		if ((channel->flags & ISC_LOG_PRINTLEVEL) != 0 &&
  ------------------
  |  |   64|      0|#define ISC_LOG_PRINTLEVEL    0x00002
  ------------------
  |  Branch (1347:7): [True: 0, False: 0]
  ------------------
 1348|      0|		    level_string[0] == '\0')
  ------------------
  |  Branch (1348:7): [True: 0, False: 0]
  ------------------
 1349|      0|		{
 1350|      0|			if (level < ISC_LOG_CRITICAL) {
  ------------------
  |  |   46|      0|#define ISC_LOG_CRITICAL (-5)
  ------------------
  |  Branch (1350:8): [True: 0, False: 0]
  ------------------
 1351|      0|				snprintf(level_string, sizeof(level_string),
 1352|      0|					 "level %d: ", level);
 1353|      0|			} else if (level > ISC_LOG_DYNAMIC) {
  ------------------
  |  |   41|      0|#define ISC_LOG_DYNAMIC	 0
  ------------------
  |  Branch (1353:15): [True: 0, False: 0]
  ------------------
 1354|      0|				snprintf(level_string, sizeof(level_string),
 1355|      0|					 "%s %d: ", log_level_strings[0],
 1356|      0|					 level);
 1357|      0|			} else {
 1358|      0|				snprintf(level_string, sizeof(level_string),
 1359|      0|					 "%s: ", log_level_strings[-level]);
 1360|      0|			}
 1361|      0|		}
 1362|       |
 1363|       |		/*
 1364|       |		 * Only format the message once.
 1365|       |		 */
 1366|      0|		if (isc__lctx->buffer[0] == '\0') {
  ------------------
  |  Branch (1366:7): [True: 0, False: 0]
  ------------------
 1367|      0|			(void)vsnprintf(isc__lctx->buffer,
 1368|      0|					sizeof(isc__lctx->buffer), format,
 1369|      0|					args);
 1370|      0|		}
 1371|       |
 1372|      0|		utc = ((channel->flags & ISC_LOG_UTC) != 0);
  ------------------
  |  |   74|      0|#define ISC_LOG_UTC	      0x20000 /* if PRINTTIME, use UTC */
  ------------------
 1373|      0|		tzinfo = ((channel->flags & ISC_LOG_TZINFO) != 0);
  ------------------
  |  |   75|      0|#define ISC_LOG_TZINFO	      0x40000 /* if PRINTTIME, output TZ info */
  ------------------
 1374|      0|		iso8601 = ((channel->flags & ISC_LOG_ISO8601) != 0);
  ------------------
  |  |   73|      0|#define ISC_LOG_ISO8601	      0x10000 /* if PRINTTIME, use ISO8601 */
  ------------------
 1375|      0|		printtime = ((channel->flags & ISC_LOG_PRINTTIME) != 0);
  ------------------
  |  |   63|      0|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
 1376|      0|		printtag = ((channel->flags &
  ------------------
  |  Branch (1376:15): [True: 0, False: 0]
  ------------------
 1377|      0|			     (ISC_LOG_PRINTTAG | ISC_LOG_PRINTPREFIX)) != 0 &&
  ------------------
  |  |   67|      0|#define ISC_LOG_PRINTTAG      0x00010 /* tag and ":" */
  ------------------
              			     (ISC_LOG_PRINTTAG | ISC_LOG_PRINTPREFIX)) != 0 &&
  ------------------
  |  |   68|      0|#define ISC_LOG_PRINTPREFIX   0x00020 /* tag only, no colon */
  ------------------
 1378|      0|			    lcfg->tag != NULL);
  ------------------
  |  Branch (1378:8): [True: 0, False: 0]
  ------------------
 1379|      0|		printcolon = ((channel->flags & ISC_LOG_PRINTTAG) != 0 &&
  ------------------
  |  |   67|      0|#define ISC_LOG_PRINTTAG      0x00010 /* tag and ":" */
  ------------------
  |  Branch (1379:17): [True: 0, False: 0]
  ------------------
 1380|      0|			      lcfg->tag != NULL);
  ------------------
  |  Branch (1380:10): [True: 0, False: 0]
  ------------------
 1381|      0|		printcategory = ((channel->flags & ISC_LOG_PRINTCATEGORY) != 0);
  ------------------
  |  |   65|      0|#define ISC_LOG_PRINTCATEGORY 0x00004
  ------------------
 1382|      0|		printmodule = ((channel->flags & ISC_LOG_PRINTMODULE) != 0);
  ------------------
  |  |   66|      0|#define ISC_LOG_PRINTMODULE   0x00008
  ------------------
 1383|      0|		printlevel = ((channel->flags & ISC_LOG_PRINTLEVEL) != 0);
  ------------------
  |  |   64|      0|#define ISC_LOG_PRINTLEVEL    0x00002
  ------------------
 1384|      0|		buffered = ((channel->flags & ISC_LOG_BUFFERED) != 0);
  ------------------
  |  |   70|      0|#define ISC_LOG_BUFFERED      0x00040
  ------------------
 1385|       |
 1386|      0|		if (printtime) {
  ------------------
  |  Branch (1386:7): [True: 0, False: 0]
  ------------------
 1387|      0|			if (iso8601) {
  ------------------
  |  Branch (1387:8): [True: 0, False: 0]
  ------------------
 1388|      0|				if (utc) {
  ------------------
  |  Branch (1388:9): [True: 0, False: 0]
  ------------------
 1389|      0|					time_string = iso8601z_string;
 1390|      0|				} else if (tzinfo) {
  ------------------
  |  Branch (1390:16): [True: 0, False: 0]
  ------------------
 1391|      0|					time_string = iso8601tz_string;
 1392|      0|				} else {
 1393|      0|					time_string = iso8601l_string;
 1394|      0|				}
 1395|      0|			} else {
 1396|      0|				time_string = local_time;
 1397|      0|			}
 1398|      0|		} else {
 1399|      0|			time_string = "";
 1400|      0|		}
 1401|       |
 1402|      0|		switch (channel->type) {
  ------------------
  |  Branch (1402:11): [True: 0, False: 0]
  ------------------
 1403|      0|		case ISC_LOG_TOFILE:
  ------------------
  |  |   55|      0|#define ISC_LOG_TOFILE	   3
  ------------------
  |  Branch (1403:3): [True: 0, False: 0]
  ------------------
 1404|      0|			if (FILE_MAXREACHED(channel)) {
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  |  |  ------------------
  |  |  |  Branch (320:34): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1405|       |				/*
 1406|       |				 * If the file can be rolled, OR
 1407|       |				 * If the file no longer exists, OR
 1408|       |				 * If the file is less than the maximum
 1409|       |				 * size, (such as if it had been renamed
 1410|       |				 * and a new one touched, or it was
 1411|       |				 * truncated in place)
 1412|       |				 * ... then close it to trigger
 1413|       |				 * reopening.
 1414|       |				 */
 1415|      0|				if (FILE_VERSIONS(channel) !=
  ------------------
  |  |  317|      0|#define FILE_VERSIONS(channel)	 (channel->destination.file.versions)
  ------------------
  |  Branch (1415:9): [True: 0, False: 0]
  ------------------
 1416|      0|					    ISC_LOG_ROLLNEVER ||
  ------------------
  |  |   87|      0|#define ISC_LOG_ROLLNEVER    (-2)
  ------------------
 1417|      0|				    (stat(FILE_NAME(channel), &statbuf) != 0 &&
  ------------------
  |  |  315|      0|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
  |  Branch (1417:10): [True: 0, False: 0]
  ------------------
 1418|      0|				     errno == ENOENT) ||
  ------------------
  |  Branch (1418:10): [True: 0, False: 0]
  ------------------
 1419|      0|				    statbuf.st_size < FILE_MAXSIZE(channel))
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  |  Branch (1419:9): [True: 0, False: 0]
  ------------------
 1420|      0|				{
 1421|      0|					if (FILE_STREAM(channel) != NULL) {
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  |  Branch (1421:10): [True: 0, False: 0]
  ------------------
 1422|      0|						(void)fclose(
 1423|      0|							FILE_STREAM(channel));
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1424|      0|						FILE_STREAM(channel) = NULL;
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1425|      0|					}
 1426|      0|					FILE_MAXREACHED(channel) = false;
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  ------------------
 1427|      0|				} else {
 1428|       |					/*
 1429|       |					 * Eh, skip it.
 1430|       |					 */
 1431|      0|					break;
 1432|      0|				}
 1433|      0|			}
 1434|       |
 1435|      0|			if (FILE_STREAM(channel) == NULL) {
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  |  Branch (1435:8): [True: 0, False: 0]
  ------------------
 1436|      0|				result = isc_log_open(channel);
 1437|      0|				if (result != ISC_R_SUCCESS &&
  ------------------
  |  Branch (1437:9): [True: 0, False: 0]
  ------------------
 1438|      0|				    result != ISC_R_MAXSIZE &&
  ------------------
  |  Branch (1438:9): [True: 0, False: 0]
  ------------------
 1439|      0|				    (channel->flags & ISC_LOG_OPENERR) == 0)
  ------------------
  |  |   72|      0|#define ISC_LOG_OPENERR	      0x08000 /* internal */
  ------------------
  |  Branch (1439:9): [True: 0, False: 0]
  ------------------
 1440|      0|				{
 1441|      0|					syslog(LOG_ERR,
 1442|      0|					       "isc_log_open '%s' "
 1443|      0|					       "failed: %s",
 1444|      0|					       FILE_NAME(channel),
  ------------------
  |  |  315|      0|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
 1445|      0|					       isc_result_totext(result));
 1446|      0|					channel->flags |= ISC_LOG_OPENERR;
  ------------------
  |  |   72|      0|#define ISC_LOG_OPENERR	      0x08000 /* internal */
  ------------------
 1447|      0|				}
 1448|      0|				if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1448:9): [True: 0, False: 0]
  ------------------
 1449|      0|					break;
 1450|      0|				}
 1451|      0|				channel->flags &= ~ISC_LOG_OPENERR;
  ------------------
  |  |   72|      0|#define ISC_LOG_OPENERR	      0x08000 /* internal */
  ------------------
 1452|      0|			}
 1453|      0|			FALLTHROUGH;
  ------------------
  |  |  101|      0|#define FALLTHROUGH [[fallthrough]]
  ------------------
 1454|       |
 1455|      0|		case ISC_LOG_TOFILEDESC:
  ------------------
  |  |   56|      0|#define ISC_LOG_TOFILEDESC 4
  ------------------
  |  Branch (1455:3): [True: 0, False: 0]
  ------------------
 1456|      0|			fprintf(FILE_STREAM(channel), "%s%s%s%s%s%s%s%s%s%s\n",
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1457|      0|				printtime ? time_string : "",
  ------------------
  |  Branch (1457:5): [True: 0, False: 0]
  ------------------
 1458|      0|				printtime ? " " : "", printtag ? lcfg->tag : "",
  ------------------
  |  Branch (1458:5): [True: 0, False: 0]
  |  Branch (1458:27): [True: 0, False: 0]
  ------------------
 1459|      0|				printcolon ? ": " : "",
  ------------------
  |  Branch (1459:5): [True: 0, False: 0]
  ------------------
 1460|      0|				printcategory ? categories_description[category]
  ------------------
  |  Branch (1460:5): [True: 0, False: 0]
  ------------------
 1461|      0|					      : "",
 1462|      0|				printcategory ? ": " : "",
  ------------------
  |  Branch (1462:5): [True: 0, False: 0]
  ------------------
 1463|      0|				printmodule ? modules_description[module] : "",
  ------------------
  |  Branch (1463:5): [True: 0, False: 0]
  ------------------
 1464|      0|				printmodule ? ": " : "",
  ------------------
  |  Branch (1464:5): [True: 0, False: 0]
  ------------------
 1465|      0|				printlevel ? level_string : "",
  ------------------
  |  Branch (1465:5): [True: 0, False: 0]
  ------------------
 1466|      0|				isc__lctx->buffer);
 1467|       |
 1468|      0|			if (!buffered) {
  ------------------
  |  Branch (1468:8): [True: 0, False: 0]
  ------------------
 1469|      0|				fflush(FILE_STREAM(channel));
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1470|      0|			}
 1471|       |
 1472|       |			/*
 1473|       |			 * If the file now exceeds its maximum size
 1474|       |			 * threshold, note it so that it will not be
 1475|       |			 * logged to any more.
 1476|       |			 */
 1477|      0|			if (FILE_MAXSIZE(channel) > 0) {
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  |  Branch (1477:8): [True: 0, False: 0]
  ------------------
 1478|      0|				INSIST(channel->type == ISC_LOG_TOFILE);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1479|       |
 1480|       |				/* XXXDCL NT fstat/fileno */
 1481|       |				/* XXXDCL complain if fstat fails? */
 1482|      0|				if (fstat(fileno(FILE_STREAM(channel)),
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  |  Branch (1482:9): [True: 0, False: 0]
  ------------------
 1483|      0|					  &statbuf) >= 0 &&
 1484|      0|				    statbuf.st_size > FILE_MAXSIZE(channel))
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  |  Branch (1484:9): [True: 0, False: 0]
  ------------------
 1485|      0|				{
 1486|      0|					FILE_MAXREACHED(channel) = true;
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  ------------------
 1487|      0|				}
 1488|      0|			}
 1489|       |
 1490|      0|			break;
 1491|       |
 1492|      0|		case ISC_LOG_TOSYSLOG:
  ------------------
  |  |   54|      0|#define ISC_LOG_TOSYSLOG   2
  ------------------
  |  Branch (1492:3): [True: 0, False: 0]
  ------------------
 1493|      0|			if (level > 0) {
  ------------------
  |  Branch (1493:8): [True: 0, False: 0]
  ------------------
 1494|      0|				syslog_level = LOG_DEBUG;
 1495|      0|			} else if (level < ISC_LOG_CRITICAL) {
  ------------------
  |  |   46|      0|#define ISC_LOG_CRITICAL (-5)
  ------------------
  |  Branch (1495:15): [True: 0, False: 0]
  ------------------
 1496|      0|				syslog_level = LOG_CRIT;
 1497|      0|			} else {
 1498|      0|				syslog_level = syslog_map[-level];
 1499|      0|			}
 1500|       |
 1501|      0|			(void)syslog(
 1502|      0|				FACILITY(channel) | syslog_level,
  ------------------
  |  |  314|      0|#define FACILITY(channel)	 (channel->destination.facility)
  ------------------
 1503|      0|				"%s%s%s%s%s%s%s%s%s%s",
 1504|      0|				printtime ? time_string : "",
  ------------------
  |  Branch (1504:5): [True: 0, False: 0]
  ------------------
 1505|      0|				printtime ? " " : "", printtag ? lcfg->tag : "",
  ------------------
  |  Branch (1505:5): [True: 0, False: 0]
  |  Branch (1505:27): [True: 0, False: 0]
  ------------------
 1506|      0|				printcolon ? ": " : "",
  ------------------
  |  Branch (1506:5): [True: 0, False: 0]
  ------------------
 1507|      0|				printcategory ? categories_description[category]
  ------------------
  |  Branch (1507:5): [True: 0, False: 0]
  ------------------
 1508|      0|					      : "",
 1509|      0|				printcategory ? ": " : "",
  ------------------
  |  Branch (1509:5): [True: 0, False: 0]
  ------------------
 1510|      0|				printmodule ? modules_description[module] : "",
  ------------------
  |  Branch (1510:5): [True: 0, False: 0]
  ------------------
 1511|      0|				printmodule ? ": " : "",
  ------------------
  |  Branch (1511:5): [True: 0, False: 0]
  ------------------
 1512|      0|				printlevel ? level_string : "",
  ------------------
  |  Branch (1512:5): [True: 0, False: 0]
  ------------------
 1513|      0|				isc__lctx->buffer);
 1514|      0|			break;
 1515|       |
 1516|      0|		case ISC_LOG_TONULL:
  ------------------
  |  |   53|      0|#define ISC_LOG_TONULL	   1
  ------------------
  |  Branch (1516:3): [True: 0, False: 0]
  ------------------
 1517|      0|			break;
 1518|      0|		}
 1519|      0|	} while (1);
  ------------------
  |  Branch (1519:11): [True: 0, Folded]
  ------------------
 1520|       |
 1521|      0|unlock:
 1522|      0|	UNLOCK(&isc__lctx->lock);
  ------------------
  |  |   34|      0|	{                                                                   \
  |  |   35|      0|		isc_mutex_unlock((lp));                                     \
  |  |  ------------------
  |  |  |  |   70|      0|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   91|      0|	{                                                           \
  |  |  |  |  |  |   92|      0|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |   93|      0|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|      0|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   94|      0|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      0|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |   37|      0|				       __FILE__, __LINE__));                \
  |  |   38|      0|	}
  ------------------
 1523|       |	rcu_read_unlock();
 1524|      0|}

isc__mem_initialize:
  505|      2|isc__mem_initialize(void) {
  506|       |/*
  507|       | * Check if the values copied from jemalloc still match
  508|       | */
  509|       |#ifdef JEMALLOC_API_SUPPORTED
  510|       |	RUNTIME_CHECK(ISC__MEM_ZERO == MALLOCX_ZERO);
  511|       |
  512|       |	/*
  513|       |	 * ignore errors — volumetric-based purge in mem_put handles the rest
  514|       |	 * regardless
  515|       |	 */
  516|       |
  517|       |	(void)mallctl("background_thread", NULL, NULL, &(bool){ true },
  518|       |		      sizeof(bool));
  519|       |
  520|       |	(void)mallctl("arenas.dirty_decay_ms", NULL, NULL,
  521|       |		      &default_dirty_decay_ms, sizeof(default_dirty_decay_ms));
  522|       |
  523|       |	(void)mallctl("arena." STRINGIFY(MALLCTL_ARENAS_ALL) ".dirty_decay_ms",
  524|       |		      NULL, NULL, &default_dirty_decay_ms,
  525|       |		      sizeof(default_dirty_decay_ms));
  526|       |
  527|       |#endif /* JEMALLOC_API_SUPPORTED */
  528|       |
  529|      2|	isc_mutex_init(&contextslock);
  ------------------
  |  |   68|      2|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|      2|	{                                                                 \
  |  |  |  |   80|      2|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|      2|	}
  |  |  ------------------
  ------------------
  530|      2|	ISC_LIST_INIT(contexts);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
  531|       |
  532|      2|	if (debugging_enabled("ISC_MEM_DEBUGTRACE")) {
  ------------------
  |  Branch (532:6): [True: 0, False: 2]
  ------------------
  533|      0|		mem_debugging |= ISC_MEM_DEBUGTRACE;
  ------------------
  |  |   39|      0|#define ISC_MEM_DEBUGTRACE  0x00000001U
  ------------------
  534|      0|	}
  535|       |
  536|      2|	if (debugging_enabled("ISC_MEM_DEBUGRECORD")) {
  ------------------
  |  Branch (536:6): [True: 0, False: 2]
  ------------------
  537|      0|		mem_debugging |= ISC_MEM_DEBUGRECORD;
  ------------------
  |  |   40|      0|#define ISC_MEM_DEBUGRECORD 0x00000002U
  ------------------
  538|      0|	}
  539|       |
  540|      2|	if (debugging_enabled("ISC_MEM_DEBUGUSAGE")) {
  ------------------
  |  Branch (540:6): [True: 0, False: 2]
  ------------------
  541|      0|		mem_debugging |= ISC_MEM_DEBUGUSAGE;
  ------------------
  |  |   41|      0|#define ISC_MEM_DEBUGUSAGE  0x00000004U
  ------------------
  542|      0|	}
  543|       |
  544|      2|	isc_mem_create("default", &isc_g_mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
  545|      2|}
isc_mem_setdebugging:
  567|      4|isc_mem_setdebugging(isc_mem_t *ctx, unsigned int debugging) {
  568|      4|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  569|      4|	REQUIRE(isc_mem_inuse(ctx) == 0);
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  570|       |
  571|      4|	ctx->debugging = debugging;
  572|      4|}
isc__mem_putanddetach:
  730|  94.8k|		      int flags FLARG) {
  731|  94.8k|	REQUIRE(ctxp != NULL && VALID_CONTEXT(*ctxp));
  ------------------
  |  |  198|  94.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   379k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 94.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 94.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 94.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  94.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  732|  94.8k|	REQUIRE(ptr != NULL);
  ------------------
  |  |  198|  94.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  94.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 94.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  94.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  733|  94.8k|	REQUIRE(size != 0);
  ------------------
  |  |  198|  94.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  94.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 94.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  94.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  734|       |
  735|  94.8k|	isc_mem_t *ctx = *ctxp;
  736|  94.8k|	*ctxp = NULL;
  737|       |
  738|  94.8k|	isc__mem_put(ctx, ptr, size, flags FLARG_PASS);
  739|       |#if ISC_MEM_TRACE
  740|       |	isc_mem__detach(&ctx, func, file, line);
  741|       |#else
  742|  94.8k|	isc_mem_detach(&ctx);
  743|  94.8k|#endif
  744|  94.8k|}
isc__mem_get:
  747|   360k|isc__mem_get(isc_mem_t *ctx, size_t size, int flags FLARG) {
  748|   360k|	void *ptr = NULL;
  749|       |
  750|   360k|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|   360k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   720k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 360k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 360k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   360k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  751|       |
  752|   360k|	ptr = mem_get(ctx, size, flags);
  753|       |
  754|   360k|	mem_getstats(ctx, size);
  755|   360k|	ADD_TRACE(ctx, ptr, size, func, file, line);
  756|       |
  757|   360k|	return ptr;
  758|   360k|}
isc__mem_put:
  761|   360k|isc__mem_put(isc_mem_t *ctx, void *ptr, size_t size, int flags FLARG) {
  762|   360k|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|   360k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   720k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 360k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 360k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   360k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  763|       |
  764|   360k|	DELETE_TRACE(ctx, ptr, size, func, file, line);
  765|       |
  766|   360k|	mem_putstats(ctx, size);
  767|   360k|	mem_put(ctx, ptr, size, flags);
  768|   360k|}
isc__mem_allocate:
  839|      8|isc__mem_allocate(isc_mem_t *ctx, size_t size, int flags FLARG) {
  840|      8|	void *ptr = NULL;
  841|       |
  842|      8|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     16|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  843|       |
  844|      8|	ptr = mem_get(ctx, size, flags);
  845|       |
  846|       |	/* Recalculate the real allocated size */
  847|      8|	size = sallocx(ptr, flags | ctx->jemalloc_flags);
  848|       |
  849|      8|	mem_getstats(ctx, size);
  850|      8|	ADD_TRACE(ctx, ptr, size, func, file, line);
  851|       |
  852|      8|	return ptr;
  853|      8|}
isc__mem_strdup:
  947|      8|isc__mem_strdup(isc_mem_t *mctx, const char *s FLARG) {
  948|      8|	size_t len;
  949|      8|	char *ns = NULL;
  950|       |
  951|      8|	REQUIRE(VALID_CONTEXT(mctx));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     16|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  952|      8|	REQUIRE(s != NULL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  953|       |
  954|      8|	len = strlen(s) + 1;
  955|       |
  956|      8|	ns = isc__mem_allocate(mctx, len, 0 FLARG_PASS);
  957|       |
  958|      8|	strlcpy(ns, s, len);
  959|       |
  960|      8|	return ns;
  961|      8|}
isc_mem_setdestroycheck:
  964|      2|isc_mem_setdestroycheck(isc_mem_t *ctx, bool flag) {
  965|      2|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  966|       |
  967|      2|	MCTXLOCK(ctx);
  ------------------
  |  |   66|      2|#define MCTXLOCK(m)   LOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   26|      2|	{                                                                  \
  |  |  |  |   27|      2|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |  |  |   28|      2|				       __FILE__, __LINE__));               \
  |  |  |  |   29|      2|		isc_mutex_lock((lp));                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|      2|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   85|      2|	{                                                         \
  |  |  |  |  |  |  |  |   86|      2|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |  |  |   87|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|      2|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   30|      2|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |  |  |   31|      2|				       __FILE__, __LINE__));               \
  |  |  |  |   32|      2|	}
  |  |  ------------------
  ------------------
  968|       |
  969|      2|	ctx->checkfree = flag;
  970|       |
  971|      2|	MCTXUNLOCK(ctx);
  ------------------
  |  |   67|      2|#define MCTXUNLOCK(m) UNLOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   34|      2|	{                                                                   \
  |  |  |  |   35|      2|		isc_mutex_unlock((lp));                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  |   70|      2|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   91|      2|	{                                                           \
  |  |  |  |  |  |  |  |   92|      2|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |  |  |   93|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   94|      2|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      2|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |  |  |   37|      2|				       __FILE__, __LINE__));                \
  |  |  |  |   38|      2|	}
  |  |  ------------------
  ------------------
  972|      2|}
isc_mem_inuse:
  975|      4|isc_mem_inuse(isc_mem_t *ctx) {
  976|      4|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  977|       |
  978|      4|	int_fast64_t inuse = 0;
  979|       |
  980|      8|	for (ssize_t i = -1; i < isc_tid_count(); i++) {
  ------------------
  |  Branch (980:23): [True: 4, False: 4]
  ------------------
  981|      4|		inuse += atomic_load_relaxed(&ctx->stat[i].inuse);
  ------------------
  |  |   28|      4|#define atomic_load_relaxed(o) atomic_load_explicit((o), memory_order_relaxed)
  ------------------
  982|      4|	}
  983|      4|	INSIST(inuse >= 0);
  ------------------
  |  |  202|      4|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      4|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      4|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  984|       |
  985|      4|	return (size_t)inuse;
  986|      4|}
isc__mempool_create:
 1051|  43.9k|		    const char *name, isc_mempool_t **restrict mpctxp FLARG) {
 1052|  43.9k|	isc_mempool_t *restrict mpctx = NULL;
 1053|  43.9k|	size_t size = element_size;
 1054|       |
 1055|  43.9k|	REQUIRE(VALID_CONTEXT(mctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1056|  43.9k|	REQUIRE(size > 0U);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1057|  43.9k|	REQUIRE(mpctxp != NULL && *mpctxp == NULL);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1058|  43.9k|	REQUIRE(name != NULL);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1059|       |
 1060|       |	/*
 1061|       |	 * Mempools are stored as a linked list of element.
 1062|       |	 */
 1063|  43.9k|	if (size < sizeof(element)) {
  ------------------
  |  Branch (1063:6): [True: 0, False: 43.9k]
  ------------------
 1064|      0|		size = sizeof(element);
 1065|      0|	}
 1066|       |
 1067|       |	/*
 1068|       |	 * Allocate space for this pool, initialize values, and if all
 1069|       |	 * works well, attach to the memory context.
 1070|       |	 */
 1071|  43.9k|	mpctx = isc_mem_get(mctx, sizeof(isc_mempool_t));
  ------------------
  |  |  128|  43.9k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1072|       |
 1073|  43.9k|	*mpctx = (isc_mempool_t){
 1074|  43.9k|		.size = size,
 1075|  43.9k|		.freemax = 1,
 1076|  43.9k|		.fillcount = 1,
 1077|  43.9k|		.name = strdup(name),
 1078|  43.9k|	};
 1079|       |
 1080|       |#if ISC_MEM_TRACKLINES
 1081|       |	if ((mctx->debugging & ISC_MEM_DEBUGTRACE) != 0) {
 1082|       |		fprintf(stderr,
 1083|       |			"create pool %p func %s file %s line %u mctx %p\n",
 1084|       |			mpctx, func, file, line, mctx);
 1085|       |	}
 1086|       |#endif /* ISC_MEM_TRACKLINES */
 1087|       |
 1088|  43.9k|	isc_mem_attach(mctx, &mpctx->mctx);
 1089|  43.9k|	mpctx->magic = MEMPOOL_MAGIC;
  ------------------
  |  |  158|  43.9k|#define MEMPOOL_MAGIC	 ISC_MAGIC('M', 'E', 'M', 'p')
  |  |  ------------------
  |  |  |  |   31|  43.9k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
 1090|       |
 1091|  43.9k|	*mpctxp = (isc_mempool_t *)mpctx;
 1092|       |
 1093|  43.9k|	MCTXLOCK(mctx);
  ------------------
  |  |   66|  43.9k|#define MCTXLOCK(m)   LOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   26|  43.9k|	{                                                                  \
  |  |  |  |   27|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |  |  |   28|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   29|  43.9k|		isc_mutex_lock((lp));                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|  43.9k|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   85|  43.9k|	{                                                         \
  |  |  |  |  |  |  |  |   86|  43.9k|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |  |  |   87|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   30|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |  |  |   31|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   32|  43.9k|	}
  |  |  ------------------
  ------------------
 1094|  43.9k|	ISC_LIST_INITANDAPPEND(mctx->pools, mpctx, link);
  ------------------
  |  |  106|  43.9k|	__ISC_LIST_APPENDUNSAFE(list, elt, link)
  |  |  ------------------
  |  |  |  |   88|  43.9k|	do {                                            \
  |  |  |  |   89|  43.9k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 21.9k, False: 21.9k]
  |  |  |  |  ------------------
  |  |  |  |   90|  21.9k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  21.9k|		} else {                                \
  |  |  |  |   92|  21.9k|			(list).head = (elt);            \
  |  |  |  |   93|  21.9k|		}                                       \
  |  |  |  |   94|  43.9k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  43.9k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  43.9k|		(list).tail = (elt);                    \
  |  |  |  |   97|  43.9k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 43.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1095|  43.9k|	mctx->poolcnt++;
 1096|  43.9k|	MCTXUNLOCK(mctx);
  ------------------
  |  |   67|  43.9k|#define MCTXUNLOCK(m) UNLOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   34|  43.9k|	{                                                                   \
  |  |  |  |   35|  43.9k|		isc_mutex_unlock((lp));                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  |   70|  43.9k|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   91|  43.9k|	{                                                           \
  |  |  |  |  |  |  |  |   92|  43.9k|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |  |  |   93|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   94|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |  |  |   37|  43.9k|				       __FILE__, __LINE__));                \
  |  |  |  |   38|  43.9k|	}
  |  |  ------------------
  ------------------
 1097|  43.9k|}
isc__mempool_destroy:
 1100|  43.9k|isc__mempool_destroy(isc_mempool_t **restrict mpctxp FLARG) {
 1101|  43.9k|	isc_mempool_t *restrict mpctx = NULL;
 1102|  43.9k|	isc_mem_t *mctx = NULL;
 1103|  43.9k|	element *restrict item = NULL;
 1104|       |
 1105|  43.9k|	REQUIRE(mpctxp != NULL);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1106|  43.9k|	REQUIRE(VALID_MEMPOOL(*mpctxp));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1107|       |
 1108|  43.9k|	mpctx = *mpctxp;
 1109|  43.9k|	*mpctxp = NULL;
 1110|       |
 1111|  43.9k|	mctx = mpctx->mctx;
 1112|       |
 1113|       |#if ISC_MEM_TRACKLINES
 1114|       |	if ((mctx->debugging & ISC_MEM_DEBUGTRACE) != 0) {
 1115|       |		fprintf(stderr,
 1116|       |			"destroy pool %p func %s file %s line %u mctx %p\n",
 1117|       |			mpctx, func, file, line, mctx);
 1118|       |	}
 1119|       |#endif
 1120|       |
 1121|  43.9k|	if (mpctx->allocated > 0) {
  ------------------
  |  Branch (1121:6): [True: 0, False: 43.9k]
  ------------------
 1122|      0|		UNEXPECTED_ERROR("mempool %s leaked memory", mpctx->name);
  ------------------
  |  |  217|      0|	isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
 1123|      0|	}
 1124|  43.9k|	REQUIRE(mpctx->allocated == 0);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1125|       |
 1126|       |	/*
 1127|       |	 * Return any items on the free list
 1128|       |	 */
 1129|  42.8M|	while (mpctx->items != NULL) {
  ------------------
  |  Branch (1129:9): [True: 42.8M, False: 43.9k]
  ------------------
 1130|  42.8M|		INSIST(mpctx->freecount > 0);
  ------------------
  |  |  202|  42.8M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  42.8M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 42.8M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  42.8M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1131|  42.8M|		mpctx->freecount--;
 1132|       |
 1133|  42.8M|		item = mpctx->items;
 1134|  42.8M|		mpctx->items = item->next;
 1135|       |
 1136|  42.8M|		mem_putstats(mctx, mpctx->size);
 1137|  42.8M|		mem_put(mctx, item, mpctx->size, 0);
 1138|  42.8M|	}
 1139|       |
 1140|       |	/*
 1141|       |	 * Remove our linked list entry from the memory context.
 1142|       |	 */
 1143|  43.9k|	MCTXLOCK(mctx);
  ------------------
  |  |   66|  43.9k|#define MCTXLOCK(m)   LOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   26|  43.9k|	{                                                                  \
  |  |  |  |   27|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |  |  |   28|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   29|  43.9k|		isc_mutex_lock((lp));                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|  43.9k|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   85|  43.9k|	{                                                         \
  |  |  |  |  |  |  |  |   86|  43.9k|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |  |  |   87|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   30|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |  |  |   31|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   32|  43.9k|	}
  |  |  ------------------
  ------------------
 1144|  43.9k|	ISC_LIST_UNLINK(mctx->pools, mpctx, link);
  ------------------
  |  |  137|  43.9k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  43.9k|	do {                                                         \
  |  |  |  |  133|  43.9k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  43.9k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  43.9k|	do {                                                            \
  |  |  |  |  |  |  110|  43.9k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 43.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  43.9k|		} else {                                                \
  |  |  |  |  |  |  113|  43.9k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  43.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 43.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  43.9k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  43.9k|		}                                                       \
  |  |  |  |  |  |  116|  43.9k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 21.9k, False: 21.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|  21.9k|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  21.9k|		} else {                                                \
  |  |  |  |  |  |  119|  21.9k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 21.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  21.9k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  21.9k|		}                                                       \
  |  |  |  |  |  |  122|  43.9k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  43.9k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  43.9k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  43.9k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  43.9k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  43.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 43.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  43.9k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  43.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 43.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  43.9k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 43.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  43.9k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 43.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1145|  43.9k|	mctx->poolcnt--;
 1146|  43.9k|	MCTXUNLOCK(mctx);
  ------------------
  |  |   67|  43.9k|#define MCTXUNLOCK(m) UNLOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   34|  43.9k|	{                                                                   \
  |  |  |  |   35|  43.9k|		isc_mutex_unlock((lp));                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  |   70|  43.9k|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   91|  43.9k|	{                                                           \
  |  |  |  |  |  |  |  |   92|  43.9k|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |  |  |   93|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   94|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |  |  |   37|  43.9k|				       __FILE__, __LINE__));                \
  |  |  |  |   38|  43.9k|	}
  |  |  ------------------
  ------------------
 1147|       |
 1148|  43.9k|	free(mpctx->name);
 1149|       |
 1150|  43.9k|	mpctx->magic = 0;
 1151|       |
 1152|       |	isc_mem_putanddetach(&mpctx->mctx, mpctx, sizeof(isc_mempool_t));
  ------------------
  |  |  159|  43.9k|	do {                                                               \
  |  |  160|  43.9k|		isc__mem_putanddetach((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  161|  43.9k|		(p) = NULL;                                                \
  |  |  162|  43.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (162:11): [Folded, False: 43.9k]
  |  |  ------------------
  ------------------
 1153|  43.9k|}
isc__mempool_get:
 1156|   930k|isc__mempool_get(isc_mempool_t *restrict mpctx FLARG) {
 1157|   930k|	element *restrict item = NULL;
 1158|       |
 1159|   930k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|   930k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.86M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 930k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 930k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   930k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1160|       |
 1161|   930k|	mpctx->allocated++;
 1162|       |
 1163|   930k|	if (mpctx->items == NULL) {
  ------------------
  |  Branch (1163:6): [True: 41.8k, False: 888k]
  ------------------
 1164|  41.8k|		isc_mem_t *mctx = mpctx->mctx;
 1165|  41.8k|#if !__SANITIZE_ADDRESS__
 1166|  41.8k|		const size_t fillcount = mpctx->fillcount;
 1167|       |#else
 1168|       |		const size_t fillcount = 1;
 1169|       |#endif
 1170|       |		/*
 1171|       |		 * We need to dip into the well.  Fill up our free list.
 1172|       |		 */
 1173|  42.9M|		for (size_t i = 0; i < fillcount; i++) {
  ------------------
  |  Branch (1173:22): [True: 42.8M, False: 41.8k]
  ------------------
 1174|  42.8M|			item = mem_get(mctx, mpctx->size, 0);
 1175|  42.8M|			mem_getstats(mctx, mpctx->size);
 1176|  42.8M|			item->next = mpctx->items;
 1177|  42.8M|			mpctx->items = item;
 1178|  42.8M|			mpctx->freecount++;
 1179|  42.8M|		}
 1180|  41.8k|	}
 1181|       |
 1182|   930k|	INSIST(mpctx->items != NULL);
  ------------------
  |  |  202|   930k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   930k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 930k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   930k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1183|   930k|	item = mpctx->items;
 1184|       |
 1185|   930k|	mpctx->items = item->next;
 1186|       |
 1187|   930k|	INSIST(mpctx->freecount > 0);
  ------------------
  |  |  202|   930k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   930k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 930k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   930k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1188|   930k|	mpctx->freecount--;
 1189|   930k|	mpctx->gets++;
 1190|       |
 1191|   930k|	ADD_TRACE(mpctx->mctx, item, mpctx->size, func, file, line);
 1192|       |
 1193|   930k|	return item;
 1194|   930k|}
isc__mempool_put:
 1198|   930k|isc__mempool_put(isc_mempool_t *restrict mpctx, void *mem FLARG) {
 1199|   930k|	element *restrict item = NULL;
 1200|       |
 1201|   930k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|   930k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.86M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 930k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 930k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   930k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1202|   930k|	REQUIRE(mem != NULL);
  ------------------
  |  |  198|   930k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   930k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 930k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   930k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1203|       |
 1204|   930k|	isc_mem_t *mctx = mpctx->mctx;
 1205|   930k|	const size_t freecount = mpctx->freecount;
 1206|   930k|#if !__SANITIZE_ADDRESS__
 1207|   930k|	const size_t freemax = mpctx->freemax;
 1208|       |#else
 1209|       |	const size_t freemax = 0;
 1210|       |#endif
 1211|       |
 1212|   930k|	INSIST(mpctx->allocated > 0);
  ------------------
  |  |  202|   930k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   930k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 930k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   930k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1213|   930k|	mpctx->allocated--;
 1214|       |
 1215|   930k|	DELETE_TRACE(mctx, mem, mpctx->size, func, file, line);
 1216|       |
 1217|       |	/*
 1218|       |	 * If our free list is full, return this to the mctx directly.
 1219|       |	 */
 1220|   930k|	if (freecount >= freemax) {
  ------------------
  |  Branch (1220:6): [True: 45.0k, False: 885k]
  ------------------
 1221|  45.0k|		mem_putstats(mctx, mpctx->size);
 1222|  45.0k|		mem_put(mctx, mem, mpctx->size, 0);
 1223|  45.0k|		return;
 1224|  45.0k|	}
 1225|       |
 1226|       |	/*
 1227|       |	 * Otherwise, attach it to our free list and bump the counter.
 1228|       |	 */
 1229|   885k|	item = (element *)mem;
 1230|   885k|	item->next = mpctx->items;
 1231|   885k|	mpctx->items = item;
 1232|   885k|	mpctx->freecount++;
 1233|   885k|}
isc_mempool_setfreemax:
 1241|  43.9k|		       const unsigned int limit) {
 1242|  43.9k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1243|  43.9k|	mpctx->freemax = limit;
 1244|  43.9k|}
isc_mempool_getallocated:
 1261|  43.9k|isc_mempool_getallocated(isc_mempool_t *restrict mpctx) {
 1262|  43.9k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1263|       |
 1264|  43.9k|	return mpctx->allocated;
 1265|  43.9k|}
isc_mempool_setfillcount:
 1269|  43.9k|			 unsigned int const limit) {
 1270|  43.9k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1271|  43.9k|	REQUIRE(limit > 0);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1272|       |
 1273|  43.9k|	mpctx->fillcount = limit;
 1274|  43.9k|}
isc__mem_create:
 1536|     10|isc__mem_create(const char *name, isc_mem_t **mctxp FLARG) {
 1537|     10|	mem_create(name, mctxp, mem_debugging, 0);
 1538|       |#if ISC_MEM_TRACKLINES
 1539|       |	if ((mem_debugging & ISC_MEM_DEBUGTRACE) != 0) {
 1540|       |		fprintf(stderr, "create mctx %p func %s file %s line %u\n",
 1541|       |			*mctxp, func, file, line);
 1542|       |	}
 1543|       |#endif /* ISC_MEM_TRACKLINES */
 1544|     10|}
mem.c:debugging_enabled:
  488|      6|debugging_enabled(const char *name) {
  489|      6|	char env_buf[256];
  490|      6|	size_t env_size = sizeof(env_buf);
  491|       |
  492|      6|	int r = uv_os_getenv(name, env_buf, &env_size);
  493|      6|	switch (r) {
  494|      0|	case 0:
  ------------------
  |  Branch (494:2): [True: 0, False: 6]
  ------------------
  495|      0|		return true;
  496|      6|	case UV_ENOENT:
  ------------------
  |  Branch (496:2): [True: 6, False: 0]
  ------------------
  497|      6|		return false;
  498|      0|	default:
  ------------------
  |  Branch (498:2): [True: 0, False: 6]
  ------------------
  499|      0|		UV_RUNTIME_CHECK(uv_os_getenv, r);
  ------------------
  |  |   50|      0|	if (ret != 0) {                                                  \
  |  |  ------------------
  |  |  |  Branch (50:6): [True: 0, False: 0]
  |  |  ------------------
  |  |   51|      0|		FATAL_ERROR("%s failed: %s\n", #func, uv_strerror(ret)); \
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |   52|      0|	}
  ------------------
  500|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  501|      6|	}
  502|      6|}
mem.c:mem_get:
  395|  43.2M|mem_get(isc_mem_t *ctx, size_t size, int flags) {
  396|  43.2M|	ADJUST_ZERO_ALLOCATION_SIZE(size);
  ------------------
  |  |  387|  43.2M|	if (s == 0) {                     \
  |  |  ------------------
  |  |  |  Branch (387:6): [True: 0, False: 43.2M]
  |  |  ------------------
  |  |  388|      0|		s = ZERO_ALLOCATION_SIZE; \
  |  |  ------------------
  |  |  |  |   83|      0|#define ZERO_ALLOCATION_SIZE sizeof(void *)
  |  |  ------------------
  |  |  389|      0|	}
  ------------------
  397|       |
  398|  43.2M|	void *ptr = mallocx(size, flags | ctx->jemalloc_flags);
  399|  43.2M|	CHECK_OOM(ptr, size);
  ------------------
  |  |  241|  43.2M|#define CHECK_OOM(ptr, size) (void)((ptr != NULL) || (oom(size), false))
  |  |  ------------------
  |  |  |  Branch (241:37): [True: 43.2M, False: 0]
  |  |  |  Branch (241:54): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  400|       |
  401|  43.2M|	return ptr;
  402|  43.2M|}
mem.c:mem_getstats:
  471|  43.2M|mem_getstats(isc_mem_t *ctx, size_t size) {
  472|       |	atomic_fetch_add_relaxed(&ctx->stat[isc_tid()].inuse, size);
  ------------------
  |  |   30|  43.2M|	atomic_fetch_add_explicit((o), (v), memory_order_relaxed)
  ------------------
  473|  43.2M|}
mem.c:mem_putstats:
  479|  43.2M|mem_putstats(isc_mem_t *ctx, size_t size) {
  480|       |	atomic_fetch_sub_relaxed(&ctx->stat[isc_tid()].inuse, size);
  ------------------
  |  |   32|  43.2M|	atomic_fetch_sub_explicit((o), (v), memory_order_relaxed)
  ------------------
  481|  43.2M|}
mem.c:mem_put:
  442|  43.2M|mem_put(isc_mem_t *ctx, void *mem, size_t size, int flags) {
  443|  43.2M|	ADJUST_ZERO_ALLOCATION_SIZE(size);
  ------------------
  |  |  387|  43.2M|	if (s == 0) {                     \
  |  |  ------------------
  |  |  |  Branch (387:6): [True: 0, False: 43.2M]
  |  |  ------------------
  |  |  388|      0|		s = ZERO_ALLOCATION_SIZE; \
  |  |  ------------------
  |  |  |  |   83|      0|#define ZERO_ALLOCATION_SIZE sizeof(void *)
  |  |  ------------------
  |  |  389|      0|	}
  ------------------
  444|       |
  445|  43.2M|	sdallocx(mem, size, flags | ctx->jemalloc_flags);
  446|       |
  447|  43.2M|	freed_bytes += size;
  448|       |
  449|  43.2M|	if (freed_bytes >= purge_threshold) {
  ------------------
  |  Branch (449:6): [True: 651, False: 43.2M]
  ------------------
  450|    651|		freed_bytes = 0;
  451|    651|		mem_purge();
  452|    651|	}
  453|  43.2M|}
mem.c:mem_purge:
  413|    651|mem_purge(void) {
  414|    651|	isc_stdtime_t now = isc_stdtime_now();
  415|    651|	isc_stdtime_t last = atomic_load_relaxed(&last_purge);
  ------------------
  |  |   28|    651|#define atomic_load_relaxed(o) atomic_load_explicit((o), memory_order_relaxed)
  ------------------
  416|       |
  417|    651|	if (now > last &&
  ------------------
  |  Branch (417:6): [True: 16, False: 635]
  ------------------
  418|    651|	    atomic_compare_exchange_strong_acq_rel(&last_purge, &last, now))
  ------------------
  |  |   71|    651|	atomic_compare_exchange_strong_explicit(        \
  |  |  ------------------
  |  |  |  Branch (71:2): [True: 16, False: 0]
  |  |  ------------------
  |  |   72|     16|		(o), (e), (d), memory_order_acq_rel, memory_order_acquire)
  ------------------
  419|     16|	{
  420|       |#if defined(JEMALLOC_API_SUPPORTED)
  421|       |		(void)mallctl("arena." STRINGIFY(MALLCTL_ARENAS_ALL) ".decay",
  422|       |			      NULL, NULL, NULL, 0);
  423|       |#elif defined(__GLIBC__)
  424|       |		(void)malloc_trim(0);
  425|     16|#endif
  426|     16|	}
  427|    651|}
mem.c:mem_create:
  602|     10|	   unsigned int jemalloc_flags) {
  603|     10|	isc_mem_t *ctx = NULL;
  604|       |
  605|     10|	REQUIRE(ctxp != NULL && *ctxp == NULL);
  ------------------
  |  |  198|     10|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     20|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 10, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     10|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  606|     10|	REQUIRE(name != NULL);
  ------------------
  |  |  198|     10|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     10|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     10|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  607|       |
  608|     10|	ctx = mallocx(sizeof(*ctx), jemalloc_flags);
  609|     10|	CHECK_OOM(ctx, sizeof(*ctx));
  ------------------
  |  |  241|     10|#define CHECK_OOM(ptr, size) (void)((ptr != NULL) || (oom(size), false))
  |  |  ------------------
  |  |  |  Branch (241:37): [True: 10, False: 0]
  |  |  |  Branch (241:54): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  610|       |
  611|     10|	*ctx = (isc_mem_t){
  612|     10|		.magic = MEM_MAGIC,
  ------------------
  |  |  118|     10|#define MEM_MAGIC	 ISC_MAGIC('M', 'e', 'm', 'C')
  |  |  ------------------
  |  |  |  |   31|     10|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  613|     10|		.debugging = debugging,
  614|     10|		.jemalloc_flags = jemalloc_flags,
  615|     10|		.checkfree = true,
  616|     10|		.name = strdup(name),
  617|     10|	};
  618|       |
  619|     10|	isc_mutex_init(&ctx->lock);
  ------------------
  |  |   68|     10|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|     10|	{                                                                 \
  |  |  |  |   80|     10|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|     10|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|     10|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 10]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|     10|	}
  |  |  ------------------
  ------------------
  620|     10|	isc_refcount_init(&ctx->references, 1);
  ------------------
  |  |   44|     10|#define isc_refcount_init(target, value) atomic_init(target, value)
  ------------------
  621|       |
  622|  5.14k|	for (size_t i = 0; i < ARRAY_SIZE(ctx->stat_s); i++) {
  ------------------
  |  |   98|  5.14k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (622:21): [True: 5.13k, False: 10]
  ------------------
  623|  5.13k|		atomic_init(&ctx->stat_s[i].inuse, 0);
  624|  5.13k|	}
  625|       |
  626|       |	/* Reserve the [-1] index for ISC_TID_UNKNOWN */
  627|     10|	ctx->stat = &ctx->stat_s[1];
  628|       |
  629|     10|	atomic_init(&ctx->hi_water, 0);
  630|     10|	atomic_init(&ctx->lo_water, 0);
  631|       |
  632|     10|	ISC_LIST_INIT(ctx->pools);
  ------------------
  |  |   43|     10|	do {                        \
  |  |   44|     10|		(list).head = NULL; \
  |  |   45|     10|		(list).tail = NULL; \
  |  |   46|     10|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 10]
  |  |  ------------------
  ------------------
  633|       |
  634|       |#if ISC_MEM_TRACKLINES
  635|       |	if ((ctx->debugging & ISC_MEM_DEBUGRECORD) != 0) {
  636|       |		unsigned int i;
  637|       |		size_t debuglist_size = ISC_CHECKED_MUL(DEBUG_TABLE_COUNT,
  638|       |							sizeof(debuglist_t));
  639|       |
  640|       |		ctx->debuglist = mallocx(debuglist_size, jemalloc_flags);
  641|       |		CHECK_OOM(ctx->debuglist, debuglist_size);
  642|       |
  643|       |		for (i = 0; i < DEBUG_TABLE_COUNT; i++) {
  644|       |			ISC_LIST_INIT(ctx->debuglist[i]);
  645|       |		}
  646|       |	}
  647|       |#endif /* if ISC_MEM_TRACKLINES */
  648|       |
  649|     10|	LOCK(&contextslock);
  ------------------
  |  |   26|     10|	{                                                                  \
  |  |   27|     10|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |   28|     10|				       __FILE__, __LINE__));               \
  |  |   29|     10|		isc_mutex_lock((lp));                                      \
  |  |  ------------------
  |  |  |  |   69|     10|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   85|     10|	{                                                         \
  |  |  |  |  |  |   86|     10|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |   87|     10|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|     10|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 10]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|     10|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   30|     10|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |   31|     10|				       __FILE__, __LINE__));               \
  |  |   32|     10|	}
  ------------------
  650|     10|	ISC_LIST_INITANDAPPEND(contexts, ctx, link);
  ------------------
  |  |  106|     10|	__ISC_LIST_APPENDUNSAFE(list, elt, link)
  |  |  ------------------
  |  |  |  |   88|     10|	do {                                            \
  |  |  |  |   89|     10|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 8, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   90|      8|			(list).tail->link.next = (elt); \
  |  |  |  |   91|      8|		} else {                                \
  |  |  |  |   92|      2|			(list).head = (elt);            \
  |  |  |  |   93|      2|		}                                       \
  |  |  |  |   94|     10|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|     10|		(elt)->link.next = NULL;                \
  |  |  |  |   96|     10|		(list).tail = (elt);                    \
  |  |  |  |   97|     10|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  651|     10|	UNLOCK(&contextslock);
  ------------------
  |  |   34|     10|	{                                                                   \
  |  |   35|     10|		isc_mutex_unlock((lp));                                     \
  |  |  ------------------
  |  |  |  |   70|     10|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   91|     10|	{                                                           \
  |  |  |  |  |  |   92|     10|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |   93|     10|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|     10|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 10]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   94|     10|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|     10|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |   37|     10|				       __FILE__, __LINE__));                \
  |  |   38|     10|	}
  ------------------
  652|       |
  653|     10|	*ctxp = ctx;
  654|     10|}

isc__mutex_initialize:
   33|      2|isc__mutex_initialize(void) {
   34|      2|	RUNTIME_CHECK(pthread_mutexattr_init(&isc__mutex_init_attr) == 0);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
   35|       |#if ISC_MUTEX_ERROR_CHECK
   36|       |	RUNTIME_CHECK(pthread_mutexattr_settype(&isc__mutex_init_attr,
   37|       |						PTHREAD_MUTEX_ERRORCHECK) == 0);
   38|       |#elif HAVE_PTHREAD_MUTEX_ADAPTIVE_NP
   39|      2|	RUNTIME_CHECK(pthread_mutexattr_settype(&isc__mutex_init_attr,
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
   40|      2|						PTHREAD_MUTEX_ADAPTIVE_NP) ==
   41|      2|		      0);
   42|      2|#endif
   43|      2|}

isc_os_ncpus:
  199|      2|isc_os_ncpus(void) {
  200|      2|	return isc__os_ncpus;
  201|      2|}
isc__os_initialize:
  222|      2|isc__os_initialize(void) {
  223|      2|	umask_initialize();
  224|      2|	ncpus_initialize();
  225|      2|	kernel_initialize();
  226|      2|#if defined(_SC_LEVEL1_DCACHE_LINESIZE)
  227|      2|	long s = sysconf(_SC_LEVEL1_DCACHE_LINESIZE);
  228|      2|	if (s > 0 && (unsigned long)s > isc__os_cacheline) {
  ------------------
  |  Branch (228:6): [True: 2, False: 0]
  |  Branch (228:15): [True: 0, False: 2]
  ------------------
  229|      0|		isc__os_cacheline = s;
  230|      0|	}
  231|      2|#endif
  232|       |
  233|      2|	pthread_attr_init(&isc__thread_attr);
  234|       |
  235|      2|	size_t stacksize = isc_thread_getstacksize();
  236|      2|	if (stacksize != 0 && stacksize < THREAD_MINSTACKSIZE) {
  ------------------
  |  |   29|      2|#define THREAD_MINSTACKSIZE (1U * 1024 * 1024)
  ------------------
  |  Branch (236:6): [True: 2, False: 0]
  |  Branch (236:24): [True: 0, False: 2]
  ------------------
  237|      0|		isc_thread_setstacksize(THREAD_MINSTACKSIZE);
  ------------------
  |  |   29|      0|#define THREAD_MINSTACKSIZE (1U * 1024 * 1024)
  ------------------
  238|      0|	}
  239|      2|}
os.c:umask_initialize:
  180|      2|umask_initialize(void) {
  181|      2|	isc__os_umask = umask(0);
  182|      2|	(void)umask(isc__os_umask);
  183|      2|}
os.c:ncpus_initialize:
   42|      2|ncpus_initialize(void) {
   43|      2|	isc__os_ncpus = uv_available_parallelism();
   44|      2|}
os.c:kernel_initialize:
  186|      2|kernel_initialize(void) {
  187|      2|	struct utsname buffer;
  188|       |
  189|      2|	if (uname(&buffer) == -1) {
  ------------------
  |  Branch (189:6): [True: 0, False: 2]
  ------------------
  190|      0|		return;
  191|      0|	}
  192|       |
  193|      2|	(void)sscanf(buffer.release, "%d.%d.%d", &kernel_major, &kernel_minor,
  194|      2|		     &kernel_patch);
  195|      2|	(void)strlcpy(kernel_name, buffer.sysname, sizeof(kernel_name));
  196|      2|}

isc_ossl_wrap_load_rsa_public_from_components:
  727|     12|					      EVP_PKEY **pkeyp) {
  728|     12|	OSSL_PARAM_BLD *bld = NULL;
  729|     12|	EVP_PKEY_CTX *pctx = NULL;
  730|     12|	OSSL_PARAM *params = NULL;
  731|     12|	isc_result_t result;
  732|       |
  733|     12|	REQUIRE(pkeyp != NULL && *pkeyp == NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     24|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  734|     12|	REQUIRE(c != NULL && c->n != NULL && c->e != NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     48|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  735|       |
  736|     12|	bld = OSSL_PARAM_BLD_new();
  737|     12|	if (bld == NULL) {
  ------------------
  |  Branch (737:6): [True: 0, False: 12]
  ------------------
  738|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_new"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  739|      0|	}
  740|       |
  741|     12|	if (OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_RSA_N, c->n) != 1) {
  ------------------
  |  Branch (741:6): [True: 0, False: 12]
  ------------------
  742|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_push_BN"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  743|      0|	}
  744|       |
  745|     12|	if (OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_RSA_E, c->e) != 1) {
  ------------------
  |  Branch (745:6): [True: 0, False: 12]
  ------------------
  746|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_push_BN"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  747|      0|	}
  748|       |
  749|     12|	params = OSSL_PARAM_BLD_to_param(bld);
  750|     12|	if (params == NULL) {
  ------------------
  |  Branch (750:6): [True: 0, False: 12]
  ------------------
  751|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_to_param"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  752|      0|	}
  753|       |
  754|     12|	pctx = EVP_PKEY_CTX_new_from_name(NULL, "RSA", NULL);
  755|     12|	if (pctx == NULL) {
  ------------------
  |  Branch (755:6): [True: 0, False: 12]
  ------------------
  756|      0|		CLEANUP(OSSL_WRAP_ERROR("EVP_PKEY_CTX_new_from_name"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  757|      0|	}
  758|       |
  759|     12|	if (EVP_PKEY_fromdata_init(pctx) != 1) {
  ------------------
  |  Branch (759:6): [True: 0, False: 12]
  ------------------
  760|      0|		CLEANUP(OSSL_WRAP_ERROR("EVP_PKEY_fromdata_init"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  761|      0|	}
  762|       |
  763|     12|	if (EVP_PKEY_fromdata(pctx, pkeyp, EVP_PKEY_PUBLIC_KEY, params) != 1) {
  ------------------
  |  Branch (763:6): [True: 0, False: 12]
  ------------------
  764|      0|		CLEANUP(OSSL_WRAP_ERROR("EVP_PKEY_fromdata"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  765|      0|	}
  766|       |
  767|     12|	result = ISC_R_SUCCESS;
  768|       |
  769|     12|cleanup:
  770|     12|	EVP_PKEY_CTX_free(pctx);
  771|     12|	OSSL_PARAM_free(params);
  772|     12|	OSSL_PARAM_BLD_free(bld);
  773|     12|	return result;
  774|     12|}

isc_ossl_wrap_rsa_components_cleanup:
   23|     12|isc_ossl_wrap_rsa_components_cleanup(isc_ossl_wrap_rsa_components_t *c) {
   24|     12|	REQUIRE(c != NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     12|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   25|       |
   26|     12|	if (!c->needs_cleanup) {
  ------------------
  |  Branch (26:6): [True: 0, False: 12]
  ------------------
   27|      0|		return;
   28|      0|	}
   29|       |
   30|       |	/*
   31|       |	 * NOTE: BN_free() frees the components of the BIGNUM, and if it was
   32|       |	 * created by BN_new(), also the structure itself. BN_clear_free()
   33|       |	 * additionally overwrites the data before the memory is returned to the
   34|       |	 * system. If a is NULL, nothing is done.
   35|       |	 */
   36|     12|	BN_free(c->e);
   37|     12|	BN_free(c->n);
   38|     12|	BN_clear_free(c->d);
   39|     12|	BN_clear_free(c->p);
   40|     12|	BN_clear_free(c->q);
   41|     12|	BN_clear_free(c->dmp1);
   42|     12|	BN_clear_free(c->dmq1);
   43|     12|	BN_clear_free(c->iqmp);
   44|       |
   45|       |	c->needs_cleanup = false;
   46|     12|}

isc_regex_validate:
   34|  4.47k|isc_regex_validate(const char *c) {
   35|  4.47k|	enum {
   36|  4.47k|		none,
   37|  4.47k|		parse_bracket,
   38|  4.47k|		parse_bound,
   39|  4.47k|		parse_ce,
   40|  4.47k|		parse_ec,
   41|  4.47k|		parse_cc
   42|  4.47k|	} state = none;
   43|       |	/* Well known character classes. */
   44|  4.47k|	const char *cc[] = { ":alnum:", ":digit:", ":punct:", ":alpha:",
   45|  4.47k|			     ":graph:", ":space:", ":blank:", ":lower:",
   46|  4.47k|			     ":upper:", ":cntrl:", ":print:", ":xdigit:" };
   47|  4.47k|	bool seen_comma = false;
   48|  4.47k|	bool seen_high = false;
   49|  4.47k|	bool seen_char = false;
   50|  4.47k|	bool seen_ec = false;
   51|  4.47k|	bool seen_ce = false;
   52|  4.47k|	bool have_atom = false;
   53|  4.47k|	int group = 0;
   54|  4.47k|	int range = 0;
   55|  4.47k|	int sub = 0;
   56|  4.47k|	bool empty_ok = false;
   57|  4.47k|	bool neg = false;
   58|  4.47k|	bool was_multiple = false;
   59|  4.47k|	unsigned int low = 0;
   60|  4.47k|	unsigned int high = 0;
   61|  4.47k|	const char *ccname = NULL;
   62|  4.47k|	int range_start = 0;
   63|       |#if VALREGEX_REPORT_REASON
   64|       |	const char *reason = "";
   65|       |#endif /* if VALREGEX_REPORT_REASON */
   66|       |
   67|  4.47k|	if (c == NULL || *c == 0) {
  ------------------
  |  Branch (67:6): [True: 0, False: 4.47k]
  |  Branch (67:19): [True: 5, False: 4.46k]
  ------------------
   68|      5|		FAIL("empty string");
  ------------------
  |  |   27|      5|#define FAIL(x) goto error
  ------------------
   69|      5|	}
   70|       |
   71|   347k|	while (c != NULL && *c != 0) {
  ------------------
  |  Branch (71:9): [True: 347k, False: 0]
  |  Branch (71:22): [True: 343k, False: 4.36k]
  ------------------
   72|   343k|		switch (state) {
  ------------------
  |  Branch (72:11): [True: 343k, False: 0]
  ------------------
   73|   203k|		case none:
  ------------------
  |  Branch (73:3): [True: 203k, False: 139k]
  ------------------
   74|   203k|			switch (*c) {
   75|  7.85k|			case '\\': /* make literal */
  ------------------
  |  Branch (75:4): [True: 7.85k, False: 195k]
  ------------------
   76|  7.85k|				++c;
   77|  7.85k|				switch (*c) {
   78|    469|				case '1':
  ------------------
  |  Branch (78:5): [True: 469, False: 7.39k]
  ------------------
   79|    842|				case '2':
  ------------------
  |  Branch (79:5): [True: 373, False: 7.48k]
  ------------------
   80|  1.21k|				case '3':
  ------------------
  |  Branch (80:5): [True: 372, False: 7.48k]
  ------------------
   81|  2.08k|				case '4':
  ------------------
  |  Branch (81:5): [True: 867, False: 6.99k]
  ------------------
   82|  2.62k|				case '5':
  ------------------
  |  Branch (82:5): [True: 545, False: 7.31k]
  ------------------
   83|  2.93k|				case '6':
  ------------------
  |  Branch (83:5): [True: 312, False: 7.54k]
  ------------------
   84|  3.07k|				case '7':
  ------------------
  |  Branch (84:5): [True: 132, False: 7.72k]
  ------------------
   85|  3.64k|				case '8':
  ------------------
  |  Branch (85:5): [True: 576, False: 7.28k]
  ------------------
   86|  4.69k|				case '9':
  ------------------
  |  Branch (86:5): [True: 1.04k, False: 6.81k]
  ------------------
   87|  4.69k|					if ((*c - '0') > sub) {
  ------------------
  |  Branch (87:10): [True: 11, False: 4.68k]
  ------------------
   88|     11|						FAIL("bad back reference");
  ------------------
  |  |   27|     11|#define FAIL(x) goto error
  ------------------
   89|     11|					}
   90|  4.68k|					have_atom = true;
   91|  4.68k|					was_multiple = false;
   92|  4.68k|					break;
   93|      0|				case 0:
  ------------------
  |  Branch (93:5): [True: 0, False: 7.85k]
  ------------------
   94|      0|					FAIL("escaped end-of-string");
  ------------------
  |  |   27|      0|#define FAIL(x) goto error
  ------------------
   95|  3.16k|				default:
  ------------------
  |  Branch (95:5): [True: 3.16k, False: 4.69k]
  ------------------
   96|  3.16k|					goto literal;
   97|  7.85k|				}
   98|  4.68k|				++c;
   99|  4.68k|				break;
  100|  9.06k|			case '[': /* bracket start */
  ------------------
  |  Branch (100:4): [True: 9.06k, False: 194k]
  ------------------
  101|  9.06k|				++c;
  102|  9.06k|				neg = false;
  103|  9.06k|				was_multiple = false;
  104|  9.06k|				seen_char = false;
  105|  9.06k|				state = parse_bracket;
  106|  9.06k|				break;
  107|  13.6k|			case '{': /* bound start */
  ------------------
  |  Branch (107:4): [True: 13.6k, False: 190k]
  ------------------
  108|  13.6k|				switch (c[1]) {
  109|    942|				case '0':
  ------------------
  |  Branch (109:5): [True: 942, False: 12.7k]
  ------------------
  110|  2.55k|				case '1':
  ------------------
  |  Branch (110:5): [True: 1.61k, False: 12.0k]
  ------------------
  111|  2.71k|				case '2':
  ------------------
  |  Branch (111:5): [True: 158, False: 13.5k]
  ------------------
  112|  3.41k|				case '3':
  ------------------
  |  Branch (112:5): [True: 702, False: 12.9k]
  ------------------
  113|  3.58k|				case '4':
  ------------------
  |  Branch (113:5): [True: 163, False: 13.5k]
  ------------------
  114|  3.91k|				case '5':
  ------------------
  |  Branch (114:5): [True: 330, False: 13.3k]
  ------------------
  115|  4.15k|				case '6':
  ------------------
  |  Branch (115:5): [True: 247, False: 13.4k]
  ------------------
  116|  5.27k|				case '7':
  ------------------
  |  Branch (116:5): [True: 1.12k, False: 12.5k]
  ------------------
  117|  5.38k|				case '8':
  ------------------
  |  Branch (117:5): [True: 109, False: 13.5k]
  ------------------
  118|  5.53k|				case '9':
  ------------------
  |  Branch (118:5): [True: 150, False: 13.5k]
  ------------------
  119|  5.53k|					if (!have_atom) {
  ------------------
  |  Branch (119:10): [True: 1, False: 5.53k]
  ------------------
  120|      1|						FAIL("no atom");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  121|      1|					}
  122|  5.53k|					if (was_multiple) {
  ------------------
  |  Branch (122:10): [True: 1, False: 5.53k]
  ------------------
  123|      1|						FAIL("was multiple");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  124|      1|					}
  125|  5.53k|					seen_comma = false;
  126|  5.53k|					seen_high = false;
  127|  5.53k|					low = high = 0;
  128|  5.53k|					state = parse_bound;
  129|  5.53k|					break;
  130|  8.15k|				default:
  ------------------
  |  Branch (130:5): [True: 8.15k, False: 5.53k]
  ------------------
  131|  8.15k|					goto literal;
  132|  13.6k|				}
  133|  5.53k|				++c;
  134|  5.53k|				have_atom = true;
  135|  5.53k|				was_multiple = true;
  136|  5.53k|				break;
  137|  4.92k|			case '}':
  ------------------
  |  Branch (137:4): [True: 4.92k, False: 198k]
  ------------------
  138|  4.92k|				goto literal;
  139|  18.4k|			case '(': /* group start */
  ------------------
  |  Branch (139:4): [True: 18.4k, False: 185k]
  ------------------
  140|  18.4k|				have_atom = false;
  141|  18.4k|				was_multiple = false;
  142|  18.4k|				empty_ok = true;
  143|  18.4k|				++group;
  144|  18.4k|				++sub;
  145|  18.4k|				++c;
  146|  18.4k|				break;
  147|  26.9k|			case ')': /* group end */
  ------------------
  |  Branch (147:4): [True: 26.9k, False: 176k]
  ------------------
  148|  26.9k|				if (group && !have_atom && !empty_ok) {
  ------------------
  |  Branch (148:9): [True: 18.0k, False: 8.80k]
  |  Branch (148:18): [True: 8.08k, False: 10.0k]
  |  Branch (148:32): [True: 1, False: 8.07k]
  ------------------
  149|      1|					FAIL("empty alternative");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  150|      1|				}
  151|  26.9k|				have_atom = true;
  152|  26.9k|				was_multiple = false;
  153|  26.9k|				if (group != 0) {
  ------------------
  |  Branch (153:9): [True: 18.0k, False: 8.80k]
  ------------------
  154|  18.0k|					--group;
  155|  18.0k|				}
  156|  26.9k|				++c;
  157|  26.9k|				break;
  158|  1.34k|			case '|': /* alternative separator */
  ------------------
  |  Branch (158:4): [True: 1.34k, False: 202k]
  ------------------
  159|  1.34k|				if (!have_atom) {
  ------------------
  |  Branch (159:9): [True: 1, False: 1.34k]
  ------------------
  160|      1|					FAIL("no atom");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  161|      1|				}
  162|  1.34k|				have_atom = false;
  163|  1.34k|				empty_ok = false;
  164|  1.34k|				was_multiple = false;
  165|  1.34k|				++c;
  166|  1.34k|				break;
  167|  1.46k|			case '^':
  ------------------
  |  Branch (167:4): [True: 1.46k, False: 202k]
  ------------------
  168|  3.02k|			case '$':
  ------------------
  |  Branch (168:4): [True: 1.56k, False: 202k]
  ------------------
  169|  3.02k|				have_atom = true;
  170|  3.02k|				was_multiple = true;
  171|  3.02k|				++c;
  172|  3.02k|				break;
  173|  2.13k|			case '+':
  ------------------
  |  Branch (173:4): [True: 2.13k, False: 201k]
  ------------------
  174|  4.57k|			case '*':
  ------------------
  |  Branch (174:4): [True: 2.43k, False: 201k]
  ------------------
  175|  8.12k|			case '?':
  ------------------
  |  Branch (175:4): [True: 3.55k, False: 200k]
  ------------------
  176|  8.12k|				if (was_multiple) {
  ------------------
  |  Branch (176:9): [True: 7, False: 8.12k]
  ------------------
  177|      7|					FAIL("was multiple");
  ------------------
  |  |   27|      7|#define FAIL(x) goto error
  ------------------
  178|      7|				}
  179|  8.12k|				if (!have_atom) {
  ------------------
  |  Branch (179:9): [True: 5, False: 8.11k]
  ------------------
  180|      5|					FAIL("no atom");
  ------------------
  |  |   27|      5|#define FAIL(x) goto error
  ------------------
  181|      5|				}
  182|  8.11k|				have_atom = true;
  183|  8.11k|				was_multiple = true;
  184|  8.11k|				++c;
  185|  8.11k|				break;
  186|  3.21k|			case '.':
  ------------------
  |  Branch (186:4): [True: 3.21k, False: 200k]
  ------------------
  187|   110k|			default:
  ------------------
  |  Branch (187:4): [True: 107k, False: 96.6k]
  ------------------
  188|   126k|			literal:
  189|   126k|				have_atom = true;
  190|   126k|				was_multiple = false;
  191|   126k|				++c;
  192|   126k|				break;
  193|   203k|			}
  194|   203k|			break;
  195|   203k|		case parse_bound:
  ------------------
  |  Branch (195:3): [True: 19.3k, False: 324k]
  ------------------
  196|  19.3k|			switch (*c) {
  197|  1.48k|			case '0':
  ------------------
  |  Branch (197:4): [True: 1.48k, False: 17.8k]
  ------------------
  198|  3.57k|			case '1':
  ------------------
  |  Branch (198:4): [True: 2.08k, False: 17.2k]
  ------------------
  199|  3.96k|			case '2':
  ------------------
  |  Branch (199:4): [True: 396, False: 18.9k]
  ------------------
  200|  5.04k|			case '3':
  ------------------
  |  Branch (200:4): [True: 1.08k, False: 18.2k]
  ------------------
  201|  5.64k|			case '4':
  ------------------
  |  Branch (201:4): [True: 596, False: 18.7k]
  ------------------
  202|  6.57k|			case '5':
  ------------------
  |  Branch (202:4): [True: 930, False: 18.4k]
  ------------------
  203|  7.90k|			case '6':
  ------------------
  |  Branch (203:4): [True: 1.33k, False: 18.0k]
  ------------------
  204|  10.7k|			case '7':
  ------------------
  |  Branch (204:4): [True: 2.81k, False: 16.5k]
  ------------------
  205|  11.8k|			case '8':
  ------------------
  |  Branch (205:4): [True: 1.11k, False: 18.2k]
  ------------------
  206|  12.6k|			case '9':
  ------------------
  |  Branch (206:4): [True: 851, False: 18.5k]
  ------------------
  207|  12.6k|				if (!seen_comma) {
  ------------------
  |  Branch (207:9): [True: 10.9k, False: 1.68k]
  ------------------
  208|  10.9k|					low = low * 10 + *c - '0';
  209|  10.9k|					if (low > 255) {
  ------------------
  |  Branch (209:10): [True: 8, False: 10.9k]
  ------------------
  210|      8|						FAIL("lower bound too big");
  ------------------
  |  |   27|      8|#define FAIL(x) goto error
  ------------------
  211|      8|					}
  212|  10.9k|				} else {
  213|  1.68k|					seen_high = true;
  214|  1.68k|					high = high * 10 + *c - '0';
  215|  1.68k|					if (high > 255) {
  ------------------
  |  Branch (215:10): [True: 1, False: 1.68k]
  ------------------
  216|      1|						FAIL("upper bound too big");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  217|      1|					}
  218|  1.68k|				}
  219|  12.6k|				++c;
  220|  12.6k|				break;
  221|  1.19k|			case ',':
  ------------------
  |  Branch (221:4): [True: 1.19k, False: 18.1k]
  ------------------
  222|  1.19k|				if (seen_comma) {
  ------------------
  |  Branch (222:9): [True: 2, False: 1.19k]
  ------------------
  223|      2|					FAIL("multiple commas");
  ------------------
  |  |   27|      2|#define FAIL(x) goto error
  ------------------
  224|      2|				}
  225|  1.19k|				seen_comma = true;
  226|  1.19k|				++c;
  227|  1.19k|				break;
  228|      4|			default:
  ------------------
  |  Branch (228:4): [True: 4, False: 19.3k]
  ------------------
  229|      4|			case '{':
  ------------------
  |  Branch (229:4): [True: 0, False: 19.3k]
  ------------------
  230|      4|				FAIL("non digit/comma");
  ------------------
  |  |   27|      4|#define FAIL(x) goto error
  ------------------
  231|  5.48k|			case '}':
  ------------------
  |  Branch (231:4): [True: 5.48k, False: 13.8k]
  ------------------
  232|  5.48k|				if (seen_high && low > high) {
  ------------------
  |  Branch (232:9): [True: 1.09k, False: 4.39k]
  |  Branch (232:22): [True: 7, False: 1.08k]
  ------------------
  233|      7|					FAIL("bad parse bound");
  ------------------
  |  |   27|      7|#define FAIL(x) goto error
  ------------------
  234|      7|				}
  235|  5.47k|				seen_comma = false;
  236|  5.47k|				state = none;
  237|  5.47k|				++c;
  238|  5.47k|				break;
  239|  19.3k|			}
  240|  19.3k|			break;
  241|  88.7k|		case parse_bracket:
  ------------------
  |  Branch (241:3): [True: 88.7k, False: 254k]
  ------------------
  242|  88.7k|			switch (*c) {
  243|  2.49k|			case '^':
  ------------------
  |  Branch (243:4): [True: 2.49k, False: 86.2k]
  ------------------
  244|  2.49k|				if (seen_char || neg) {
  ------------------
  |  Branch (244:9): [True: 1.06k, False: 1.43k]
  |  Branch (244:22): [True: 391, False: 1.04k]
  ------------------
  245|  1.45k|					goto inside;
  246|  1.45k|				}
  247|  1.04k|				neg = true;
  248|  1.04k|				++c;
  249|  1.04k|				break;
  250|  7.37k|			case '-':
  ------------------
  |  Branch (250:4): [True: 7.37k, False: 81.3k]
  ------------------
  251|  7.37k|				if (range == 2) {
  ------------------
  |  Branch (251:9): [True: 585, False: 6.78k]
  ------------------
  252|    585|					goto inside;
  253|    585|				}
  254|  6.78k|				if (!seen_char) {
  ------------------
  |  Branch (254:9): [True: 865, False: 5.92k]
  ------------------
  255|    865|					goto inside;
  256|    865|				}
  257|  5.92k|				if (range == 1) {
  ------------------
  |  Branch (257:9): [True: 5, False: 5.91k]
  ------------------
  258|      5|					FAIL("bad range");
  ------------------
  |  |   27|      5|#define FAIL(x) goto error
  ------------------
  259|      5|				}
  260|  5.91k|				range = 2;
  261|  5.91k|				++c;
  262|  5.91k|				break;
  263|  12.3k|			case '[':
  ------------------
  |  Branch (263:4): [True: 12.3k, False: 76.3k]
  ------------------
  264|  12.3k|				++c;
  265|  12.3k|				switch (*c) {
  ------------------
  |  Branch (265:13): [True: 3.71k, False: 8.62k]
  ------------------
  266|  2.58k|				case '.': /* collating element */
  ------------------
  |  Branch (266:5): [True: 2.58k, False: 9.76k]
  ------------------
  267|  2.58k|					if (range != 0) {
  ------------------
  |  Branch (267:10): [True: 1.37k, False: 1.20k]
  ------------------
  268|  1.37k|						--range;
  269|  1.37k|					}
  270|  2.58k|					++c;
  271|  2.58k|					state = parse_ce;
  272|  2.58k|					seen_ce = false;
  273|  2.58k|					break;
  274|     98|				case '=': /* equivalence class */
  ------------------
  |  Branch (274:5): [True: 98, False: 12.2k]
  ------------------
  275|     98|					if (range == 2) {
  ------------------
  |  Branch (275:10): [True: 1, False: 97]
  ------------------
  276|      1|						FAIL("equivalence class in "
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  277|      1|						     "range");
  278|      1|					}
  279|     97|					++c;
  280|     97|					state = parse_ec;
  281|     97|					seen_ec = false;
  282|     97|					break;
  283|  1.03k|				case ':': /* character class */
  ------------------
  |  Branch (283:5): [True: 1.03k, False: 11.3k]
  ------------------
  284|  1.03k|					if (range == 2) {
  ------------------
  |  Branch (284:10): [True: 1, False: 1.03k]
  ------------------
  285|      1|						FAIL("character class in "
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  286|      1|						     "range");
  287|      1|					}
  288|  1.03k|					ccname = c;
  289|  1.03k|					++c;
  290|  1.03k|					state = parse_cc;
  291|  1.03k|					break;
  292|  12.3k|				}
  293|  12.3k|				seen_char = true;
  294|  12.3k|				break;
  295|  9.95k|			case ']':
  ------------------
  |  Branch (295:4): [True: 9.95k, False: 78.7k]
  ------------------
  296|  9.95k|				if (!c[1] && !seen_char) {
  ------------------
  |  Branch (296:9): [True: 615, False: 9.33k]
  |  Branch (296:18): [True: 2, False: 613]
  ------------------
  297|      2|					FAIL("unfinished brace");
  ------------------
  |  |   27|      2|#define FAIL(x) goto error
  ------------------
  298|      2|				}
  299|  9.94k|				if (!seen_char) {
  ------------------
  |  Branch (299:9): [True: 1.05k, False: 8.89k]
  ------------------
  300|  1.05k|					goto inside;
  301|  1.05k|				}
  302|  8.89k|				++c;
  303|  8.89k|				range = 0;
  304|  8.89k|				have_atom = true;
  305|  8.89k|				state = none;
  306|  8.89k|				break;
  307|  56.5k|			default:
  ------------------
  |  Branch (307:4): [True: 56.5k, False: 32.1k]
  ------------------
  308|  60.5k|			inside:
  309|  60.5k|				seen_char = true;
  310|  60.5k|				if (range == 2 && (*c & 0xff) < range_start) {
  ------------------
  |  Branch (310:9): [True: 5.14k, False: 55.3k]
  |  Branch (310:23): [True: 8, False: 5.13k]
  ------------------
  311|      8|					FAIL("out of order range");
  ------------------
  |  |   27|      8|#define FAIL(x) goto error
  ------------------
  312|      8|				}
  313|  60.5k|				if (range != 0) {
  ------------------
  |  Branch (313:9): [True: 9.29k, False: 51.2k]
  ------------------
  314|  9.29k|					--range;
  315|  9.29k|				}
  316|  60.5k|				range_start = *c & 0xff;
  317|  60.5k|				++c;
  318|  60.5k|				break;
  319|  88.7k|			}
  320|  88.7k|			break;
  321|  88.7k|		case parse_ce:
  ------------------
  |  Branch (321:3): [True: 22.8k, False: 320k]
  ------------------
  322|  22.8k|			switch (*c) {
  323|  7.57k|			case '.':
  ------------------
  |  Branch (323:4): [True: 7.57k, False: 15.3k]
  ------------------
  324|  7.57k|				++c;
  325|  7.57k|				switch (*c) {
  326|  2.55k|				case ']':
  ------------------
  |  Branch (326:5): [True: 2.55k, False: 5.01k]
  ------------------
  327|  2.55k|					if (!seen_ce) {
  ------------------
  |  Branch (327:10): [True: 1, False: 2.55k]
  ------------------
  328|      1|						FAIL("empty ce");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  329|      1|					}
  330|  2.55k|					++c;
  331|  2.55k|					state = parse_bracket;
  332|  2.55k|					break;
  333|  5.01k|				default:
  ------------------
  |  Branch (333:5): [True: 5.01k, False: 2.55k]
  ------------------
  334|  5.01k|					if (seen_ce) {
  ------------------
  |  Branch (334:10): [True: 3.73k, False: 1.28k]
  ------------------
  335|  3.73k|						range_start = 256;
  336|  3.73k|					} else {
  337|  1.28k|						range_start = '.';
  338|  1.28k|					}
  339|  5.01k|					seen_ce = true;
  340|  5.01k|					break;
  341|  7.57k|				}
  342|  7.57k|				break;
  343|  15.3k|			default:
  ------------------
  |  Branch (343:4): [True: 15.3k, False: 7.57k]
  ------------------
  344|  15.3k|				if (seen_ce) {
  ------------------
  |  Branch (344:9): [True: 14.0k, False: 1.30k]
  ------------------
  345|  14.0k|					range_start = 256;
  346|  14.0k|				} else {
  347|  1.30k|					range_start = *c;
  348|  1.30k|				}
  349|  15.3k|				seen_ce = true;
  350|  15.3k|				++c;
  351|  15.3k|				break;
  352|  22.8k|			}
  353|  22.8k|			break;
  354|  22.8k|		case parse_ec:
  ------------------
  |  Branch (354:3): [True: 2.07k, False: 341k]
  ------------------
  355|  2.07k|			switch (*c) {
  356|    306|			case '=':
  ------------------
  |  Branch (356:4): [True: 306, False: 1.77k]
  ------------------
  357|    306|				++c;
  358|    306|				switch (*c) {
  359|     74|				case ']':
  ------------------
  |  Branch (359:5): [True: 74, False: 232]
  ------------------
  360|     74|					if (!seen_ec) {
  ------------------
  |  Branch (360:10): [True: 1, False: 73]
  ------------------
  361|      1|						FAIL("no ec");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  362|      1|					}
  363|     73|					++c;
  364|     73|					state = parse_bracket;
  365|     73|					break;
  366|    232|				default:
  ------------------
  |  Branch (366:5): [True: 232, False: 74]
  ------------------
  367|    232|					seen_ec = true;
  368|    232|					break;
  369|    306|				}
  370|    305|				break;
  371|  1.77k|			default:
  ------------------
  |  Branch (371:4): [True: 1.77k, False: 306]
  ------------------
  372|  1.77k|				seen_ec = true;
  373|  1.77k|				++c;
  374|  1.77k|				break;
  375|  2.07k|			}
  376|  2.07k|			break;
  377|  6.64k|		case parse_cc:
  ------------------
  |  Branch (377:3): [True: 6.64k, False: 336k]
  ------------------
  378|  6.64k|			switch (*c) {
  379|  1.23k|			case ':':
  ------------------
  |  Branch (379:4): [True: 1.23k, False: 5.41k]
  ------------------
  380|  1.23k|				++c;
  381|  1.23k|				switch (*c) {
  382|  1.01k|				case ']': {
  ------------------
  |  Branch (382:5): [True: 1.01k, False: 216]
  ------------------
  383|  1.01k|					unsigned int i;
  384|  1.01k|					bool found = false;
  385|  1.01k|					for (i = 0;
  386|  13.1k|					     i < sizeof(cc) / sizeof(*cc); i++)
  ------------------
  |  Branch (386:11): [True: 12.1k, False: 1.01k]
  ------------------
  387|  12.1k|					{
  388|  12.1k|						unsigned int len;
  389|  12.1k|						len = strlen(cc[i]);
  390|  12.1k|						if (len !=
  ------------------
  |  Branch (390:11): [True: 1.26k, False: 10.9k]
  ------------------
  391|  12.1k|						    (unsigned int)(c - ccname))
  392|  1.26k|						{
  393|  1.26k|							continue;
  394|  1.26k|						}
  395|  10.9k|						if (strncmp(cc[i], ccname, len))
  ------------------
  |  Branch (395:11): [True: 9.93k, False: 981]
  ------------------
  396|  9.93k|						{
  397|  9.93k|							continue;
  398|  9.93k|						}
  399|    981|						found = true;
  400|    981|					}
  401|  1.01k|					if (!found) {
  ------------------
  |  Branch (401:10): [True: 34, False: 981]
  ------------------
  402|     34|						FAIL("unknown cc");
  ------------------
  |  |   27|     34|#define FAIL(x) goto error
  ------------------
  403|     34|					}
  404|    981|					++c;
  405|    981|					state = parse_bracket;
  406|    981|					break;
  407|  1.01k|				}
  408|    216|				default:
  ------------------
  |  Branch (408:5): [True: 216, False: 1.01k]
  ------------------
  409|    216|					break;
  410|  1.23k|				}
  411|  1.19k|				break;
  412|  5.41k|			default:
  ------------------
  |  Branch (412:4): [True: 5.41k, False: 1.23k]
  ------------------
  413|  5.41k|				++c;
  414|  5.41k|				break;
  415|  6.64k|			}
  416|  6.61k|			break;
  417|   343k|		}
  418|   343k|	}
  419|  4.36k|	if (group != 0) {
  ------------------
  |  Branch (419:6): [True: 37, False: 4.32k]
  ------------------
  420|     37|		FAIL("group open");
  ------------------
  |  |   27|     37|#define FAIL(x) goto error
  ------------------
  421|     37|	}
  422|  4.32k|	if (state != none) {
  ------------------
  |  Branch (422:6): [True: 150, False: 4.17k]
  ------------------
  423|    150|		FAIL("incomplete");
  ------------------
  |  |   27|    150|#define FAIL(x) goto error
  ------------------
  424|    150|	}
  425|  4.17k|	if (!have_atom) {
  ------------------
  |  Branch (425:6): [True: 3, False: 4.17k]
  ------------------
  426|      3|		FAIL("no atom");
  ------------------
  |  |   27|      3|#define FAIL(x) goto error
  ------------------
  427|      3|	}
  428|  4.17k|	return sub;
  429|       |
  430|    297|error:
  431|       |#if VALREGEX_REPORT_REASON
  432|       |	fprintf(stderr, "%s\n", reason);
  433|       |#endif /* if VALREGEX_REPORT_REASON */
  434|    297|	return -1;
  435|  4.17k|}

isc_region_compare:
   23|  6.26k|isc_region_compare(isc_region_t *r1, isc_region_t *r2) {
   24|  6.26k|	unsigned int l;
   25|  6.26k|	int result;
   26|       |
   27|  6.26k|	REQUIRE(r1 != NULL);
  ------------------
  |  |  198|  6.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   28|  6.26k|	REQUIRE(r2 != NULL);
  ------------------
  |  |  198|  6.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  6.26k|	REQUIRE(r1->base != NULL);
  ------------------
  |  |  198|  6.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|  6.26k|	REQUIRE(r2->base != NULL);
  ------------------
  |  |  198|  6.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   31|       |
   32|  6.26k|	l = (r1->length < r2->length) ? r1->length : r2->length;
  ------------------
  |  Branch (32:6): [True: 475, False: 5.79k]
  ------------------
   33|       |
   34|  6.26k|	if ((result = memcmp(r1->base, r2->base, l)) != 0) {
  ------------------
  |  Branch (34:6): [True: 2.77k, False: 3.49k]
  ------------------
   35|  2.77k|		return (result < 0) ? -1 : 1;
  ------------------
  |  Branch (35:10): [True: 1.41k, False: 1.36k]
  ------------------
   36|  3.49k|	} else {
   37|  3.49k|		return (r1->length == r2->length)  ? 0
  ------------------
  |  Branch (37:10): [True: 2.91k, False: 575]
  ------------------
   38|  3.49k|		       : (r1->length < r2->length) ? -1
  ------------------
  |  Branch (38:12): [True: 419, False: 156]
  ------------------
   39|    575|						   : 1;
   40|  3.49k|	}
   41|  6.26k|}

isc_rwlock_init:
  315|  2.05k|isc_rwlock_init(isc_rwlock_t *rwl) {
  316|  2.05k|	REQUIRE(rwl != NULL);
  ------------------
  |  |  198|  2.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  317|       |
  318|  2.05k|	atomic_init(&rwl->writers_lock, ISC_RWLOCK_UNLOCKED);
  ------------------
  |  |   69|  2.05k|#define ISC_RWLOCK_UNLOCKED false
  ------------------
  319|  2.05k|	atomic_init(&rwl->writers_barrier, 0);
  320|  2.05k|	atomic_init(&rwl->readers_ingress, 0);
  321|       |	atomic_init(&rwl->readers_egress, 0);
  322|  2.05k|	LIBISC_RWLOCK_INIT(rwl);
  323|  2.05k|}

isc_serial_gt:
   33|  13.9k|isc_serial_gt(uint32_t a, uint32_t b) {
   34|  13.9k|	return ((int32_t)(a - b) > 0) ? true : false;
  ------------------
  |  Branch (34:9): [True: 1.88k, False: 12.0k]
  ------------------
   35|  13.9k|}

isc_stdtime_now:
   37|  14.6k|isc_stdtime_now(void) {
   38|  14.6k|	struct timespec ts;
   39|       |
   40|  14.6k|	if (clock_gettime(CLOCKSOURCE, &ts) == -1) {
  ------------------
  |  |   29|  14.6k|#define CLOCKSOURCE CLOCK_REALTIME_COARSE
  ------------------
  |  Branch (40:6): [True: 0, False: 14.6k]
  ------------------
   41|      0|		FATAL_SYSERROR(errno, "clock_gettime()");
  ------------------
  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  ------------------
  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  ------------------
  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  228|      0|	}
  |  |  ------------------
  ------------------
   42|      0|	}
   43|  14.6k|	INSIST(ts.tv_sec > 0 && ts.tv_nsec >= 0 &&
  ------------------
  |  |  202|  14.6k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  58.5k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 14.6k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 14.6k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 14.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  14.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   44|  14.6k|	       ts.tv_nsec < (long)NS_PER_SEC);
   45|       |
   46|  14.6k|	return (isc_stdtime_t)ts.tv_sec;
   47|  14.6k|}

isc_thread_getstacksize:
  171|      2|isc_thread_getstacksize(void) {
  172|      2|	size_t stacksize = 0;
  173|       |
  174|      2|#if HAVE_PTHREAD_ATTR_GETSTACKSIZE
  175|      2|	int ret = pthread_attr_getstacksize(&isc__thread_attr, &stacksize);
  176|      2|	PTHREADS_RUNTIME_CHECK(pthread_attr_getstacksize, ret);
  ------------------
  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  ------------------
  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  ------------------
  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  ------------------
  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  290|      0|	}
  ------------------
  177|      2|#endif /* HAVE_PTHREAD_ATTR_GETSTACKSIZE */
  178|       |
  179|      2|	return stacksize;
  180|      2|}

isc_tid_count:
   57|      8|isc_tid_count(void) {
   58|      8|	return tid_count;
   59|      8|}

isc_utf8_valid:
   32|  23.4k|isc_utf8_valid(const unsigned char *buf, size_t len) {
   33|  23.4k|	REQUIRE(buf != NULL);
  ------------------
  |  |  198|  23.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  23.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 23.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  23.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|   170k|	for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (35:21): [True: 146k, False: 23.4k]
  ------------------
   36|       |		/*
   37|       |		 * ASCII character range (first row).
   38|       |		 */
   39|   146k|		if (buf[i] <= 0x7f) {
  ------------------
  |  Branch (39:7): [True: 143k, False: 3.47k]
  ------------------
   40|   143k|			continue;
   41|   143k|		}
   42|       |
   43|       |		/*
   44|       |		 * 0x80 -> 1000 0000
   45|       |		 * 0xC0 -> 1100 0000
   46|       |		 * 0xE0 -> 1110 0000
   47|       |		 *
   48|       |		 * Is unicode character is encoded using 2 bytes (second row).
   49|       |		 */
   50|  3.47k|		if ((i + 1) < len && (buf[i] & 0xe0) == 0xc0 &&
  ------------------
  |  Branch (50:7): [True: 3.46k, False: 7]
  |  Branch (50:24): [True: 1.64k, False: 1.82k]
  ------------------
   51|  1.64k|		    (buf[i + 1] & 0xc0) == 0x80)
  ------------------
  |  Branch (51:7): [True: 1.63k, False: 9]
  ------------------
   52|  1.63k|		{
   53|  1.63k|			unsigned int w;
   54|  1.63k|			w = (buf[i] & 0x1f) << 6;
   55|  1.63k|			w |= (buf[++i] & 0x3f);
   56|  1.63k|			if (w < 0x80) {
  ------------------
  |  Branch (56:8): [True: 3, False: 1.63k]
  ------------------
   57|      3|				return false;
   58|      3|			}
   59|  1.63k|			continue;
   60|  1.63k|		}
   61|       |
   62|       |		/*
   63|       |		 * 0x80 -> 1000 0000
   64|       |		 * 0xC0 -> 1100 0000
   65|       |		 * 0xE0 -> 1110 0000
   66|       |		 * 0xF0 -> 1111 0000
   67|       |		 *
   68|       |		 * Is unicode character is encoded within 3 bytes (third row).
   69|       |		 */
   70|  1.83k|		if ((i + 2) < len && (buf[i] & 0xf0) == 0xe0 &&
  ------------------
  |  Branch (70:7): [True: 1.82k, False: 15]
  |  Branch (70:24): [True: 802, False: 1.01k]
  ------------------
   71|    802|		    (buf[i + 1] & 0xc0) == 0x80 && (buf[i + 2] & 0xc0) == 0x80)
  ------------------
  |  Branch (71:7): [True: 790, False: 12]
  |  Branch (71:38): [True: 778, False: 12]
  ------------------
   72|    778|		{
   73|    778|			unsigned int w;
   74|    778|			w = (buf[i] & 0x0f) << 12;
   75|    778|			w |= (buf[++i] & 0x3f) << 6;
   76|    778|			w |= (buf[++i] & 0x3f);
   77|    778|			if (w < 0x0800) {
  ------------------
  |  Branch (77:8): [True: 7, False: 771]
  ------------------
   78|      7|				return false;
   79|      7|			}
   80|       |
   81|       |			/*
   82|       |			 * Unicode range 0xD800..0xDFFF is reserved (UTF16
   83|       |			 * surrogates)
   84|       |			 */
   85|    771|			if (w >= 0xD800 && w <= 0xDFFF) {
  ------------------
  |  Branch (85:8): [True: 499, False: 272]
  |  Branch (85:23): [True: 1, False: 498]
  ------------------
   86|      1|				return false;
   87|      1|			}
   88|    770|			continue;
   89|    771|		}
   90|       |
   91|       |		/*
   92|       |		 * 0x80 -> 1000 0000
   93|       |		 * 0xC0 -> 1100 0000
   94|       |		 * 0xE0 -> 1110 0000
   95|       |		 * 0xF0 -> 1111 0000
   96|       |		 * 0xF8 -> 1111 1000
   97|       |		 *
   98|       |		 * Is unicode character is encoded within 4 bytes (fourth row).
   99|       |		 */
  100|  1.05k|		if ((i + 3) < len && (buf[i] & 0xf8) == 0xf0 &&
  ------------------
  |  Branch (100:7): [True: 1.02k, False: 36]
  |  Branch (100:24): [True: 997, False: 25]
  ------------------
  101|    997|		    (buf[i + 1] & 0xc0) == 0x80 &&
  ------------------
  |  Branch (101:7): [True: 992, False: 5]
  ------------------
  102|    992|		    (buf[i + 2] & 0xc0) == 0x80 && (buf[i + 3] & 0xc0) == 0x80)
  ------------------
  |  Branch (102:7): [True: 991, False: 1]
  |  Branch (102:38): [True: 987, False: 4]
  ------------------
  103|    987|		{
  104|    987|			unsigned int w;
  105|    987|			w = (buf[i] & 0x07) << 18;
  106|    987|			w |= (buf[++i] & 0x3f) << 12;
  107|    987|			w |= (buf[++i] & 0x3f) << 6;
  108|    987|			w |= (buf[++i] & 0x3f);
  109|    987|			if (w < 0x10000 || w > 0x10FFFF) {
  ------------------
  |  Branch (109:8): [True: 5, False: 982]
  |  Branch (109:23): [True: 2, False: 980]
  ------------------
  110|      7|				return false;
  111|      7|			}
  112|    980|			continue;
  113|    987|		}
  114|     71|		return false;
  115|  1.05k|	}
  116|  23.4k|	return true;
  117|  23.4k|}
isc_utf8_bom:
  120|  15.7k|isc_utf8_bom(const unsigned char *buf, size_t len) {
  121|  15.7k|	REQUIRE(buf != NULL);
  ------------------
  |  |  198|  15.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  15.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 15.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  15.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  122|       |
  123|  15.7k|	if (len >= 3U && !memcmp(buf, "\xef\xbb\xbf", 3)) {
  ------------------
  |  Branch (123:6): [True: 1.52k, False: 14.2k]
  |  Branch (123:19): [True: 1, False: 1.51k]
  ------------------
  124|      1|		return true;
  125|      1|	}
  126|  15.7k|	return false;
  127|  15.7k|}

isc__uv_initialize:
  132|      2|isc__uv_initialize(void) {
  133|       |	/*
  134|       |	 * Ensure the first 3 file descriptors are open
  135|       |	 * otherwise, libuv may use one and trigger abort
  136|       |	 * when closing it.
  137|       |	 *
  138|       |	 * See https://github.com/libuv/libuv/pull/4559
  139|       |	 */
  140|      2|	do {
  141|      2|		int fd = open("/dev/null", O_RDWR, 0);
  142|      2|		RUNTIME_CHECK(fd >= 0);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  143|      2|		if (fd > STDERR_FILENO) {
  ------------------
  |  Branch (143:7): [True: 2, False: 0]
  ------------------
  144|      2|			close(fd);
  145|      2|			break;
  146|      2|		}
  147|      2|	} while (true);
  ------------------
  |  Branch (147:11): [True: 0, Folded]
  ------------------
  148|      2|#if UV_VERSION_HEX >= UV_VERSION(1, 38, 0)
  149|      2|	int r;
  150|      2|	isc_mem_create("uv", &isc__uv_mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
  151|      2|	isc_mem_setdebugging(isc__uv_mctx, 0);
  152|      2|	isc_mem_setdestroycheck(isc__uv_mctx, false);
  153|       |
  154|      2|	r = uv_replace_allocator(isc__uv_malloc, isc__uv_realloc,
  155|      2|				 isc__uv_calloc, isc__uv_free);
  156|      2|	UV_RUNTIME_CHECK(uv_replace_allocator, r);
  ------------------
  |  |   50|      2|	if (ret != 0) {                                                  \
  |  |  ------------------
  |  |  |  Branch (50:6): [True: 0, False: 2]
  |  |  ------------------
  |  |   51|      0|		FATAL_ERROR("%s failed: %s\n", #func, uv_strerror(ret)); \
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |   52|      0|	}
  ------------------
  157|      2|#endif /* UV_VERSION_HEX >= UV_VERSION(1, 38, 0) */
  158|      2|}

isc__xml_initialize:
   52|      2|isc__xml_initialize(void) {
   53|       |#ifdef HAVE_LIBXML2
   54|       |#ifndef LIBXML_HAS_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS
   55|       |	isc_mem_create("libxml2", &isc__xml_mctx);
   56|       |	isc_mem_setdebugging(isc__xml_mctx, 0);
   57|       |	isc_mem_setdestroycheck(isc__xml_mctx, false);
   58|       |
   59|       |	RUNTIME_CHECK(xmlMemSetup(isc__xml_free, isc__xml_malloc,
   60|       |				  isc__xml_realloc, isc__xml_strdup) == 0);
   61|       |#endif /* !LIBXML_HAS_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS */
   62|       |
   63|       |	xmlInitParser();
   64|       |#endif /* HAVE_LIBXML2 */
   65|      2|}

