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()
119 void ALWAYS_INLINE Offset(Reg reg, int offset) { in Offset() argument
124 if (0 <= reg.num() && reg.num() <= 0x3F) { in Offset()
125 this->PushUint8(DW_CFA_offset | reg.num()); in Offset()
129 this->PushUleb128(reg.num()); in Offset()
135 this->PushUleb128(reg.num()); in Offset()
141 void ALWAYS_INLINE Restore(Reg reg) { in Restore() argument
144 if (0 <= reg.num() && reg.num() <= 0x3F) { in Restore()
145 this->PushUint8(DW_CFA_restore | reg.num()); in Restore()
148 this->PushUleb128(reg.num()); in Restore()
153 void ALWAYS_INLINE Undefined(Reg reg) { in Undefined() argument
157 this->PushUleb128(reg.num()); in Undefined()
161 void ALWAYS_INLINE SameValue(Reg reg) { in SameValue() argument
165 this->PushUleb128(reg.num()); in SameValue()
170 void ALWAYS_INLINE Register(Reg reg, Reg new_reg) { in Register() argument
174 this->PushUleb128(reg.num()); in Register()
193 void ALWAYS_INLINE DefCFA(Reg reg, int offset) { in DefCFA() argument
198 this->PushUleb128(reg.num()); in DefCFA()
203 this->PushUleb128(reg.num()); in DefCFA()
210 void ALWAYS_INLINE DefCFARegister(Reg reg) { in DefCFARegister() argument
214 this->PushUleb128(reg.num()); in DefCFARegister()
236 void ALWAYS_INLINE ValOffset(Reg reg, int offset) { in ValOffset() argument
243 this->PushUleb128(reg.num()); in ValOffset()
247 this->PushUleb128(reg.num()); in ValOffset()
263 void ALWAYS_INLINE Expression(Reg reg, uint8_t* expr, int expr_size) { in Expression() argument
268 this->PushUleb128(reg.num()); in Expression()
274 void ALWAYS_INLINE ValExpression(Reg reg, uint8_t* expr, int expr_size) { in ValExpression() argument
279 this->PushUleb128(reg.num()); in ValExpression()