Lines Matching defs:VALUE
55 /* Given the cache in THIS_TRAD_CACHE, set the value of REGNUM to the bytes
61 struct value *trad_frame_get_register (struct trad_frame_cache *this_trad_cache,
68 /* Register value is unknown. */
70 /* Register value is a constant. */
71 VALUE,
72 /* Register value is in another register. */
74 /* Register value is at an address. */
76 /* Register value is a sequence of bytes. */
86 /* Encode that the saved register's value is constant VAL in the
90 m_kind = trad_frame_saved_reg_kind::VALUE;
91 m_reg.value = val;
94 /* Encode that the saved register's value is stored in register REALREG. */
101 /* Encode that the saved register's value is stored in memory at ADDR. */
108 /* Encode that the saved register's value is unknown. */
114 /* Encode that the saved register's value is stored as a sequence of bytes.
115 This is useful when the value is larger than what primitive types
129 LONGEST value () const
131 gdb_assert (m_kind == trad_frame_saved_reg_kind::VALUE);
132 return m_reg.value;
157 return m_kind == trad_frame_saved_reg_kind::VALUE;
185 LONGEST value;
202 struct value *trad_frame_get_prev_register (const frame_info_ptr &this_frame,