| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #ifndef V8_HYDROGEN_H_ | 28 #ifndef V8_HYDROGEN_H_ |
| 29 #define V8_HYDROGEN_H_ | 29 #define V8_HYDROGEN_H_ |
| 30 | 30 |
| 31 #include "v8.h" | 31 #include "v8.h" |
| 32 | 32 |
| 33 #include "allocation.h" | 33 #include "allocation.h" |
| 34 #include "ast.h" | 34 #include "ast.h" |
| 35 #include "compiler.h" | 35 #include "compiler.h" |
| 36 #include "hydrogen-instructions.h" | 36 #include "hydrogen-instructions.h" |
| 37 #include "type-info.h" |
| 37 #include "zone.h" | 38 #include "zone.h" |
| 38 | 39 |
| 39 namespace v8 { | 40 namespace v8 { |
| 40 namespace internal { | 41 namespace internal { |
| 41 | 42 |
| 42 // Forward declarations. | 43 // Forward declarations. |
| 43 class BitVector; | 44 class BitVector; |
| 44 class HEnvironment; | 45 class HEnvironment; |
| 45 class HGraph; | 46 class HGraph; |
| 46 class HLoopInformation; | 47 class HLoopInformation; |
| (...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1197 const char* filename_; | 1198 const char* filename_; |
| 1198 HeapStringAllocator string_allocator_; | 1199 HeapStringAllocator string_allocator_; |
| 1199 StringStream trace_; | 1200 StringStream trace_; |
| 1200 int indent_; | 1201 int indent_; |
| 1201 }; | 1202 }; |
| 1202 | 1203 |
| 1203 | 1204 |
| 1204 } } // namespace v8::internal | 1205 } } // namespace v8::internal |
| 1205 | 1206 |
| 1206 #endif // V8_HYDROGEN_H_ | 1207 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |