| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 // called from spilled code, because they do not leave the virtual frame | 604 // called from spilled code, because they do not leave the virtual frame |
| 605 // in a spilled state. | 605 // in a spilled state. |
| 606 bool in_spilled_code_; | 606 bool in_spilled_code_; |
| 607 | 607 |
| 608 static InlineRuntimeLUT kInlineRuntimeLUT[]; | 608 static InlineRuntimeLUT kInlineRuntimeLUT[]; |
| 609 | 609 |
| 610 friend class VirtualFrame; | 610 friend class VirtualFrame; |
| 611 friend class JumpTarget; | 611 friend class JumpTarget; |
| 612 friend class Reference; | 612 friend class Reference; |
| 613 friend class Result; | 613 friend class Result; |
| 614 friend class FastCodeGenerator; | 614 friend class FullCodeGenerator; |
| 615 friend class CodeGenSelector; | 615 friend class FullCodeGenSyntaxChecker; |
| 616 | 616 |
| 617 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc | 617 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc |
| 618 | 618 |
| 619 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 619 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 620 }; | 620 }; |
| 621 | 621 |
| 622 | 622 |
| 623 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. | 623 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. |
| 624 enum GenericBinaryFlags { | 624 enum GenericBinaryFlags { |
| 625 NO_GENERIC_BINARY_FLAGS = 0, | 625 NO_GENERIC_BINARY_FLAGS = 0, |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 Major MajorKey() { return StringCompare; } | 761 Major MajorKey() { return StringCompare; } |
| 762 int MinorKey() { return 0; } | 762 int MinorKey() { return 0; } |
| 763 | 763 |
| 764 void Generate(MacroAssembler* masm); | 764 void Generate(MacroAssembler* masm); |
| 765 }; | 765 }; |
| 766 | 766 |
| 767 | 767 |
| 768 } } // namespace v8::internal | 768 } } // namespace v8::internal |
| 769 | 769 |
| 770 #endif // V8_X64_CODEGEN_X64_H_ | 770 #endif // V8_X64_CODEGEN_X64_H_ |
| OLD | NEW |