| 433 | |
| 434 | |
| 435 | bool Encoder::isNarrowValue(const Value *value) { |
| 436 | if (value->tag() >= kArrayTag) |
| 437 | return value->countIsZero(); |
| 438 | else |
| 439 | return value->dataSize() <= kNarrow; |
| 440 | } |
| 441 | |
| 442 | |
| 443 | // Returns the minimum address used by the given Value (transitively). |
nothing calls this directly
no test coverage detected