OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
8 | 8 |
9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
10 | 10 |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 rdi, // math rounding function | 382 rdi, // math rounding function |
383 rdx, // vector slot id | 383 rdx, // vector slot id |
384 }; | 384 }; |
385 Representation representations[] = { | 385 Representation representations[] = { |
386 Representation::Tagged(), // | 386 Representation::Tagged(), // |
387 Representation::Tagged(), // | 387 Representation::Tagged(), // |
388 Representation::Tagged(), // | 388 Representation::Tagged(), // |
389 }; | 389 }; |
390 data->Initialize(arraysize(registers), registers, representations); | 390 data->Initialize(arraysize(registers), registers, representations); |
391 } | 391 } |
392 } | 392 } // namespace internal |
393 } // namespace v8::internal | 393 } // namespace v8 |
394 | 394 |
395 #endif // V8_TARGET_ARCH_X64 | 395 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |