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

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 22935005: Refine CountOperation of FullCodeGen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Sven's comment Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 // Actual value of root register is offset from the root array's start 46 // Actual value of root register is offset from the root array's start
47 // to take advantage of negitive 8-bit displacement values. 47 // to take advantage of negitive 8-bit displacement values.
48 const int kRootRegisterBias = 128; 48 const int kRootRegisterBias = 128;
49 49
50 // Convenience for platform-independent signatures. 50 // Convenience for platform-independent signatures.
51 typedef Operand MemOperand; 51 typedef Operand MemOperand;
52 52
53 enum RememberedSetAction { EMIT_REMEMBERED_SET, OMIT_REMEMBERED_SET }; 53 enum RememberedSetAction { EMIT_REMEMBERED_SET, OMIT_REMEMBERED_SET };
54 enum SmiCheck { INLINE_SMI_CHECK, OMIT_SMI_CHECK }; 54 enum SmiCheck { INLINE_SMI_CHECK, OMIT_SMI_CHECK };
55 55
56 enum SmiOperationConstraint {
57 NEED_RESERVE_SOURCES,
danno 2013/10/14 18:30:45 This should be PRESERVE_SOURCE_REGISTER
haitao.feng 2013/10/16 09:17:01 Done.
58 BAILOUT_ON_NO_OVERFLOW,
59 BAILOUT_ON_OVERFLOW,
60 NUMBER_OF_CONSTRAINTS
61 };
62
63 STATIC_ASSERT(NUMBER_OF_CONSTRAINTS <= 8);
64
65 class SmiOperationExecutionMode : public EnumSet<SmiOperationConstraint, byte> {
66 public:
67 SmiOperationExecutionMode() : EnumSet<SmiOperationConstraint, byte>(0) { }
68 explicit SmiOperationExecutionMode(byte bits)
69 : EnumSet<SmiOperationConstraint, byte>(bits) { }
70 };
71
56 bool AreAliased(Register r1, Register r2, Register r3, Register r4); 72 bool AreAliased(Register r1, Register r2, Register r3, Register r4);
57 73
58 // Forward declaration. 74 // Forward declaration.
59 class JumpTarget; 75 class JumpTarget;
60 76
61 struct SmiIndex { 77 struct SmiIndex {
62 SmiIndex(Register index_register, ScaleFactor scale) 78 SmiIndex(Register index_register, ScaleFactor scale)
63 : reg(index_register), 79 : reg(index_register),
64 scale(scale) {} 80 scale(scale) {}
65 Register reg; 81 Register reg;
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 // Subtract an integer constant from a tagged smi, giving a tagged smi as 567 // Subtract an integer constant from a tagged smi, giving a tagged smi as
552 // result. No testing on the result is done. Sets the N and Z flags 568 // result. No testing on the result is done. Sets the N and Z flags
553 // based on the value of the resulting integer. 569 // based on the value of the resulting integer.
554 void SmiSubConstant(Register dst, Register src, Smi* constant); 570 void SmiSubConstant(Register dst, Register src, Smi* constant);
555 571
556 // Subtract an integer constant from a tagged smi, giving a tagged smi as 572 // Subtract an integer constant from a tagged smi, giving a tagged smi as
557 // result, or jumping to a label if the result cannot be represented by a smi. 573 // result, or jumping to a label if the result cannot be represented by a smi.
558 void SmiSubConstant(Register dst, 574 void SmiSubConstant(Register dst,
559 Register src, 575 Register src,
560 Smi* constant, 576 Smi* constant,
561 Label* on_not_smi_result, 577 SmiOperationExecutionMode mode,
578 Label* bailout_label,
562 Label::Distance near_jump = Label::kFar); 579 Label::Distance near_jump = Label::kFar);
563 580
564 // Negating a smi can give a negative zero or too large positive value. 581 // Negating a smi can give a negative zero or too large positive value.
565 // NOTICE: This operation jumps on success, not failure! 582 // NOTICE: This operation jumps on success, not failure!
566 void SmiNeg(Register dst, 583 void SmiNeg(Register dst,
567 Register src, 584 Register src,
568 Label* on_smi_result, 585 Label* on_smi_result,
569 Label::Distance near_jump = Label::kFar); 586 Label::Distance near_jump = Label::kFar);
570 587
571 // Adds smi values and return the result as a smi. 588 // Adds smi values and return the result as a smi.
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after
1583 masm->popfq(); \ 1600 masm->popfq(); \
1584 } \ 1601 } \
1585 masm-> 1602 masm->
1586 #else 1603 #else
1587 #define ACCESS_MASM(masm) masm-> 1604 #define ACCESS_MASM(masm) masm->
1588 #endif 1605 #endif
1589 1606
1590 } } // namespace v8::internal 1607 } } // namespace v8::internal
1591 1608
1592 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1609 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698