| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 // True if the function return is shadowed (ie, jumping to the target | 437 // True if the function return is shadowed (ie, jumping to the target |
| 438 // function_return_ does not jump to the true function return, but rather | 438 // function_return_ does not jump to the true function return, but rather |
| 439 // to some unlinking code). | 439 // to some unlinking code). |
| 440 bool function_return_is_shadowed_; | 440 bool function_return_is_shadowed_; |
| 441 | 441 |
| 442 static InlineRuntimeLUT kInlineRuntimeLUT[]; | 442 static InlineRuntimeLUT kInlineRuntimeLUT[]; |
| 443 | 443 |
| 444 friend class VirtualFrame; | 444 friend class VirtualFrame; |
| 445 friend class JumpTarget; | 445 friend class JumpTarget; |
| 446 friend class Reference; | 446 friend class Reference; |
| 447 friend class FastCodeGenerator; |
| 447 friend class FullCodeGenerator; | 448 friend class FullCodeGenerator; |
| 448 friend class FullCodeGenSyntaxChecker; | 449 friend class FullCodeGenSyntaxChecker; |
| 449 | 450 |
| 450 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 451 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 451 }; | 452 }; |
| 452 | 453 |
| 453 | 454 |
| 454 class GenericBinaryOpStub : public CodeStub { | 455 class GenericBinaryOpStub : public CodeStub { |
| 455 public: | 456 public: |
| 456 GenericBinaryOpStub(Token::Value op, | 457 GenericBinaryOpStub(Token::Value op, |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 Major MajorKey() { return StringCompare; } | 547 Major MajorKey() { return StringCompare; } |
| 547 int MinorKey() { return 0; } | 548 int MinorKey() { return 0; } |
| 548 | 549 |
| 549 void Generate(MacroAssembler* masm); | 550 void Generate(MacroAssembler* masm); |
| 550 }; | 551 }; |
| 551 | 552 |
| 552 | 553 |
| 553 } } // namespace v8::internal | 554 } } // namespace v8::internal |
| 554 | 555 |
| 555 #endif // V8_ARM_CODEGEN_ARM_H_ | 556 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |