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

Side by Side Diff: runtime/vm/intermediate_language.h

Issue 633203002: Fix clang based build after r40969. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/flow_graph_range_analysis.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_INTERMEDIATE_LANGUAGE_H_ 5 #ifndef VM_INTERMEDIATE_LANGUAGE_H_
6 #define VM_INTERMEDIATE_LANGUAGE_H_ 6 #define VM_INTERMEDIATE_LANGUAGE_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/ast.h" 9 #include "vm/ast.h"
10 #include "vm/growable_array.h" 10 #include "vm/growable_array.h"
(...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1851 }; 1851 };
1852 1852
1853 1853
1854 struct BranchLabels { 1854 struct BranchLabels {
1855 Label* true_label; 1855 Label* true_label;
1856 Label* false_label; 1856 Label* false_label;
1857 Label* fall_through; 1857 Label* fall_through;
1858 }; 1858 };
1859 1859
1860 1860
1861 struct InductionVariableInfo; 1861 class InductionVariableInfo;
1862 1862
1863 1863
1864 class PhiInstr : public Definition { 1864 class PhiInstr : public Definition {
1865 public: 1865 public:
1866 PhiInstr(JoinEntryInstr* block, intptr_t num_inputs) 1866 PhiInstr(JoinEntryInstr* block, intptr_t num_inputs)
1867 : block_(block), 1867 : block_(block),
1868 inputs_(num_inputs), 1868 inputs_(num_inputs),
1869 is_alive_(false), 1869 is_alive_(false),
1870 representation_(kTagged), 1870 representation_(kTagged),
1871 reaching_defs_(NULL), 1871 reaching_defs_(NULL),
(...skipping 6572 matching lines...) Expand 10 before | Expand all | Expand 10 after
8444 Isolate* isolate, bool opt) const { \ 8444 Isolate* isolate, bool opt) const { \
8445 UNIMPLEMENTED(); \ 8445 UNIMPLEMENTED(); \
8446 return NULL; \ 8446 return NULL; \
8447 } \ 8447 } \
8448 void Name::EmitNativeCode(FlowGraphCompiler* compiler) { UNIMPLEMENTED(); } 8448 void Name::EmitNativeCode(FlowGraphCompiler* compiler) { UNIMPLEMENTED(); }
8449 8449
8450 8450
8451 } // namespace dart 8451 } // namespace dart
8452 8452
8453 #endif // VM_INTERMEDIATE_LANGUAGE_H_ 8453 #endif // VM_INTERMEDIATE_LANGUAGE_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_range_analysis.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698