Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: runtime/vm/flow_graph_compiler_mips.cc

Issue 118133004: Revert r31326. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_mips.cc
===================================================================
--- runtime/vm/flow_graph_compiler_mips.cc (revision 31331)
+++ runtime/vm/flow_graph_compiler_mips.cc (working copy)
@@ -741,6 +741,74 @@
}
+void FlowGraphCompiler::EmitTrySyncMove(intptr_t dest_offset,
+ Location loc,
+ bool* push_emitted) {
+ if (loc.IsConstant()) {
+ if (!*push_emitted) {
+ __ Push(T0);
+ *push_emitted = true;
+ }
+ __ LoadObject(T0, loc.constant());
+ __ StoreToOffset(T0, FP, dest_offset);
+ } else if (loc.IsRegister()) {
+ if (*push_emitted && loc.reg() == T0) {
+ __ lw(T0, Address(SP, 0));
+ __ StoreToOffset(T0, FP, dest_offset);
+ } else {
+ __ StoreToOffset(loc.reg(), FP, dest_offset);
+ }
+ } else {
+ const intptr_t src_offset = loc.ToStackSlotOffset();
+ if (src_offset != dest_offset) {
+ if (!*push_emitted) {
+ __ Push(T0);
+ *push_emitted = true;
+ }
+ __ LoadFromOffset(T0, FP, src_offset);
+ __ StoreToOffset(T0, FP, dest_offset);
+ }
+ }
+}
+
+
+void FlowGraphCompiler::EmitTrySync(Instruction* instr, intptr_t try_index) {
+ ASSERT(is_optimizing());
+ Environment* env = instr->env();
+ CatchBlockEntryInstr* catch_block =
+ flow_graph().graph_entry()->GetCatchEntry(try_index);
+ const GrowableArray<Definition*>* idefs = catch_block->initial_definitions();
+ // Parameters.
+ intptr_t i = 0;
+ bool push_emitted = false;
+ const intptr_t num_non_copied_params = flow_graph().num_non_copied_params();
+ const intptr_t param_base =
+ kParamEndSlotFromFp + num_non_copied_params;
+ for (; i < num_non_copied_params; ++i) {
+ if ((*idefs)[i]->IsConstant()) continue; // Common constants
+ Location loc = env->LocationAt(i);
+ EmitTrySyncMove((param_base - i) * kWordSize, loc, &push_emitted);
+ }
+
+ // Process locals. Skip exception_var and stacktrace_var.
+ intptr_t local_base = kFirstLocalSlotFromFp + num_non_copied_params;
+ intptr_t ex_idx = local_base - catch_block->exception_var().index();
+ intptr_t st_idx = local_base - catch_block->stacktrace_var().index();
+ for (; i < flow_graph().variable_count(); ++i) {
+ if (i == ex_idx || i == st_idx) continue;
+ if ((*idefs)[i]->IsConstant()) continue;
+ Location loc = env->LocationAt(i);
+ EmitTrySyncMove((local_base - i) * kWordSize, loc, &push_emitted);
+ // Update safepoint bitmap to indicate that the target location
+ // now contains a pointer.
+ instr->locs()->stack_bitmap()->Set(i - num_non_copied_params, true);
+ }
+ if (push_emitted) {
+ __ Pop(T0);
+ }
+}
+
+
void FlowGraphCompiler::EmitInstructionEpilogue(Instruction* instr) {
if (is_optimizing()) return;
Definition* defn = instr->AsDefinition();
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698