Lines Matching refs:reg
73 void ALWAYS_INLINE RelOffset(Reg reg, int offset) { in RelOffset() argument
74 Offset(reg, offset - current_cfa_offset_); in RelOffset()
117 void ALWAYS_INLINE Offset(Reg reg, int offset) { in Offset() argument
122 if (0 <= reg.num() && reg.num() <= 0x3F) { in Offset()
123 this->PushUint8(DW_CFA_offset | reg.num()); in Offset()
127 this->PushUleb128(reg.num()); in Offset()
133 this->PushUleb128(reg.num()); in Offset()
139 void ALWAYS_INLINE Restore(Reg reg) { in Restore() argument
142 if (0 <= reg.num() && reg.num() <= 0x3F) { in Restore()
143 this->PushUint8(DW_CFA_restore | reg.num()); in Restore()
146 this->PushUleb128(reg.num()); in Restore()
151 void ALWAYS_INLINE Undefined(Reg reg) { in Undefined() argument
155 this->PushUleb128(reg.num()); in Undefined()
159 void ALWAYS_INLINE SameValue(Reg reg) { in SameValue() argument
163 this->PushUleb128(reg.num()); in SameValue()
168 void ALWAYS_INLINE Register(Reg reg, Reg new_reg) { in Register() argument
172 this->PushUleb128(reg.num()); in Register()
191 void ALWAYS_INLINE DefCFA(Reg reg, int offset) { in DefCFA() argument
196 this->PushUleb128(reg.num()); in DefCFA()
201 this->PushUleb128(reg.num()); in DefCFA()
208 void ALWAYS_INLINE DefCFARegister(Reg reg) { in DefCFARegister() argument
212 this->PushUleb128(reg.num()); in DefCFARegister()
234 void ALWAYS_INLINE ValOffset(Reg reg, int offset) { in ValOffset() argument
241 this->PushUleb128(reg.num()); in ValOffset()
245 this->PushUleb128(reg.num()); in ValOffset()
261 void ALWAYS_INLINE Expression(Reg reg, uint8_t* expr, int expr_size) { in Expression() argument
266 this->PushUleb128(reg.num()); in Expression()
272 void ALWAYS_INLINE ValExpression(Reg reg, uint8_t* expr, int expr_size) { in ValExpression() argument
277 this->PushUleb128(reg.num()); in ValExpression()