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 |
11 // with the distribution. | 11 // with the distribution. |
12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
15 // | 15 // |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #ifndef V8_A64_LITHIUM_CODEGEN_A64_H_ | 28 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
29 #define V8_A64_LITHIUM_CODEGEN_A64_H_ | 29 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
30 | 30 |
31 #include "a64/lithium-a64.h" | 31 #include "arm64/lithium-arm64.h" |
32 | 32 |
33 #include "a64/lithium-gap-resolver-a64.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 "v8utils.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. |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 int instruction_index_; | 447 int instruction_index_; |
448 }; | 448 }; |
449 | 449 |
450 | 450 |
451 // This is the abstract class used by EmitBranchGeneric. | 451 // This is the abstract class used by EmitBranchGeneric. |
452 // It is used to emit code for conditional branching. The Emit() function | 452 // It is used to emit code for conditional branching. The Emit() function |
453 // emits code to branch when the condition holds and EmitInverted() emits | 453 // emits code to branch when the condition holds and EmitInverted() emits |
454 // the branch when the inverted condition is verified. | 454 // the branch when the inverted condition is verified. |
455 // | 455 // |
456 // For actual examples of condition see the concrete implementation in | 456 // For actual examples of condition see the concrete implementation in |
457 // lithium-codegen-a64.cc (e.g. BranchOnCondition, CompareAndBranch). | 457 // lithium-codegen-arm64.cc (e.g. BranchOnCondition, CompareAndBranch). |
458 class BranchGenerator BASE_EMBEDDED { | 458 class BranchGenerator BASE_EMBEDDED { |
459 public: | 459 public: |
460 explicit BranchGenerator(LCodeGen* codegen) | 460 explicit BranchGenerator(LCodeGen* codegen) |
461 : codegen_(codegen) { } | 461 : codegen_(codegen) { } |
462 | 462 |
463 virtual ~BranchGenerator() { } | 463 virtual ~BranchGenerator() { } |
464 | 464 |
465 virtual void Emit(Label* label) const = 0; | 465 virtual void Emit(Label* label) const = 0; |
466 virtual void EmitInverted(Label* label) const = 0; | 466 virtual void EmitInverted(Label* label) const = 0; |
467 | 467 |
468 protected: | 468 protected: |
469 MacroAssembler* masm() const { return codegen_->masm(); } | 469 MacroAssembler* masm() const { return codegen_->masm(); } |
470 | 470 |
471 LCodeGen* codegen_; | 471 LCodeGen* codegen_; |
472 }; | 472 }; |
473 | 473 |
474 } } // namespace v8::internal | 474 } } // namespace v8::internal |
475 | 475 |
476 #endif // V8_A64_LITHIUM_CODEGEN_A64_H_ | 476 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ |
OLD | NEW |