LLDB mainline
ArchSpec.h
Go to the documentation of this file.
1//===-- ArchSpec.h ----------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_UTILITY_ARCHSPEC_H
10#define LLDB_UTILITY_ARCHSPEC_H
11
14#include "lldb/lldb-forward.h"
16#include "llvm/ADT/StringRef.h"
17#include "llvm/TargetParser/SubtargetFeature.h"
18#include "llvm/TargetParser/Triple.h"
19#include <cstddef>
20#include <cstdint>
21#include <string>
22
23namespace lldb_private {
24
25/// \class ArchSpec ArchSpec.h "lldb/Utility/ArchSpec.h" An architecture
26/// specification class.
27///
28/// A class designed to be created from a cpu type and subtype, a
29/// string representation, or an llvm::Triple. Keeping all of the conversions
30/// of strings to architecture enumeration values confined to this class
31/// allows new architecture support to be added easily.
32class ArchSpec {
33public:
49
50 // Masks for the ases word of an ABI flags structure.
51 enum MIPSASE {
52 eMIPSAse_dsp = 0x00000001, // DSP ASE
53 eMIPSAse_dspr2 = 0x00000002, // DSP R2 ASE
54 eMIPSAse_eva = 0x00000004, // Enhanced VA Scheme
55 eMIPSAse_mcu = 0x00000008, // MCU (MicroController) ASE
56 eMIPSAse_mdmx = 0x00000010, // MDMX ASE
57 eMIPSAse_mips3d = 0x00000020, // MIPS-3D ASE
58 eMIPSAse_mt = 0x00000040, // MT ASE
59 eMIPSAse_smartmips = 0x00000080, // SmartMIPS ASE
60 eMIPSAse_virt = 0x00000100, // VZ ASE
61 eMIPSAse_msa = 0x00000200, // MSA ASE
62 eMIPSAse_mips16 = 0x00000400, // MIPS16 ASE
63 eMIPSAse_micromips = 0x00000800, // MICROMIPS ASE
64 eMIPSAse_xpa = 0x00001000, // XPA ASE
65 eMIPSAse_mask = 0x00001fff,
66 eMIPSABI_O32 = 0x00002000,
67 eMIPSABI_N32 = 0x00004000,
68 eMIPSABI_N64 = 0x00008000,
69 eMIPSABI_O64 = 0x00020000,
70 eMIPSABI_EABI32 = 0x00040000,
71 eMIPSABI_EABI64 = 0x00080000,
72 eMIPSABI_mask = 0x000ff000
73 };
74
75 // MIPS Floating point ABI Values
77 eMIPS_ABI_FP_ANY = 0x00000000,
78 eMIPS_ABI_FP_DOUBLE = 0x00100000, // hard float / -mdouble-float
79 eMIPS_ABI_FP_SINGLE = 0x00200000, // hard float / -msingle-float
80 eMIPS_ABI_FP_SOFT = 0x00300000, // soft float
81 eMIPS_ABI_FP_OLD_64 = 0x00400000, // -mips32r2 -mfp64
82 eMIPS_ABI_FP_XX = 0x00500000, // -mfpxx
83 eMIPS_ABI_FP_64 = 0x00600000, // -mips32r2 -mfp64
84 eMIPS_ABI_FP_64A = 0x00700000, // -mips32r2 -mfp64 -mno-odd-spreg
85 eMIPS_ABI_FP_mask = 0x00700000
86 };
87
88 // ARM specific e_flags
89 enum ARMeflags {
90 eARM_abi_soft_float = 0x00000200,
92 };
93
95 eRISCV_rvc = 0x00000001, /// RVC, +c
96 eRISCV_float_abi_soft = 0x00000000, /// soft float
97 eRISCV_float_abi_single = 0x00000002, /// single precision floating point, +f
98 eRISCV_float_abi_double = 0x00000004, /// double precision floating point, +d
99 eRISCV_float_abi_quad = 0x00000006, /// quad precision floating point, +q
101 eRISCV_rve = 0x00000008, /// RVE, +e
102 eRISCV_tso = 0x00000010, /// RVTSO (total store ordering)
103 };
104
110
112 eLoongArch_abi_soft_float = 0x00000000, /// soft float
114 0x00000001, /// single precision floating point, +f
116 0x00000002, /// double precision floating point, +d
118 };
119
125
126 enum Core {
147
167
188
190
204
208
210
212
214
219
221 eCore_x86_64_x86_64h, // Haswell enabled x86_64
223
227
230
233
236
237 eCore_arc, // little endian ARC
238
240
242
244
246 // The following constants are used for wildcard matching only
254
257
260
263
266
269
272
275
278
281
284
287
290
291 };
292
293 /// Default constructor.
294 ///
295 /// Default constructor that initializes the object with invalid cpu type
296 /// and subtype values.
298
299 /// Constructor over triple.
300 ///
301 /// Constructs an ArchSpec with properties consistent with the given Triple.
302 explicit ArchSpec(const llvm::Triple &triple);
303 explicit ArchSpec(const char *triple_cstr);
304 explicit ArchSpec(llvm::StringRef triple_str);
305 /// Constructor over architecture name.
306 ///
307 /// Constructs an ArchSpec with properties consistent with the given object
308 /// type and architecture name.
309 explicit ArchSpec(ArchitectureType arch_type, uint32_t cpu_type,
310 uint32_t cpu_subtype);
311
312 /// Destructor.
314
315 /// Returns true if the OS, vendor and environment fields of the triple are
316 /// unset. The triple is expected to be normalized
317 /// (llvm::Triple::normalize).
318 static bool ContainsOnlyArch(const llvm::Triple &normalized_triple);
319
320 static void ListSupportedArchNames(StringList &list);
321 static void AutoComplete(CompletionRequest &request);
322
323 /// Returns a static string representing the current architecture.
324 ///
325 /// \return A static string corresponding to the current
326 /// architecture.
327 const char *GetArchitectureName() const;
328
329 /// if MIPS architecture return true.
330 ///
331 /// \return a boolean value.
332 bool IsMIPS() const;
333
334 /// If NVPTX architecture return true.
335 ///
336 /// \return a boolean value.
337 bool IsNVPTX() const;
338
339 /// Returns a string representing current architecture as a target CPU for
340 /// tools like compiler, disassembler etc.
341 ///
342 /// \return A string representing target CPU for the current
343 /// architecture.
344 std::string GetClangTargetCPU() const;
345
346 /// Return a string representing target application ABI.
347 ///
348 /// \return A string representing target application ABI.
349 std::string GetTargetABI() const;
350
351 /// Clears the object state.
352 ///
353 /// Clears the object state back to a default invalid state.
354 void Clear();
355
356 /// Returns the size in bytes of an address of the current architecture.
357 ///
358 /// \return The byte size of an address of the current architecture.
359 uint32_t GetAddressByteSize() const;
360
361 /// Returns a machine family for the current architecture.
362 ///
363 /// \return An LLVM arch type.
364 llvm::Triple::ArchType GetMachine() const;
365
366 /// Tests if this ArchSpec is valid.
367 ///
368 /// \return True if the current architecture is valid, false
369 /// otherwise.
370 bool IsValid() const {
372 }
373 explicit operator bool() const { return IsValid(); }
374
376 return !m_triple.getVendorName().empty();
377 }
378
379 bool TripleOSWasSpecified() const { return !m_triple.getOSName().empty(); }
380
382 return m_triple.hasEnvironment();
383 }
384
385 /// Merges fields from another ArchSpec into this ArchSpec.
386 ///
387 /// This will use the supplied ArchSpec to fill in any fields of the triple
388 /// in this ArchSpec which were unspecified. This can be used to refine a
389 /// generic ArchSpec with a more specific one. For example, if this
390 /// ArchSpec's triple is something like i386-unknown-unknown-unknown, and we
391 /// have a triple which is x64-pc-windows-msvc, then merging that triple
392 /// into this one will result in the triple i386-pc-windows-msvc.
393 ///
394 void MergeFrom(const ArchSpec &other);
395
396 /// Change the architecture object type, CPU type and OS type.
397 ///
398 /// \param[in] arch_type The object type of this ArchSpec.
399 ///
400 /// \param[in] cpu The required CPU type.
401 ///
402 /// \param[in] os The optional OS type
403 /// The default value of 0 was chosen to from the ELF spec value
404 /// ELFOSABI_NONE. ELF is the only one using this parameter. If another
405 /// format uses this parameter and 0 does not work, use a value over
406 /// 255 because in the ELF header this is value is only a byte.
407 ///
408 /// \return True if the object, and CPU were successfully set.
409 ///
410 /// As a side effect, the vendor value is usually set to unknown. The
411 /// exceptions are
412 /// aarch64-apple-ios
413 /// arm-apple-ios
414 /// thumb-apple-ios
415 /// x86-apple-
416 /// x86_64-apple-
417 ///
418 /// As a side effect, the os value is usually set to unknown The exceptions
419 /// are
420 /// *-*-aix
421 /// aarch64-apple-ios
422 /// arm-apple-ios
423 /// thumb-apple-ios
424 /// powerpc-apple-darwin
425 /// *-*-freebsd
426 /// *-*-linux
427 /// *-*-netbsd
428 /// *-*-openbsd
429 /// *-*-solaris
430 bool SetArchitecture(ArchitectureType arch_type, uint32_t cpu, uint32_t sub,
431 uint32_t os = 0);
432
433 /// Returns the byte order for the architecture specification.
434 ///
435 /// \return The endian enumeration for the current endianness of
436 /// the architecture specification
438
439 /// Sets this ArchSpec's byte order.
440 ///
441 /// In the common case there is no need to call this method as the byte
442 /// order can almost always be determined by the architecture. However, many
443 /// CPU's are bi-endian (ARM, Alpha, PowerPC, etc) and the default/assumed
444 /// byte order may be incorrect.
445 void SetByteOrder(lldb::ByteOrder byte_order) { m_byte_order = byte_order; }
446
447 uint32_t GetMinimumOpcodeByteSize() const;
448
449 uint32_t GetMaximumOpcodeByteSize() const;
450
451 Core GetCore() const { return m_core; }
452
453 uint32_t GetMachOCPUType() const;
454
455 uint32_t GetMachOCPUSubType() const;
456
457 /// Architecture triple accessor.
458 ///
459 /// \return A triple describing this ArchSpec.
460 llvm::Triple &GetTriple() { return m_triple; }
461
462 /// Architecture triple accessor.
463 ///
464 /// \return A triple describing this ArchSpec.
465 const llvm::Triple &GetTriple() const { return m_triple; }
466
467 void DumpTriple(llvm::raw_ostream &s) const;
468
469 /// Architecture triple setter.
470 ///
471 /// Configures this ArchSpec according to the given triple. If the triple
472 /// has unknown components in all of the vendor, OS, and the optional
473 /// environment field (i.e. "i386-unknown-unknown") then default values are
474 /// taken from the host. Architecture and environment components are used
475 /// to further resolve the CPU type and subtype, endian characteristics,
476 /// etc.
477 ///
478 /// \return A triple describing this ArchSpec.
479 bool SetTriple(const llvm::Triple &triple);
480
481 bool SetTriple(llvm::StringRef triple_str);
482
483 /// Returns the default endianness of the architecture.
484 ///
485 /// \return The endian enumeration for the default endianness of
486 /// the architecture.
488
489 /// Returns true if 'char' is a signed type by default in the architecture
490 /// false otherwise
491 ///
492 /// \return True if 'char' is a signed type by default on the
493 /// architecture and false otherwise.
494 bool CharIsSignedByDefault() const;
495
497
498 /// Compare this ArchSpec to another ArchSpec. \a match specifies the kind of
499 /// matching that is to be done. CompatibleMatch requires only a compatible
500 /// cpu type (e.g., armv7s is compatible with armv7). ExactMatch requires an
501 /// exact match (armv7s is not an exact match with armv7).
502 ///
503 /// \return true if the two ArchSpecs match.
504 bool IsMatch(const ArchSpec &rhs, MatchType match) const;
505
506 /// Shorthand for IsMatch(rhs, ExactMatch).
507 bool IsExactMatch(const ArchSpec &rhs) const {
508 return IsMatch(rhs, ExactMatch);
509 }
510
511 /// Shorthand for IsMatch(rhs, CompatibleMatch).
512 bool IsCompatibleMatch(const ArchSpec &rhs) const {
513 return IsMatch(rhs, CompatibleMatch);
514 }
515
516 bool IsFullySpecifiedTriple() const;
517
518 /// Detect whether this architecture uses thumb code exclusively
519 ///
520 /// Some embedded ARM chips (e.g. the ARM Cortex M0-7 line) can only execute
521 /// the Thumb instructions, never Arm. We should normally pick up
522 /// arm/thumbness from their the processor status bits (cpsr/xpsr) or hints
523 /// on each function - but when doing bare-boards low level debugging
524 /// (especially common with these embedded processors), we may not have
525 /// those things easily accessible.
526 ///
527 /// \return true if this is an arm ArchSpec which can only execute Thumb
528 /// instructions
529 bool IsAlwaysThumbInstructions() const;
530
531 uint32_t GetFlags() const { return m_flags; }
532
533 void SetFlags(uint32_t flags) { m_flags = flags; }
534
535 void SetFlags(const std::string &elf_abi);
536
537 const llvm::SubtargetFeatures &GetSubtargetFeatures() const {
539 }
540
541 void SetSubtargetFeatures(llvm::SubtargetFeatures &&subtarget_features) {
542 m_subtarget_features = std::move(subtarget_features);
543 }
544
545protected:
546 void UpdateCore();
547
548 llvm::Triple m_triple;
551
552 // Additional arch flags which we cannot get from triple and core For MIPS
553 // these are application specific extensions like micromips, mips16 etc.
554 uint32_t m_flags = 0;
555
556 llvm::SubtargetFeatures m_subtarget_features;
557
558 // Called when m_def or m_entry are changed. Fills in all remaining members
559 // with default values.
560 void CoreUpdated(bool update_triple);
561};
562
563/// \fn bool operator< (const ArchSpec& lhs, const ArchSpec& rhs) Less than
564/// operator.
565///
566/// Tests two ArchSpec objects to see if \a lhs is less than \a rhs.
567///
568/// \param[in] lhs The Left Hand Side ArchSpec object to compare. \param[in]
569/// rhs The Left Hand Side ArchSpec object to compare.
570///
571/// \return true if \a lhs is less than \a rhs
572bool operator<(const ArchSpec &lhs, const ArchSpec &rhs);
573bool operator==(const ArchSpec &lhs, const ArchSpec &rhs);
574bool operator!=(const ArchSpec &lhs, const ArchSpec &rhs);
575
576bool ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, ArchSpec &arch);
577
578} // namespace lldb_private
579
580#endif // LLDB_UTILITY_ARCHSPEC_H
An architecture specification class.
Definition ArchSpec.h:32
static void ListSupportedArchNames(StringList &list)
Definition ArchSpec.cpp:290
bool IsFullySpecifiedTriple() const
llvm::SubtargetFeatures m_subtarget_features
Definition ArchSpec.h:556
void SetByteOrder(lldb::ByteOrder byte_order)
Sets this ArchSpec's byte order.
Definition ArchSpec.h:445
bool IsNVPTX() const
If NVPTX architecture return true.
Definition ArchSpec.cpp:566
static void AutoComplete(CompletionRequest &request)
Definition ArchSpec.cpp:295
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
Definition ArchSpec.cpp:690
bool IsValid() const
Tests if this ArchSpec is valid.
Definition ArchSpec.h:370
void Clear()
Clears the object state.
Definition ArchSpec.cpp:547
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition ArchSpec.h:460
void SetFlags(uint32_t flags)
Definition ArchSpec.h:533
bool IsAlwaysThumbInstructions() const
Detect whether this architecture uses thumb code exclusively.
bool TripleEnvironmentWasSpecified() const
Definition ArchSpec.h:381
bool IsMatch(const ArchSpec &rhs, MatchType match) const
Compare this ArchSpec to another ArchSpec.
Definition ArchSpec.cpp:976
bool SetTriple(const llvm::Triple &triple)
Architecture triple setter.
Definition ArchSpec.cpp:748
llvm::Triple m_triple
Definition ArchSpec.h:548
lldb::ByteOrder GetDefaultEndian() const
Returns the default endianness of the architecture.
Definition ArchSpec.cpp:704
lldb::ByteOrder m_byte_order
Definition ArchSpec.h:550
~ArchSpec()
Destructor.
bool SetArchitecture(ArchitectureType arch_type, uint32_t cpu, uint32_t sub, uint32_t os=0)
Change the architecture object type, CPU type and OS type.
Definition ArchSpec.cpp:852
void MergeFrom(const ArchSpec &other)
Merges fields from another ArchSpec into this ArchSpec.
Definition ArchSpec.cpp:810
void DumpTriple(llvm::raw_ostream &s) const
uint32_t GetMachOCPUSubType() const
Definition ArchSpec.cpp:670
void CoreUpdated(bool update_triple)
@ eLoongArch_abi_single_float
soft float
Definition ArchSpec.h:113
@ eLoongArch_abi_mask
double precision floating point, +d
Definition ArchSpec.h:117
@ eLoongArch_abi_double_float
single precision floating point, +f
Definition ArchSpec.h:115
bool IsMIPS() const
if MIPS architecture return true.
Definition ArchSpec.cpp:564
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
Definition ArchSpec.h:512
bool CharIsSignedByDefault() const
Returns true if 'char' is a signed type by default in the architecture false otherwise.
Definition ArchSpec.cpp:711
bool IsExactMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, ExactMatch).
Definition ArchSpec.h:507
const llvm::SubtargetFeatures & GetSubtargetFeatures() const
Definition ArchSpec.h:537
ArchSpec()
Default constructor.
uint32_t GetMachOCPUType() const
Definition ArchSpec.cpp:658
std::string GetTargetABI() const
Return a string representing target application ABI.
Definition ArchSpec.cpp:568
uint32_t GetMinimumOpcodeByteSize() const
Definition ArchSpec.cpp:931
uint32_t GetFlags() const
Definition ArchSpec.h:531
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
Definition ArchSpec.cpp:739
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
Definition ArchSpec.cpp:682
@ eRISCV_float_abi_double
single precision floating point, +f
Definition ArchSpec.h:98
@ eRISCV_float_abi_soft
RVC, +c.
Definition ArchSpec.h:96
@ eRISCV_float_abi_quad
double precision floating point, +d
Definition ArchSpec.h:99
@ eRISCV_float_abi_mask
quad precision floating point, +q
Definition ArchSpec.h:100
@ eRISCV_float_abi_single
soft float
Definition ArchSpec.h:97
std::string GetClangTargetCPU() const
Returns a string representing current architecture as a target CPU for tools like compiler,...
Definition ArchSpec.cpp:604
uint32_t GetMaximumOpcodeByteSize() const
Definition ArchSpec.cpp:938
bool TripleVendorWasSpecified() const
Definition ArchSpec.h:375
Core GetCore() const
Definition ArchSpec.h:451
bool TripleOSWasSpecified() const
Definition ArchSpec.h:379
static bool ContainsOnlyArch(const llvm::Triple &normalized_triple)
Returns true if the OS, vendor and environment fields of the triple are unset.
Definition ArchSpec.cpp:803
const llvm::Triple & GetTriple() const
Architecture triple accessor.
Definition ArchSpec.h:465
const char * GetArchitectureName() const
Returns a static string representing the current architecture.
Definition ArchSpec.cpp:557
void SetSubtargetFeatures(llvm::SubtargetFeatures &&subtarget_features)
Definition ArchSpec.h:541
"lldb/Utility/ArgCompletionRequest.h"
A class that represents a running process on the host machine.
bool ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, ArchSpec &arch)
Definition ArchSpec.cpp:754
bool operator!=(const Address &lhs, const Address &rhs)
Definition Address.cpp:1016
bool operator==(const Address &lhs, const Address &rhs)
Definition Address.cpp:1010
bool operator<(const Address &lhs, const Address &rhs)
Definition Address.cpp:979
ByteOrder
Byte ordering definitions.