| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 |
| 11 // with the distribution. | 11 // with the distribution. |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 | 217 |
| 218 // Forward declarations. | 218 // Forward declarations. |
| 219 class Assignment; | 219 class Assignment; |
| 220 class BinaryOperation; | 220 class BinaryOperation; |
| 221 class Call; | 221 class Call; |
| 222 class CaseClause; | 222 class CaseClause; |
| 223 class CompareOperation; | 223 class CompareOperation; |
| 224 class CompilationInfo; | 224 class CompilationInfo; |
| 225 class CountOperation; | 225 class CountOperation; |
| 226 class Expression; |
| 226 class Property; | 227 class Property; |
| 227 class SmallMapList; | 228 class SmallMapList; |
| 228 class UnaryOperation; | 229 class UnaryOperation; |
| 229 | 230 |
| 230 | 231 |
| 231 class TypeFeedbackOracle BASE_EMBEDDED { | 232 class TypeFeedbackOracle BASE_EMBEDDED { |
| 232 public: | 233 public: |
| 233 TypeFeedbackOracle(Handle<Code> code, | 234 TypeFeedbackOracle(Handle<Code> code, |
| 234 Handle<Context> global_context, | 235 Handle<Context> global_context, |
| 235 Isolate* isolate); | 236 Isolate* isolate); |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 Handle<Context> global_context_; | 305 Handle<Context> global_context_; |
| 305 Isolate* isolate_; | 306 Isolate* isolate_; |
| 306 Handle<UnseededNumberDictionary> dictionary_; | 307 Handle<UnseededNumberDictionary> dictionary_; |
| 307 | 308 |
| 308 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); | 309 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); |
| 309 }; | 310 }; |
| 310 | 311 |
| 311 } } // namespace v8::internal | 312 } } // namespace v8::internal |
| 312 | 313 |
| 313 #endif // V8_TYPE_INFO_H_ | 314 #endif // V8_TYPE_INFO_H_ |
| OLD | NEW |