Lines Matching refs:acc
33 void BaselineStubBuilder::CheckExceptionWithVar(GateRef glue, GateRef sp, GateRef res, GateRef acc)
41 DispatchLast(glue, sp, acc);
42 Return(acc);
59 GateRef acc = GetAccFromFrame(frame);
60 DispatchLast(glue, sp, acc);
78 GateRef acc = GetAccFromFrame(frame);
79 DispatchLast(glue, sp, acc);
80 Return(acc);
88 void BaselineStubBuilder::CheckExceptionWithJump(GateRef glue, GateRef sp, GateRef res, GateRef acc, Label *jump)
96 DispatchLast(glue, sp, acc);
105 void BaselineStubBuilder::CheckExceptionWithJumpAndReturn(GateRef glue, GateRef sp, GateRef res, GateRef acc,
114 DispatchLast(glue, sp, acc);
115 Return(acc);
123 void BaselineStubBuilder::CheckPendingException(GateRef glue, GateRef sp, GateRef res, GateRef acc)
131 DispatchLast(glue, sp, acc);
132 Return(acc);
140 void BaselineStubBuilder::DispatchLast(GateRef glue, GateRef sp, GateRef acc)
144 CallBaselineStub(glue, baselineEHIndex, { glue, sp, acc });