• Home
  • Raw
  • Download

Lines Matching refs:this

53           this->PushUint8(DW_CFA_advance_loc | delta);  in AdvancePC()
55 this->PushUint8(DW_CFA_advance_loc1); in AdvancePC()
56 this->PushUint8(delta); in AdvancePC()
58 this->PushUint8(DW_CFA_advance_loc2); in AdvancePC()
59 this->PushUint16(delta); in AdvancePC()
61 this->PushUint8(DW_CFA_advance_loc4); in AdvancePC()
62 this->PushUint32(delta); in AdvancePC()
113 this->PushUint8(DW_CFA_nop); in Nop()
123 this->PushUint8(DW_CFA_offset | reg.num()); in Offset()
124 this->PushUleb128(factored_offset); in Offset()
126 this->PushUint8(DW_CFA_offset_extended); in Offset()
127 this->PushUleb128(reg.num()); in Offset()
128 this->PushUleb128(factored_offset); in Offset()
132 this->PushUint8(DW_CFA_offset_extended_sf); in Offset()
133 this->PushUleb128(reg.num()); in Offset()
134 this->PushSleb128(factored_offset); in Offset()
143 this->PushUint8(DW_CFA_restore | reg.num()); in Restore()
145 this->PushUint8(DW_CFA_restore_extended); in Restore()
146 this->PushUleb128(reg.num()); in Restore()
154 this->PushUint8(DW_CFA_undefined); in Undefined()
155 this->PushUleb128(reg.num()); in Undefined()
162 this->PushUint8(DW_CFA_same_value); in SameValue()
163 this->PushUleb128(reg.num()); in SameValue()
171 this->PushUint8(DW_CFA_register); in Register()
172 this->PushUleb128(reg.num()); in Register()
173 this->PushUleb128(new_reg.num()); in Register()
180 this->PushUint8(DW_CFA_remember_state); in RememberState()
187 this->PushUint8(DW_CFA_restore_state); in RestoreState()
195 this->PushUint8(DW_CFA_def_cfa); in DefCFA()
196 this->PushUleb128(reg.num()); in DefCFA()
197 this->PushUleb128(offset); // Non-factored. in DefCFA()
200 this->PushUint8(DW_CFA_def_cfa_sf); in DefCFA()
201 this->PushUleb128(reg.num()); in DefCFA()
202 this->PushSleb128(FactorDataOffset(offset)); in DefCFA()
211 this->PushUint8(DW_CFA_def_cfa_register); in DefCFARegister()
212 this->PushUleb128(reg.num()); in DefCFARegister()
221 this->PushUint8(DW_CFA_def_cfa_offset); in DefCFAOffset()
222 this->PushUleb128(offset); // Non-factored. in DefCFAOffset()
225 this->PushUint8(DW_CFA_def_cfa_offset_sf); in DefCFAOffset()
226 this->PushSleb128(FactorDataOffset(offset)); in DefCFAOffset()
240 this->PushUint8(DW_CFA_val_offset); in ValOffset()
241 this->PushUleb128(reg.num()); in ValOffset()
242 this->PushUleb128(factored_offset); in ValOffset()
244 this->PushUint8(DW_CFA_val_offset_sf); in ValOffset()
245 this->PushUleb128(reg.num()); in ValOffset()
246 this->PushSleb128(factored_offset); in ValOffset()
255 this->PushUint8(DW_CFA_def_cfa_expression); in DefCFAExpression()
256 this->PushUleb128(expr_size); in DefCFAExpression()
257 this->PushData(expr, expr_size); in DefCFAExpression()
265 this->PushUint8(DW_CFA_expression); in Expression()
266 this->PushUleb128(reg.num()); in Expression()
267 this->PushUleb128(expr_size); in Expression()
268 this->PushData(expr, expr_size); in Expression()
276 this->PushUint8(DW_CFA_val_expression); in ValExpression()
277 this->PushUleb128(reg.num()); in ValExpression()
278 this->PushUleb128(expr_size); in ValExpression()
279 this->PushData(expr, expr_size); in ValExpression()