Lines Matching refs:expr
202 dwarf::Expression expr(&expr_buffer); in WriteDebugLocEntry()
211 expr.WriteOpFbreg(value - method_info->frame_size_in_bytes); in WriteDebugLocEntry()
217 expr.WriteOpReg(GetDwarfCoreReg(isa, value).num()); in WriteDebugLocEntry()
227 expr.WriteOpReg(Reg::ArmDp(value / 2).num()); in WriteDebugLocEntry()
230 expr.WriteOpReg(GetDwarfFpReg(isa, value).num()); in WriteDebugLocEntry()
236 expr.WriteOpConsts(value); in WriteDebugLocEntry()
237 expr.WriteOpStackValue(); in WriteDebugLocEntry()
253 expr.WriteOpPiece(4); in WriteDebugLocEntry()
257 if (expr.size() > 0) { in WriteDebugLocEntry()
266 debug_loc.PushUint16(expr.size()); in WriteDebugLocEntry()
267 debug_loc.PushData(expr.data()); in WriteDebugLocEntry()