Lines Matching refs:expr
210 dwarf::Expression expr(&expr_buffer); in WriteDebugLocEntry()
219 expr.WriteOpFbreg(value - method_info->frame_size_in_bytes); in WriteDebugLocEntry()
225 expr.WriteOpReg(GetDwarfCoreReg(isa, value).num()); in WriteDebugLocEntry()
235 expr.WriteOpReg(Reg::ArmDp(value / 2).num()); in WriteDebugLocEntry()
238 expr.WriteOpReg(GetDwarfFpReg(isa, value).num()); in WriteDebugLocEntry()
244 expr.WriteOpConsts(value); in WriteDebugLocEntry()
245 expr.WriteOpStackValue(); in WriteDebugLocEntry()
261 expr.WriteOpPiece(4); in WriteDebugLocEntry()
265 if (expr.size() > 0) { in WriteDebugLocEntry()
274 debug_loc.PushUint16(expr.size()); in WriteDebugLocEntry()
275 debug_loc.PushData(expr.data()); in WriteDebugLocEntry()