OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 17 matching lines...) Expand all Loading... |
28 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 28 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
29 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 29 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
30 | 30 |
31 #include "arm64/lithium-arm64.h" | 31 #include "arm64/lithium-arm64.h" |
32 | 32 |
33 #include "arm64/lithium-gap-resolver-arm64.h" | 33 #include "arm64/lithium-gap-resolver-arm64.h" |
34 #include "deoptimizer.h" | 34 #include "deoptimizer.h" |
35 #include "lithium-codegen.h" | 35 #include "lithium-codegen.h" |
36 #include "safepoint-table.h" | 36 #include "safepoint-table.h" |
37 #include "scopes.h" | 37 #include "scopes.h" |
38 #include "utils.h" | 38 #include "v8utils.h" |
39 | 39 |
40 namespace v8 { | 40 namespace v8 { |
41 namespace internal { | 41 namespace internal { |
42 | 42 |
43 // Forward declarations. | 43 // Forward declarations. |
44 class LDeferredCode; | 44 class LDeferredCode; |
45 class SafepointGenerator; | 45 class SafepointGenerator; |
46 class BranchGenerator; | 46 class BranchGenerator; |
47 | 47 |
48 class LCodeGen: public LCodeGenBase { | 48 class LCodeGen: public LCodeGenBase { |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 | 484 |
485 protected: | 485 protected: |
486 MacroAssembler* masm() const { return codegen_->masm(); } | 486 MacroAssembler* masm() const { return codegen_->masm(); } |
487 | 487 |
488 LCodeGen* codegen_; | 488 LCodeGen* codegen_; |
489 }; | 489 }; |
490 | 490 |
491 } } // namespace v8::internal | 491 } } // namespace v8::internal |
492 | 492 |
493 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ | 493 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
OLD | NEW |