| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 // called from spilled code, because they do not leave the virtual frame | 623 // called from spilled code, because they do not leave the virtual frame |
| 624 // in a spilled state. | 624 // in a spilled state. |
| 625 bool in_spilled_code_; | 625 bool in_spilled_code_; |
| 626 | 626 |
| 627 static InlineRuntimeLUT kInlineRuntimeLUT[]; | 627 static InlineRuntimeLUT kInlineRuntimeLUT[]; |
| 628 | 628 |
| 629 friend class VirtualFrame; | 629 friend class VirtualFrame; |
| 630 friend class JumpTarget; | 630 friend class JumpTarget; |
| 631 friend class Reference; | 631 friend class Reference; |
| 632 friend class Result; | 632 friend class Result; |
| 633 friend class FastCodeGenerator; |
| 633 friend class FullCodeGenerator; | 634 friend class FullCodeGenerator; |
| 634 friend class FullCodeGenSyntaxChecker; | 635 friend class FullCodeGenSyntaxChecker; |
| 635 | 636 |
| 636 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc | 637 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc |
| 637 | 638 |
| 638 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 639 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 639 }; | 640 }; |
| 640 | 641 |
| 641 | 642 |
| 642 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. | 643 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 Major MajorKey() { return StringCompare; } | 814 Major MajorKey() { return StringCompare; } |
| 814 int MinorKey() { return 0; } | 815 int MinorKey() { return 0; } |
| 815 | 816 |
| 816 void Generate(MacroAssembler* masm); | 817 void Generate(MacroAssembler* masm); |
| 817 }; | 818 }; |
| 818 | 819 |
| 819 | 820 |
| 820 } } // namespace v8::internal | 821 } } // namespace v8::internal |
| 821 | 822 |
| 822 #endif // V8_X64_CODEGEN_X64_H_ | 823 #endif // V8_X64_CODEGEN_X64_H_ |
| OLD | NEW |