| OLD | NEW |
| 1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 class RegExpNode; | 254 class RegExpNode; |
| 255 struct RegExpCompileData; | 255 struct RegExpCompileData; |
| 256 class RegExpTree; | 256 class RegExpTree; |
| 257 class RegExpCompiler; | 257 class RegExpCompiler; |
| 258 class RegExpVisitor; | 258 class RegExpVisitor; |
| 259 class Scope; | 259 class Scope; |
| 260 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; | 260 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; |
| 261 class Script; | 261 class Script; |
| 262 class Slot; | 262 class Slot; |
| 263 class Smi; | 263 class Smi; |
| 264 template <typename Config, class Allocator = FreeStoreAllocationPolicy> |
| 265 class SplayTree; |
| 264 class Statement; | 266 class Statement; |
| 265 class String; | 267 class String; |
| 266 class Struct; | 268 class Struct; |
| 267 class SwitchStatement; | 269 class SwitchStatement; |
| 268 class AstVisitor; | 270 class AstVisitor; |
| 269 class Variable; | 271 class Variable; |
| 270 class VariableProxy; | 272 class VariableProxy; |
| 271 class RelocInfo; | 273 class RelocInfo; |
| 272 class Deserializer; | 274 class Deserializer; |
| 273 class MessageLocation; | 275 class MessageLocation; |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 CMOV = 15, // x86 | 613 CMOV = 15, // x86 |
| 612 RDTSC = 4, // x86 | 614 RDTSC = 4, // x86 |
| 613 CPUID = 10, // x86 | 615 CPUID = 10, // x86 |
| 614 VFP3 = 1, // ARM | 616 VFP3 = 1, // ARM |
| 615 ARMv7 = 2, // ARM | 617 ARMv7 = 2, // ARM |
| 616 SAHF = 0}; // x86 | 618 SAHF = 0}; // x86 |
| 617 | 619 |
| 618 } } // namespace v8::internal | 620 } } // namespace v8::internal |
| 619 | 621 |
| 620 #endif // V8_GLOBALS_H_ | 622 #endif // V8_GLOBALS_H_ |
| OLD | NEW |