| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_CONSTANTS_DBC_H_ | 5 #ifndef VM_CONSTANTS_DBC_H_ |
| 6 #define VM_CONSTANTS_DBC_H_ | 6 #define VM_CONSTANTS_DBC_H_ |
| 7 | 7 |
| 8 #include "platform/globals.h" | 8 #include "platform/globals.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "platform/utils.h" | 10 #include "platform/utils.h" |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 V(Intrinsic, A, num, ___, ___) \ | 333 V(Intrinsic, A, num, ___, ___) \ |
| 334 V(Drop1, 0, ___, ___, ___) \ | 334 V(Drop1, 0, ___, ___, ___) \ |
| 335 V(DropR, A, num, ___, ___) \ | 335 V(DropR, A, num, ___, ___) \ |
| 336 V(Drop, A, num, ___, ___) \ | 336 V(Drop, A, num, ___, ___) \ |
| 337 V(Jump, T, tgt, ___, ___) \ | 337 V(Jump, T, tgt, ___, ___) \ |
| 338 V(Return, A, num, ___, ___) \ | 338 V(Return, A, num, ___, ___) \ |
| 339 V(ReturnTOS, 0, ___, ___, ___) \ | 339 V(ReturnTOS, 0, ___, ___, ___) \ |
| 340 V(Move, A_X, reg, xeg, ___) \ | 340 V(Move, A_X, reg, xeg, ___) \ |
| 341 V(Push, X, xeg, ___, ___) \ | 341 V(Push, X, xeg, ___, ___) \ |
| 342 V(LoadConstant, A_D, reg, lit, ___) \ | 342 V(LoadConstant, A_D, reg, lit, ___) \ |
| 343 V(LoadClassId, A_D, reg, reg, ___) \ |
| 344 V(LoadClassIdTOS, 0, ___, ___, ___) \ |
| 343 V(PushConstant, D, lit, ___, ___) \ | 345 V(PushConstant, D, lit, ___, ___) \ |
| 344 V(StoreLocal, X, xeg, ___, ___) \ | 346 V(StoreLocal, X, xeg, ___, ___) \ |
| 345 V(PopLocal, X, xeg, ___, ___) \ | 347 V(PopLocal, X, xeg, ___, ___) \ |
| 346 V(StaticCall, A_D, num, num, ___) \ | 348 V(StaticCall, A_D, num, num, ___) \ |
| 347 V(InstanceCall, A_D, num, num, ___) \ | 349 V(InstanceCall, A_D, num, num, ___) \ |
| 348 V(InstanceCall2, A_D, num, num, ___) \ | 350 V(InstanceCall2, A_D, num, num, ___) \ |
| 349 V(InstanceCall3, A_D, num, num, ___) \ | 351 V(InstanceCall3, A_D, num, num, ___) \ |
| 350 V(NativeCall, 0, ___, ___, ___) \ | 352 V(NativeCall, 0, ___, ___, ___) \ |
| 351 V(NativeBootstrapCall, 0, ___, ___, ___) \ | 353 V(NativeBootstrapCall, 0, ___, ___, ___) \ |
| 352 V(AddTOS, 0, ___, ___, ___) \ | 354 V(AddTOS, 0, ___, ___, ___) \ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 kNumberOfDummyFpuRegisters, | 487 kNumberOfDummyFpuRegisters, |
| 486 }; | 488 }; |
| 487 const FpuRegister FpuTMP = kFakeFpuRegister; | 489 const FpuRegister FpuTMP = kFakeFpuRegister; |
| 488 const intptr_t kNumberOfFpuRegisters = 1; | 490 const intptr_t kNumberOfFpuRegisters = 1; |
| 489 | 491 |
| 490 enum Condition { EQ, NE }; | 492 enum Condition { EQ, NE }; |
| 491 | 493 |
| 492 } // namespace dart | 494 } // namespace dart |
| 493 | 495 |
| 494 #endif // VM_CONSTANTS_DBC_H_ | 496 #endif // VM_CONSTANTS_DBC_H_ |
| OLD | NEW |