Home | History | Annotate | Download | only in src

Lines Matching defs:__

287 #define __ ACCESS_MASM(masm())
357 __ dd(length);
359 __ dd(stack_checks_[i].id);
360 __ dd(stack_checks_[i].pc_and_state);
481 __ Move(result_register(), reg);
486 __ push(reg);
492 __ Move(result_register(), reg);
499 __ Drop(1);
504 __ pop(result_register());
514 __ pop(result_register());
838 __ bind(&eval_right);
844 __ push(result_register());
851 __ bind(&restore);
852 __ pop(result_register());
853 __ jmp(&done);
854 __ bind(&discard);
855 __ Drop(1);
862 __ push(result_register());
869 __ bind(&discard);
870 __ Drop(1);
882 __ bind(&eval_right);
886 __ bind(&done);
924 __ Push(scope_info);
928 __ CallStub(&stub);
930 __ CallRuntime(Runtime::kPushBlockContext, 2);
944 __ bind(nested_block.break_label());
978 __ bind(&then_part);
980 __ jmp(&done);
983 __ bind(&else_part);
988 __ bind(&then_part);
993 __ bind(&done);
1012 __ Drop(stack_depth);
1022 __ jmp(current->AsIteration()->continue_label());
1040 __ Drop(stack_depth);
1050 __ jmp(current->AsBreakable()->break_label());
1067 __ Drop(stack_depth);
1079 __ CallRuntime(Runtime::kPushWithContext, 2);
1101 __ bind(&body);
1106 __ bind(loop_statement.continue_label());
1116 __ bind(&stack_check);
1118 __ jmp(&body);
1121 __ bind(loop_statement.break_label());
1134 __ jmp(&test);
1137 __ bind(&body);
1142 __ bind(loop_statement.continue_label());
1148 __ bind(&test);
1155 __ bind(loop_statement.break_label());
1175 __ jmp(&test);
1178 __ bind(&body);
1182 __ bind(loop_statement.continue_label());
1194 __ bind(&test);
1201 __ jmp(&body);
1205 __ bind(loop_statement.break_label());
1220 __ jmp(&try_entry);
1221 __ bind(&handler_entry);
1226 __ Push(stmt->variable()->name());
1227 __ push(result_register());
1229 __ CallRuntime(Runtime::kPushCatchContext, 3);
1244 __ jmp(&exit);
1247 __ bind(&try_entry);
1248 __ PushTryHandler(StackHandler::CATCH, stmt->index());
1252 __ PopTryHandler();
1253 __ bind(&exit);
1284 __ jmp(&try_entry);
1285 __ bind(&handler_entry);
1291 __ Call(&finally_entry);
1292 __ push(result_register());
1293 __ CallRuntime(Runtime::kReThrow, 1);
1296 __ bind(&finally_entry);
1304 __ bind(&try_entry);
1305 __ PushTryHandler(StackHandler::FINALLY, stmt->index());
1309 __ PopTryHandler();
1315 __ Call(&finally_entry);
1324 __ DebugBreak();
1336 __ bind(&true_case);
1347 __ jmp(&done);
1351 __ bind(&false_case);
1357 __ bind(&done);
1392 __ CallRuntime(Runtime::kThrow, 1);
1401 __ Drop(*stack_depth);
1402 __ PopTryHandler();
1430 #undef __