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 | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are 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 2369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2380 | 2380 |
2381 Handle<ConstantPoolArray> Assembler::NewConstantPool(Isolate* isolate) { | 2381 Handle<ConstantPoolArray> Assembler::NewConstantPool(Isolate* isolate) { |
2382 DCHECK(!FLAG_enable_ool_constant_pool); | 2382 DCHECK(!FLAG_enable_ool_constant_pool); |
2383 return isolate->factory()->empty_constant_pool_array(); | 2383 return isolate->factory()->empty_constant_pool_array(); |
2384 } | 2384 } |
2385 | 2385 |
2386 | 2386 |
2387 void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { | 2387 void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { |
2388 DCHECK(!FLAG_enable_ool_constant_pool); | 2388 DCHECK(!FLAG_enable_ool_constant_pool); |
2389 } | 2389 } |
2390 } | 2390 } // namespace internal |
2391 } // namespace v8::internal | 2391 } // namespace v8 |
2392 | 2392 |
2393 #endif // V8_TARGET_ARCH_PPC | 2393 #endif // V8_TARGET_ARCH_PPC |
OLD | NEW |