| 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 23 matching lines...) Expand all Loading... |
| 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 "src/v8.h" | 38 #include "src/v8.h" |
| 39 | 39 |
| 40 #include "src/allocation.h" | 40 #include "src/allocation.h" |
| 41 #include "src/builtins.h" | 41 #include "src/builtins.h" |
| 42 #include "src/gdb-jit.h" | 42 #include "src/gdb-jit.h" |
| 43 #include "src/isolate.h" | 43 #include "src/isolate.h" |
| 44 #include "src/runtime.h" | 44 #include "src/runtime/runtime.h" |
| 45 #include "src/token.h" | 45 #include "src/token.h" |
| 46 | 46 |
| 47 namespace v8 { | 47 namespace v8 { |
| 48 | 48 |
| 49 class ApiFunction; | 49 class ApiFunction; |
| 50 | 50 |
| 51 namespace internal { | 51 namespace internal { |
| 52 | 52 |
| 53 class StatsCounter; | 53 class StatsCounter; |
| 54 // ----------------------------------------------------------------------------- | 54 // ----------------------------------------------------------------------------- |
| (...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 NullCallWrapper() { } | 1104 NullCallWrapper() { } |
| 1105 virtual ~NullCallWrapper() { } | 1105 virtual ~NullCallWrapper() { } |
| 1106 virtual void BeforeCall(int call_size) const { } | 1106 virtual void BeforeCall(int call_size) const { } |
| 1107 virtual void AfterCall() const { } | 1107 virtual void AfterCall() const { } |
| 1108 }; | 1108 }; |
| 1109 | 1109 |
| 1110 | 1110 |
| 1111 } } // namespace v8::internal | 1111 } } // namespace v8::internal |
| 1112 | 1112 |
| 1113 #endif // V8_ASSEMBLER_H_ | 1113 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |