OLD | NEW |
1 //===- subzero/src/IceOperand.h - High-level operands -----------*- C++ -*-===// | 1 //===- subzero/src/IceOperand.h - High-level operands -----------*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 } | 202 } |
203 | 203 |
204 virtual bool shouldBeRandomizedOrPooled() const override { return false; } | 204 virtual bool shouldBeRandomizedOrPooled() const override { return false; } |
205 | 205 |
206 private: | 206 private: |
207 ConstantPrimitive(Type Ty, PrimType Value) : Constant(K, Ty), Value(Value) {} | 207 ConstantPrimitive(Type Ty, PrimType Value) : Constant(K, Ty), Value(Value) {} |
208 | 208 |
209 void initName(GlobalContext *Ctx) { | 209 void initName(GlobalContext *Ctx) { |
210 std::string Buffer; | 210 std::string Buffer; |
211 llvm::raw_string_ostream Str(Buffer); | 211 llvm::raw_string_ostream Str(Buffer); |
212 Str << ".L$" << getType() << "$"; | 212 constexpr bool IsCompact = !BuildDefs::dump(); |
| 213 if (IsCompact) { |
| 214 switch (getType()) { |
| 215 case IceType_f32: |
| 216 Str << "$F"; |
| 217 break; |
| 218 case IceType_f64: |
| 219 Str << "$D"; |
| 220 break; |
| 221 default: |
| 222 // For constant pooling diversification |
| 223 Str << ".L$" << getType() << "$"; |
| 224 break; |
| 225 } |
| 226 } else { |
| 227 Str << ".L$" << getType() << "$"; |
| 228 } |
213 // Print hex characters byte by byte, starting from the most significant | 229 // Print hex characters byte by byte, starting from the most significant |
214 // byte. NOTE: This ordering assumes Subzero runs on a little-endian | 230 // byte. NOTE: This ordering assumes Subzero runs on a little-endian |
215 // platform. That means the possibility of different label names depending | 231 // platform. That means the possibility of different label names depending |
216 // on the endian-ness of the platform where Subzero runs. | 232 // on the endian-ness of the platform where Subzero runs. |
217 for (unsigned i = 0; i < sizeof(Value); ++i) { | 233 for (unsigned i = 0; i < sizeof(Value); ++i) { |
218 constexpr unsigned HexWidthChars = 2; | 234 constexpr unsigned HexWidthChars = 2; |
219 unsigned Offset = sizeof(Value) - 1 - i; | 235 unsigned Offset = sizeof(Value) - 1 - i; |
220 Str << llvm::format_hex_no_prefix( | 236 Str << llvm::format_hex_no_prefix( |
221 *(Offset + (const unsigned char *)&Value), HexWidthChars); | 237 *(Offset + (const unsigned char *)&Value), HexWidthChars); |
222 } | 238 } |
223 // For a floating-point value in DecorateAsm mode, also append the value in | 239 // For a floating-point value in DecorateAsm mode, also append the value in |
224 // human-readable sprintf form, changing '+' to 'p' and '-' to 'm' to | 240 // human-readable sprintf form, changing '+' to 'p' and '-' to 'm' to |
225 // maintain valid asm labels. | 241 // maintain valid asm labels. |
226 if (std::is_floating_point<PrimType>::value && !BuildDefs::minimal() && | 242 if (BuildDefs::dump() && std::is_floating_point<PrimType>::value && |
227 getFlags().getDecorateAsm()) { | 243 getFlags().getDecorateAsm()) { |
228 char Buf[30]; | 244 char Buf[30]; |
229 snprintf(Buf, llvm::array_lengthof(Buf), "$%g", (double)Value); | 245 snprintf(Buf, llvm::array_lengthof(Buf), "$%g", (double)Value); |
230 for (unsigned i = 0; i < llvm::array_lengthof(Buf) && Buf[i]; ++i) { | 246 for (unsigned i = 0; i < llvm::array_lengthof(Buf) && Buf[i]; ++i) { |
231 if (Buf[i] == '-') | 247 if (Buf[i] == '-') |
232 Buf[i] = 'm'; | 248 Buf[i] = 'm'; |
233 else if (Buf[i] == '+') | 249 else if (Buf[i] == '+') |
234 Buf[i] = 'p'; | 250 Buf[i] = 'p'; |
235 } | 251 } |
236 Str << Buf; | 252 Str << Buf; |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
964 private: | 980 private: |
965 const Cfg *Func; | 981 const Cfg *Func; |
966 MetadataKind Kind; | 982 MetadataKind Kind; |
967 CfgVector<VariableTracking> Metadata; | 983 CfgVector<VariableTracking> Metadata; |
968 const static InstDefList NoDefinitions; | 984 const static InstDefList NoDefinitions; |
969 }; | 985 }; |
970 | 986 |
971 } // end of namespace Ice | 987 } // end of namespace Ice |
972 | 988 |
973 #endif // SUBZERO_SRC_ICEOPERAND_H | 989 #endif // SUBZERO_SRC_ICEOPERAND_H |
OLD | NEW |