Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(651)

Side by Side Diff: runtime/vm/constants_dbc.h

Issue 2113563002: DBC: Various instructions. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 // Used to implement conditional jump: 221 // Used to implement conditional jump:
222 // 222 //
223 // IfNeStrictTOS 223 // IfNeStrictTOS
224 // Jump T ;; jump if not equal 224 // Jump T ;; jump if not equal
225 // 225 //
226 // - If<Cond>Null rA 226 // - If<Cond>Null rA
227 // 227 //
228 // Cond is Eq or Ne. Skips the next instruction unless the given condition 228 // Cond is Eq or Ne. Skips the next instruction unless the given condition
229 // holds. 229 // holds.
230 // 230 //
231 // - If<Cond> rA, rD
232 //
233 // Cond is Le, Lt, Ge, Gt. Skips the next instruction unless
234 // FP[rA] <Cond> FP[rD]. Assumes that FP[rA] and FP[rD] are Smis.
235 //
231 // - CreateArrayTOS 236 // - CreateArrayTOS
232 // 237 //
233 // Allocate array of length SP[0] with type arguments SP[-1]. 238 // Allocate array of length SP[0] with type arguments SP[-1].
234 // 239 //
235 // - Allocate D 240 // - Allocate D
236 // 241 //
237 // Allocate object of class PP[D] with no type arguments. 242 // Allocate object of class PP[D] with no type arguments.
238 // 243 //
239 // - AllocateT 244 // - AllocateT
240 // 245 //
241 // Allocate object of class SP[0] with type arguments SP[-1]. 246 // Allocate object of class SP[0] with type arguments SP[-1].
242 // 247 //
243 // - StoreIndexedTOS 248 // - StoreIndexedTOS
244 // 249 //
245 // Store SP[0] into array SP[-2] at index SP[-1]. No typechecking is done. 250 // Store SP[0] into array SP[-2] at index SP[-1]. No typechecking is done.
246 // SP[-2] is assumed to be a RawArray, SP[-1] to be a smi. 251 // SP[-2] is assumed to be a RawArray, SP[-1] to be a smi.
247 // 252 //
248 // - StoreIndexed rA, rB, rC 253 // - StoreIndexed rA, rB, rC
249 // 254 //
250 // Store rC into array rA at index rB. No typechecking is done. 255 // Store rC into array rA at index rB. No typechecking is done.
251 // rA is assumed to be a RawArray, rB to be a smi. 256 // rA is assumed to be a RawArray, rB to be a smi.
252 // 257 //
258 // - LoadIndexed rA, rB, rC
259 //
260 // Loads from array FP[rB] at index FP[rC] into FP[rA]. No typechecking is
261 // done. FP[rB] is assumed to be a RawArray, and to contain a Smi at FP[rC].
262 //
253 // - StoreField rA, B, rC 263 // - StoreField rA, B, rC
254 // 264 //
255 // Store value FP[rC] into object FP[rA] at offset (in words) B. 265 // Store value FP[rC] into object FP[rA] at offset (in words) B.
256 // 266 //
257 // - StoreFieldTOS D 267 // - StoreFieldTOS D
258 // 268 //
259 // Store value SP[0] into object SP[-1] at offset (in words) D. 269 // Store value SP[0] into object SP[-1] at offset (in words) D.
260 // 270 //
261 // - LoadField rA, rB, C 271 // - LoadField rA, rB, C
262 // 272 //
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 V(BitNot, A_D, reg, reg, ___) \ 520 V(BitNot, A_D, reg, reg, ___) \
511 V(StoreStaticTOS, D, lit, ___, ___) \ 521 V(StoreStaticTOS, D, lit, ___, ___) \
512 V(PushStatic, D, lit, ___, ___) \ 522 V(PushStatic, D, lit, ___, ___) \
513 V(InitStaticTOS, 0, ___, ___, ___) \ 523 V(InitStaticTOS, 0, ___, ___, ___) \
514 V(IfNeStrictTOS, 0, ___, ___, ___) \ 524 V(IfNeStrictTOS, 0, ___, ___, ___) \
515 V(IfEqStrictTOS, 0, ___, ___, ___) \ 525 V(IfEqStrictTOS, 0, ___, ___, ___) \
516 V(IfNeStrictNumTOS, 0, ___, ___, ___) \ 526 V(IfNeStrictNumTOS, 0, ___, ___, ___) \
517 V(IfEqStrictNumTOS, 0, ___, ___, ___) \ 527 V(IfEqStrictNumTOS, 0, ___, ___, ___) \
518 V(IfNeStrict, A_D, reg, reg, ___) \ 528 V(IfNeStrict, A_D, reg, reg, ___) \
519 V(IfEqStrict, A_D, reg, reg, ___) \ 529 V(IfEqStrict, A_D, reg, reg, ___) \
530 V(IfLe, A_D, reg, reg, ___) \
531 V(IfLt, A_D, reg, reg, ___) \
532 V(IfGe, A_D, reg, reg, ___) \
533 V(IfGt, A_D, reg, reg, ___) \
520 V(IfNeStrictNum, A_D, reg, reg, ___) \ 534 V(IfNeStrictNum, A_D, reg, reg, ___) \
521 V(IfEqStrictNum, A_D, reg, reg, ___) \ 535 V(IfEqStrictNum, A_D, reg, reg, ___) \
522 V(IfEqNull, A, reg, ___, ___) \ 536 V(IfEqNull, A, reg, ___, ___) \
523 V(IfNeNull, A, reg, ___, ___) \ 537 V(IfNeNull, A, reg, ___, ___) \
524 V(CreateArrayTOS, 0, ___, ___, ___) \ 538 V(CreateArrayTOS, 0, ___, ___, ___) \
525 V(Allocate, D, lit, ___, ___) \ 539 V(Allocate, D, lit, ___, ___) \
526 V(AllocateT, 0, ___, ___, ___) \ 540 V(AllocateT, 0, ___, ___, ___) \
527 V(StoreIndexedTOS, 0, ___, ___, ___) \ 541 V(StoreIndexedTOS, 0, ___, ___, ___) \
528 V(StoreIndexed, A_B_C, reg, reg, reg) \ 542 V(StoreIndexed, A_B_C, reg, reg, reg) \
543 V(LoadIndexed, A_B_C, reg, reg, reg) \
529 V(StoreField, A_B_C, reg, num, reg) \ 544 V(StoreField, A_B_C, reg, num, reg) \
530 V(StoreFieldTOS, D, num, ___, ___) \ 545 V(StoreFieldTOS, D, num, ___, ___) \
531 V(LoadField, A_B_C, reg, reg, num) \ 546 V(LoadField, A_B_C, reg, reg, num) \
532 V(LoadFieldTOS, D, num, ___, ___) \ 547 V(LoadFieldTOS, D, num, ___, ___) \
533 V(BooleanNegateTOS, 0, ___, ___, ___) \ 548 V(BooleanNegateTOS, 0, ___, ___, ___) \
534 V(BooleanNegate, A_D, reg, reg, ___) \ 549 V(BooleanNegate, A_D, reg, reg, ___) \
535 V(Throw, A, num, ___, ___) \ 550 V(Throw, A, num, ___, ___) \
536 V(Entry, A_B_C, num, num, num) \ 551 V(Entry, A_B_C, num, num, num) \
537 V(EntryOptional, A_B_C, num, num, num) \ 552 V(EntryOptional, A_B_C, num, num, num) \
538 V(EntryOptimized, A_D, num, num, ___) \ 553 V(EntryOptimized, A_D, num, num, ___) \
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 685
671 // After a comparison, the condition NEXT_IS_TRUE means the following 686 // After a comparison, the condition NEXT_IS_TRUE means the following
672 // instruction is executed if the comparision is true and skipped over overwise. 687 // instruction is executed if the comparision is true and skipped over overwise.
673 // Conidition NEXT_IS_FALSE means the following instruction is executed if the 688 // Conidition NEXT_IS_FALSE means the following instruction is executed if the
674 // comparison is false and skipped over otherwise. 689 // comparison is false and skipped over otherwise.
675 enum Condition { NEXT_IS_TRUE, NEXT_IS_FALSE }; 690 enum Condition { NEXT_IS_TRUE, NEXT_IS_FALSE };
676 691
677 } // namespace dart 692 } // namespace dart
678 693
679 #endif // VM_CONSTANTS_DBC_H_ 694 #endif // VM_CONSTANTS_DBC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698