Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: src/IceOperand.h

Issue 1868113002: Subzero: Shorten and normalize strings in non-DUMP builds. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Change prefixes Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceInst.cpp ('k') | tests_lit/llvm2ice_tests/bitcast.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.h
diff --git a/src/IceOperand.h b/src/IceOperand.h
index 06b11e69ce32a70ef62b7f157dd9dc0d10e2c952..26630dfb7584c929b10730a5cd9d5545c04a411f 100644
--- a/src/IceOperand.h
+++ b/src/IceOperand.h
@@ -209,7 +209,23 @@ private:
void initName(GlobalContext *Ctx) {
std::string Buffer;
llvm::raw_string_ostream Str(Buffer);
- Str << ".L$" << getType() << "$";
+ constexpr bool IsCompact = !BuildDefs::dump();
+ if (IsCompact) {
+ switch (getType()) {
+ case IceType_f32:
+ Str << "$F";
+ break;
+ case IceType_f64:
+ Str << "$D";
+ break;
+ default:
+ // For constant pooling diversification
+ Str << ".L$" << getType() << "$";
+ break;
+ }
+ } else {
+ Str << ".L$" << getType() << "$";
+ }
// Print hex characters byte by byte, starting from the most significant
// byte. NOTE: This ordering assumes Subzero runs on a little-endian
// platform. That means the possibility of different label names depending
@@ -223,7 +239,7 @@ private:
// For a floating-point value in DecorateAsm mode, also append the value in
// human-readable sprintf form, changing '+' to 'p' and '-' to 'm' to
// maintain valid asm labels.
- if (std::is_floating_point<PrimType>::value && !BuildDefs::minimal() &&
+ if (BuildDefs::dump() && std::is_floating_point<PrimType>::value &&
getFlags().getDecorateAsm()) {
char Buf[30];
snprintf(Buf, llvm::array_lengthof(Buf), "$%g", (double)Value);
« no previous file with comments | « src/IceInst.cpp ('k') | tests_lit/llvm2ice_tests/bitcast.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698