Searched refs:label_nulls (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp3108 int label_nulls = 0; local
3109 if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
3110 if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
3111 if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
3112 assert(label_nulls <= 1 ||
3113 (L_slow_path == &L_fallthrough && label_nulls <= 2 && !need_slow_path),
3207 int label_nulls = 0; local
3208 if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
3209 if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
3210 assert(label_nulls <
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp9435 int label_nulls = 0; local
9436 if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
9437 if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
9438 if (L_slow_path == NULL) { L_slow_path = &L_fallthrough; label_nulls++; }
9439 assert(label_nulls <= 1, "at most one NULL in the batch");
9534 int label_nulls = 0; local
9535 if (L_success == NULL) { L_success = &L_fallthrough; label_nulls++; }
9536 if (L_failure == NULL) { L_failure = &L_fallthrough; label_nulls++; }
9537 assert(label_nulls <= 1, "at most one NULL in the batch");

Completed in 76 milliseconds