| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 namespace v8 { | 43 namespace v8 { |
| 44 namespace internal { | 44 namespace internal { |
| 45 | 45 |
| 46 class CompilationInfo; | 46 class CompilationInfo; |
| 47 | 47 |
| 48 #define CODE_TAGS_LIST(V) \ | 48 #define CODE_TAGS_LIST(V) \ |
| 49 V(LOAD_IC) \ | 49 V(LOAD_IC) \ |
| 50 V(KEYED_LOAD_IC) \ | 50 V(KEYED_LOAD_IC) \ |
| 51 V(STORE_IC) \ | 51 V(STORE_IC) \ |
| 52 V(KEYED_STORE_IC) \ | 52 V(KEYED_STORE_IC) \ |
| 53 V(CALL_IC) \ | |
| 54 V(CALL_INITIALIZE) \ | |
| 55 V(CALL_PRE_MONOMORPHIC) \ | |
| 56 V(CALL_NORMAL) \ | |
| 57 V(CALL_MEGAMORPHIC) \ | |
| 58 V(CALL_MISS) \ | |
| 59 V(STUB) \ | 53 V(STUB) \ |
| 60 V(BUILTIN) \ | 54 V(BUILTIN) \ |
| 61 V(SCRIPT) \ | 55 V(SCRIPT) \ |
| 62 V(EVAL) \ | 56 V(EVAL) \ |
| 63 V(FUNCTION) | 57 V(FUNCTION) |
| 64 | 58 |
| 65 class GDBJITLineInfo : public Malloced { | 59 class GDBJITLineInfo : public Malloced { |
| 66 public: | 60 public: |
| 67 GDBJITLineInfo() | 61 GDBJITLineInfo() |
| 68 : pc_info_(10) { } | 62 : pc_info_(10) { } |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 }; | 131 }; |
| 138 | 132 |
| 139 #define GDBJIT(action) GDBJITInterface::action | 133 #define GDBJIT(action) GDBJITInterface::action |
| 140 | 134 |
| 141 } } // namespace v8::internal | 135 } } // namespace v8::internal |
| 142 #else | 136 #else |
| 143 #define GDBJIT(action) ((void) 0) | 137 #define GDBJIT(action) ((void) 0) |
| 144 #endif | 138 #endif |
| 145 | 139 |
| 146 #endif | 140 #endif |
| OLD | NEW |