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
321
323
325 // The following constants are used for wildcard matching only
333
336
339
342
345
348
351
354
357
360
363
366
369
372
373 };
374
375 /// Default constructor.
376 ///
377 /// Default constructor that initializes the object with invalid cpu type
378 /// and subtype values.
380
381 /// Constructor over triple.
382 ///
383 /// Constructs an ArchSpec with properties consistent with the given Triple.
384 explicit ArchSpec(const llvm::Triple &triple);
385 explicit ArchSpec(const char *triple_cstr);
386 explicit ArchSpec(llvm::StringRef triple_str);
387 /// Constructor over architecture name.
388 ///
389 /// Constructs an ArchSpec with properties consistent with the given object
390 /// type and architecture name.
391 explicit ArchSpec(ArchitectureType arch_type, uint32_t cpu_type,
392 uint32_t cpu_subtype);
393
394 /// Destructor.
396
397 /// Returns true if the OS, vendor and environment fields of the triple are
398 /// unset. The triple is expected to be normalized
399 /// (llvm::Triple::normalize).
400 static bool ContainsOnlyArch(const llvm::Triple &normalized_triple);
401
402 static void ListSupportedArchNames(StringList &list);
403 static void AutoComplete(CompletionRequest &request);
404
405 /// Returns a static string representing the current architecture.
406 ///
407 /// \return A static string corresponding to the current
408 /// architecture.
409 const char *GetArchitectureName() const;
410
411 /// if MIPS architecture return true.
412 ///
413 /// \return a boolean value.
414 bool IsMIPS() const;
415
416 /// If NVPTX architecture return true.
417 ///
418 /// \return a boolean value.
419 bool IsNVPTX() const;
420
421 /// Returns a string representing current architecture as a target CPU for
422 /// tools like compiler, disassembler etc.
423 ///
424 /// \return A string representing target CPU for the current
425 /// architecture.
426 std::string GetClangTargetCPU() const;
427
428 /// Return a string representing target application ABI.
429 ///
430 /// \return A string representing target application ABI.
431 std::string GetTargetABI() const;
432
433 /// Clears the object state.
434 ///
435 /// Clears the object state back to a default invalid state.
436 void Clear();
437
438 /// Returns the size in bytes of an address of the current architecture.
439 ///
440 /// \return The byte size of an address of the current architecture.
441 uint32_t GetAddressByteSize() const;
442
443 /// Returns a machine family for the current architecture.
444 ///
445 /// \return An LLVM arch type.
446 llvm::Triple::ArchType GetMachine() const;
447
448 /// Tests if this ArchSpec is valid.
449 ///
450 /// \return True if the current architecture is valid, false
451 /// otherwise.
452 bool IsValid() const {
454 }
455 explicit operator bool() const { return IsValid(); }
456
458 return !m_triple.getVendorName().empty();
459 }
460
461 bool TripleOSWasSpecified() const { return !m_triple.getOSName().empty(); }
462
464 return m_triple.hasEnvironment();
465 }
466
467 /// Merges fields from another ArchSpec into this ArchSpec.
468 ///
469 /// This will use the supplied ArchSpec to fill in any fields of the triple
470 /// in this ArchSpec which were unspecified. This can be used to refine a
471 /// generic ArchSpec with a more specific one. For example, if this
472 /// ArchSpec's triple is something like i386-unknown-unknown-unknown, and we
473 /// have a triple which is x64-pc-windows-msvc, then merging that triple
474 /// into this one will result in the triple i386-pc-windows-msvc.
475 ///
476 void MergeFrom(const ArchSpec &other);
477
478 /// Change the architecture object type, CPU type and OS type.
479 ///
480 /// \param[in] arch_type The object type of this ArchSpec.
481 ///
482 /// \param[in] cpu The required CPU type.
483 ///
484 /// \param[in] os The optional OS type
485 /// The default value of 0 was chosen to from the ELF spec value
486 /// ELFOSABI_NONE. ELF is the only one using this parameter. If another
487 /// format uses this parameter and 0 does not work, use a value over
488 /// 255 because in the ELF header this is value is only a byte.
489 ///
490 /// \return True if the object, and CPU were successfully set.
491 ///
492 /// As a side effect, the vendor value is usually set to unknown. The
493 /// exceptions are
494 /// aarch64-apple-ios
495 /// arm-apple-ios
496 /// thumb-apple-ios
497 /// x86-apple-
498 /// x86_64-apple-
499 ///
500 /// As a side effect, the os value is usually set to unknown The exceptions
501 /// are
502 /// *-*-aix
503 /// aarch64-apple-ios
504 /// arm-apple-ios
505 /// thumb-apple-ios
506 /// powerpc-apple-darwin
507 /// *-*-freebsd
508 /// *-*-linux
509 /// *-*-netbsd
510 /// *-*-openbsd
511 /// *-*-solaris
512 bool SetArchitecture(ArchitectureType arch_type, uint32_t cpu, uint32_t sub,
513 uint32_t os = 0);
514
515 /// Returns the byte order for the architecture specification.
516 ///
517 /// \return The endian enumeration for the current endianness of
518 /// the architecture specification
520
521 /// Sets this ArchSpec's byte order.
522 ///
523 /// In the common case there is no need to call this method as the byte
524 /// order can almost always be determined by the architecture. However, many
525 /// CPU's are bi-endian (ARM, Alpha, PowerPC, etc) and the default/assumed
526 /// byte order may be incorrect.
527 void SetByteOrder(lldb::ByteOrder byte_order) { m_byte_order = byte_order; }
528
529 uint32_t GetMinimumOpcodeByteSize() const;
530
531 uint32_t GetMaximumOpcodeByteSize() const;
532
533 Core GetCore() const { return m_core; }
534
535 uint32_t GetMachOCPUType() const;
536
537 uint32_t GetMachOCPUSubType() const;
538
539 uint32_t GetElfCPUSubType() const;
540
541 /// Architecture triple accessor.
542 ///
543 /// \return A triple describing this ArchSpec.
544 llvm::Triple &GetTriple() { return m_triple; }
545
546 /// Architecture triple accessor.
547 ///
548 /// \return A triple describing this ArchSpec.
549 const llvm::Triple &GetTriple() const { return m_triple; }
550
551 void DumpTriple(llvm::raw_ostream &s) const;
552
553 /// Architecture triple setter.
554 ///
555 /// Configures this ArchSpec according to the given triple. If the triple
556 /// has unknown components in all of the vendor, OS, and the optional
557 /// environment field (i.e. "i386-unknown-unknown") then default values are
558 /// taken from the host. Architecture and environment components are used
559 /// to further resolve the CPU type and subtype, endian characteristics,
560 /// etc.
561 ///
562 /// \return A triple describing this ArchSpec.
563 bool SetTriple(const llvm::Triple &triple);
564
565 bool SetTriple(llvm::StringRef triple_str);
566
567 /// Returns the default endianness of the architecture.
568 ///
569 /// \return The endian enumeration for the default endianness of
570 /// the architecture.
572
573 /// Returns true if 'char' is a signed type by default in the architecture
574 /// false otherwise
575 ///
576 /// \return True if 'char' is a signed type by default on the
577 /// architecture and false otherwise.
578 bool CharIsSignedByDefault() const;
579
581
582 /// Compare this ArchSpec to another ArchSpec. \a match specifies the kind of
583 /// matching that is to be done. CompatibleMatch requires only a compatible
584 /// cpu type (e.g., armv7s is compatible with armv7). ExactMatch requires an
585 /// exact match (armv7s is not an exact match with armv7).
586 ///
587 /// \return true if the two ArchSpecs match.
588 bool IsMatch(const ArchSpec &rhs, MatchType match) const;
589
590 /// Shorthand for IsMatch(rhs, ExactMatch).
591 bool IsExactMatch(const ArchSpec &rhs) const {
592 return IsMatch(rhs, ExactMatch);
593 }
594
595 /// Shorthand for IsMatch(rhs, CompatibleMatch).
596 bool IsCompatibleMatch(const ArchSpec &rhs) const {
597 return IsMatch(rhs, CompatibleMatch);
598 }
599
600 bool IsFullySpecifiedTriple() const;
601
602 /// Detect whether this architecture uses thumb code exclusively
603 ///
604 /// Some embedded ARM chips (e.g. the ARM Cortex M0-7 line) can only execute
605 /// the Thumb instructions, never Arm. We should normally pick up
606 /// arm/thumbness from their the processor status bits (cpsr/xpsr) or hints
607 /// on each function - but when doing bare-boards low level debugging
608 /// (especially common with these embedded processors), we may not have
609 /// those things easily accessible.
610 ///
611 /// \return true if this is an arm ArchSpec which can only execute Thumb
612 /// instructions
613 bool IsAlwaysThumbInstructions() const;
614
615 uint32_t GetFlags() const { return m_flags; }
616
617 void SetFlags(uint32_t flags) { m_flags = flags; }
618
619 void SetFlags(const std::string &elf_abi);
620
621 const llvm::SubtargetFeatures &GetSubtargetFeatures() const {
623 }
624
625 void SetSubtargetFeatures(llvm::SubtargetFeatures &&subtarget_features) {
626 m_subtarget_features = std::move(subtarget_features);
627 }
628
629protected:
630 void UpdateCore();
631
632 llvm::Triple m_triple;
635
636 // Additional arch flags which we cannot get from triple and core For MIPS
637 // these are application specific extensions like micromips, mips16 etc.
638 uint32_t m_flags = 0;
639
640 llvm::SubtargetFeatures m_subtarget_features;
641
642 // Called when m_def or m_entry are changed. Fills in all remaining members
643 // with default values.
644 void CoreUpdated(bool update_triple);
645};
646
647/// \fn bool operator< (const ArchSpec& lhs, const ArchSpec& rhs) Less than
648/// operator.
649///
650/// Tests two ArchSpec objects to see if \a lhs is less than \a rhs.
651///
652/// \param[in] lhs The Left Hand Side ArchSpec object to compare. \param[in]
653/// rhs The Left Hand Side ArchSpec object to compare.
654///
655/// \return true if \a lhs is less than \a rhs
656bool operator<(const ArchSpec &lhs, const ArchSpec &rhs);
657bool operator==(const ArchSpec &lhs, const ArchSpec &rhs);
658bool operator!=(const ArchSpec &lhs, const ArchSpec &rhs);
659
660bool ParseMachCPUDashSubtypeTriple(llvm::StringRef triple_str, ArchSpec &arch);
661
662} // namespace lldb_private
663
664#endif // LLDB_UTILITY_ARCHSPEC_H
An architecture specification class.
Definition ArchSpec.h:32
static void ListSupportedArchNames(StringList &list)
Definition ArchSpec.cpp:386
bool IsFullySpecifiedTriple() const
llvm::SubtargetFeatures m_subtarget_features
Definition ArchSpec.h:640
void SetByteOrder(lldb::ByteOrder byte_order)
Sets this ArchSpec's byte order.
Definition ArchSpec.h:527
bool IsNVPTX() const
If NVPTX architecture return true.
Definition ArchSpec.cpp:749
static void AutoComplete(CompletionRequest &request)
Definition ArchSpec.cpp:391
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
Definition ArchSpec.cpp:889
bool IsValid() const
Tests if this ArchSpec is valid.
Definition ArchSpec.h:452
void Clear()
Clears the object state.
Definition ArchSpec.cpp:730
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition ArchSpec.h:544
void SetFlags(uint32_t flags)
Definition ArchSpec.h:617
bool IsAlwaysThumbInstructions() const
Detect whether this architecture uses thumb code exclusively.
bool TripleEnvironmentWasSpecified() const
Definition ArchSpec.h:463
bool IsMatch(const ArchSpec &rhs, MatchType match) const
Compare this ArchSpec to another ArchSpec.
bool SetTriple(const llvm::Triple &triple)
Architecture triple setter.
Definition ArchSpec.cpp:947
llvm::Triple m_triple
Definition ArchSpec.h:632
lldb::ByteOrder GetDefaultEndian() const
Returns the default endianness of the architecture.
Definition ArchSpec.cpp:903
lldb::ByteOrder m_byte_order
Definition ArchSpec.h:634
uint32_t GetElfCPUSubType() const
Definition ArchSpec.cpp:877
~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.
void MergeFrom(const ArchSpec &other)
Merges fields from another ArchSpec into this ArchSpec.
void DumpTriple(llvm::raw_ostream &s) const
uint32_t GetMachOCPUSubType() const
Definition ArchSpec.cpp:873
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:747
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
Definition ArchSpec.h:596
bool CharIsSignedByDefault() const
Returns true if 'char' is a signed type by default in the architecture false otherwise.
Definition ArchSpec.cpp:910
bool IsExactMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, ExactMatch).
Definition ArchSpec.h:591
const llvm::SubtargetFeatures & GetSubtargetFeatures() const
Definition ArchSpec.h:621
ArchSpec()
Default constructor.
uint32_t GetMachOCPUType() const
Definition ArchSpec.cpp:869
std::string GetTargetABI() const
Return a string representing target application ABI.
Definition ArchSpec.cpp:751
uint32_t GetMinimumOpcodeByteSize() const
uint32_t GetFlags() const
Definition ArchSpec.h:615
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
Definition ArchSpec.cpp:938
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
Definition ArchSpec.cpp:881
@ 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:787
uint32_t GetMaximumOpcodeByteSize() const
bool TripleVendorWasSpecified() const
Definition ArchSpec.h:457
Core GetCore() const
Definition ArchSpec.h:533
bool TripleOSWasSpecified() const
Definition ArchSpec.h:461
static bool ContainsOnlyArch(const llvm::Triple &normalized_triple)
Returns true if the OS, vendor and environment fields of the triple are unset.
const llvm::Triple & GetTriple() const
Architecture triple accessor.
Definition ArchSpec.h:549
const char * GetArchitectureName() const
Returns a static string representing the current architecture.
Definition ArchSpec.cpp:740
void SetSubtargetFeatures(llvm::SubtargetFeatures &&subtarget_features)
Definition ArchSpec.h:625
"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:953
bool operator!=(const Address &lhs, const Address &rhs)
Definition Address.cpp:1010
bool operator==(const Address &lhs, const Address &rhs)
Definition Address.cpp:1004
bool operator<(const Address &lhs, const Address &rhs)
Definition Address.cpp:973
ByteOrder
Byte ordering definitions.