| 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 // called from spilled code, because they do not leave the virtual frame | 626 // called from spilled code, because they do not leave the virtual frame |
| 627 // in a spilled state. | 627 // in a spilled state. |
| 628 bool in_spilled_code_; | 628 bool in_spilled_code_; |
| 629 | 629 |
| 630 static InlineRuntimeLUT kInlineRuntimeLUT[]; | 630 static InlineRuntimeLUT kInlineRuntimeLUT[]; |
| 631 | 631 |
| 632 friend class VirtualFrame; | 632 friend class VirtualFrame; |
| 633 friend class JumpTarget; | 633 friend class JumpTarget; |
| 634 friend class Reference; | 634 friend class Reference; |
| 635 friend class Result; | 635 friend class Result; |
| 636 friend class FastCodeGenerator; |
| 636 friend class FullCodeGenerator; | 637 friend class FullCodeGenerator; |
| 637 friend class FullCodeGenSyntaxChecker; | 638 friend class FullCodeGenSyntaxChecker; |
| 638 | 639 |
| 639 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc | 640 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc |
| 640 | 641 |
| 641 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 642 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 642 }; | 643 }; |
| 643 | 644 |
| 644 | 645 |
| 645 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. | 646 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 Major MajorKey() { return StringCompare; } | 820 Major MajorKey() { return StringCompare; } |
| 820 int MinorKey() { return 0; } | 821 int MinorKey() { return 0; } |
| 821 | 822 |
| 822 void Generate(MacroAssembler* masm); | 823 void Generate(MacroAssembler* masm); |
| 823 }; | 824 }; |
| 824 | 825 |
| 825 | 826 |
| 826 } } // namespace v8::internal | 827 } } // namespace v8::internal |
| 827 | 828 |
| 828 #endif // V8_IA32_CODEGEN_IA32_H_ | 829 #endif // V8_IA32_CODEGEN_IA32_H_ |
| OLD | NEW |