| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 18 matching lines...) Expand all Loading... |
| 29 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 29 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| 30 | 30 |
| 31 #include "ia32/lithium-ia32.h" | 31 #include "ia32/lithium-ia32.h" |
| 32 | 32 |
| 33 #include "checks.h" | 33 #include "checks.h" |
| 34 #include "deoptimizer.h" | 34 #include "deoptimizer.h" |
| 35 #include "ia32/lithium-gap-resolver-ia32.h" | 35 #include "ia32/lithium-gap-resolver-ia32.h" |
| 36 #include "lithium-codegen.h" | 36 #include "lithium-codegen.h" |
| 37 #include "safepoint-table.h" | 37 #include "safepoint-table.h" |
| 38 #include "scopes.h" | 38 #include "scopes.h" |
| 39 #include "utils.h" | 39 #include "v8utils.h" |
| 40 | 40 |
| 41 namespace v8 { | 41 namespace v8 { |
| 42 namespace internal { | 42 namespace internal { |
| 43 | 43 |
| 44 // Forward declarations. | 44 // Forward declarations. |
| 45 class LDeferredCode; | 45 class LDeferredCode; |
| 46 class LGapNode; | 46 class LGapNode; |
| 47 class SafepointGenerator; | 47 class SafepointGenerator; |
| 48 | 48 |
| 49 class LCodeGen: public LCodeGenBase { | 49 class LCodeGen: public LCodeGenBase { |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 Label exit_; | 538 Label exit_; |
| 539 Label* external_exit_; | 539 Label* external_exit_; |
| 540 Label done_; | 540 Label done_; |
| 541 int instruction_index_; | 541 int instruction_index_; |
| 542 LCodeGen::X87Stack x87_stack_; | 542 LCodeGen::X87Stack x87_stack_; |
| 543 }; | 543 }; |
| 544 | 544 |
| 545 } } // namespace v8::internal | 545 } } // namespace v8::internal |
| 546 | 546 |
| 547 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 547 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |