Find a file
fschneider@google.com 2793f7ad63 Fix bug with optimized try-catch on ARM/MIPS.
The constant pool pointer must be restored before any parallel
moves at the catch-entry block.

In addition, this CL removes CatchEntryInstr and folds its
functionality into CatchBlockEntryInstr. Until now every catch-block
started with CatchBlockEntryInstr followed by a CatchEntryInstr.

This simplifies a lot of code in the compiler and avoids issues
with allocator-move code inserted between the two instructions.

BUG=https://code.google.com/p/dart/issues/detail?id=12291
TEST=tests/language/try_catch4_test.dart
R=regis@google.com, srdjan@google.com

Review URL: https://codereview.chromium.org//22590002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25918 260f80e4-7a28-3924-810f-c04153c831b5
2013-08-08 08:20:10 +00:00
client First CL for removing our dependency on the checked-in binary for building 2013-08-06 10:52:57 +00:00
pkg Staus file update: analyzer_experimental/test/ast_test seems to be passing 2013-08-08 08:19:44 +00:00
runtime Fix bug with optimized try-catch on ARM/MIPS. 2013-08-08 08:20:10 +00:00
sdk Make the values of Platform.executable and Platform.script available to all isolates 2013-08-08 07:19:21 +00:00
tests Fix bug with optimized try-catch on ARM/MIPS. 2013-08-08 08:20:10 +00:00
tools Revert r25914 because of clang build error. 2013-08-08 07:52:35 +00:00
utils First CL for removing our dependency on the checked-in binary for building 2013-08-06 10:52:57 +00:00
.gitignore Added *.host.mk to the .gitignore 2013-04-22 17:56:28 +00:00
codereview.settings update codereview.settings for open-sourcing. 2011-10-10 06:43:32 +00:00
dart.gyp Removed compiler/ directory from repository 2013-08-02 08:31:15 +00:00
PRESUBMIT.py Add gcl presubmit script to the dart src tree. 2012-08-30 06:11:22 +00:00
README Removed compiler/ directory from repository 2013-08-02 08:31:15 +00:00
README.dart-sdk Removed compiler/ directory from repository 2013-08-02 08:31:15 +00:00

This is the repository of the Dart programming language and its associated
tools, libraries, and samples.

For license information, please see LICENSE.

You can find more about Dart online at http://dartlang.org or
http://code.google.com/p/dart.

Here's a brief guide to what's in here:

editor/        Eclipse-based standalone Dart IDE.
lib/           Libraries that ship with the Dart runtime (core, html, etc.).
pkg/           Packages that are not shipped with the core runtime.
runtime/       Dart VM and code for running it as a standalone app.
samples/       Sample Dart programs. 
tests/         Automated tests.
third_party/   External dependencies.
tools/         Build scripts, text editor support files, etc.
utils/         Utilities for Dart applications.