Added text options to -pgo-view-counts and -pgo-view-raw-counts that dump block frequency and branch probability info in text.
This is useful when the graph is very large and complex (the dot command crashes, lines/edges too close to tell apart, hard to navigate without textual search) or simply when text is preferred.
To share most of the code, I think it is better to make PGOViewRawCounts an enum type option, just like:
ViewBlockFreqPropagationDAG
By doing so, we can do:
-pgo-view-raw-counts=graph --> dump dot graph
-pgo-view-raw-counts=text --> dump text
similarly for the other option.