| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 28 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 29 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 | 30 |
| 31 // The original source code covered by the above license above has been | 31 // The original source code covered by the above license above has been |
| 32 // modified significantly by Google Inc. | 32 // modified significantly by Google Inc. |
| 33 // Copyright 2011 the V8 project authors. All rights reserved. | 33 // Copyright 2011 the V8 project authors. All rights reserved. |
| 34 | 34 |
| 35 #ifndef V8_ASSEMBLER_H_ | 35 #ifndef V8_ASSEMBLER_H_ |
| 36 #define V8_ASSEMBLER_H_ | 36 #define V8_ASSEMBLER_H_ |
| 37 | 37 |
| 38 #include "allocation.h" |
| 38 #include "gdb-jit.h" | 39 #include "gdb-jit.h" |
| 39 #include "runtime.h" | 40 #include "runtime.h" |
| 40 #include "token.h" | 41 #include "token.h" |
| 41 | 42 |
| 42 namespace v8 { | 43 namespace v8 { |
| 43 namespace internal { | 44 namespace internal { |
| 44 | 45 |
| 45 const unsigned kNoASTId = -1; | 46 const unsigned kNoASTId = -1; |
| 46 // ----------------------------------------------------------------------------- | 47 // ----------------------------------------------------------------------------- |
| 47 // Platform independent assembler base class. | 48 // Platform independent assembler base class. |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 public: | 862 public: |
| 862 NullCallWrapper() { } | 863 NullCallWrapper() { } |
| 863 virtual ~NullCallWrapper() { } | 864 virtual ~NullCallWrapper() { } |
| 864 virtual void BeforeCall(int call_size) const { } | 865 virtual void BeforeCall(int call_size) const { } |
| 865 virtual void AfterCall() const { } | 866 virtual void AfterCall() const { } |
| 866 }; | 867 }; |
| 867 | 868 |
| 868 } } // namespace v8::internal | 869 } } // namespace v8::internal |
| 869 | 870 |
| 870 #endif // V8_ASSEMBLER_H_ | 871 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |