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

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: Tweak SmiSubConstant and use it in CountOperation with bailout label 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
« no previous file with comments | « src/x64/full-codegen-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 SmiExecutionMode {
Sven Panne 2013/10/10 10:46:45 Don't use an enum here, which fundamentally wrong,
57 SMI_NO_CONSTRAINT = 0, // 0000000
58 SMI_NEED_RESERVE_SOURCES = 0x1, // 0000001
59 SMI_BAILOUT_ON_NO_OVERFLOW = 0x2, // 0000010
60 SMI_BAILOUT_ON_OVERFLOW = 0x4 // 0000100
61 };
62
56 bool AreAliased(Register r1, Register r2, Register r3, Register r4); 63 bool AreAliased(Register r1, Register r2, Register r3, Register r4);
57 64
58 // Forward declaration. 65 // Forward declaration.
59 class JumpTarget; 66 class JumpTarget;
60 67
61 struct SmiIndex { 68 struct SmiIndex {
62 SmiIndex(Register index_register, ScaleFactor scale) 69 SmiIndex(Register index_register, ScaleFactor scale)
63 : reg(index_register), 70 : reg(index_register),
64 scale(scale) {} 71 scale(scale) {}
65 Register reg; 72 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 558 // 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 559 // result. No testing on the result is done. Sets the N and Z flags
553 // based on the value of the resulting integer. 560 // based on the value of the resulting integer.
554 void SmiSubConstant(Register dst, Register src, Smi* constant); 561 void SmiSubConstant(Register dst, Register src, Smi* constant);
555 562
556 // Subtract an integer constant from a tagged smi, giving a tagged smi as 563 // 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. 564 // result, or jumping to a label if the result cannot be represented by a smi.
558 void SmiSubConstant(Register dst, 565 void SmiSubConstant(Register dst,
559 Register src, 566 Register src,
560 Smi* constant, 567 Smi* constant,
561 Label* on_not_smi_result, 568 SmiExecutionMode mode,
569 Label* bailout_label,
562 Label::Distance near_jump = Label::kFar); 570 Label::Distance near_jump = Label::kFar);
563 571
564 // Negating a smi can give a negative zero or too large positive value. 572 // Negating a smi can give a negative zero or too large positive value.
565 // NOTICE: This operation jumps on success, not failure! 573 // NOTICE: This operation jumps on success, not failure!
566 void SmiNeg(Register dst, 574 void SmiNeg(Register dst,
567 Register src, 575 Register src,
568 Label* on_smi_result, 576 Label* on_smi_result,
569 Label::Distance near_jump = Label::kFar); 577 Label::Distance near_jump = Label::kFar);
570 578
571 // Adds smi values and return the result as a smi. 579 // Adds smi values and return the result as a smi.
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
1572 masm->popfq(); \ 1580 masm->popfq(); \
1573 } \ 1581 } \
1574 masm-> 1582 masm->
1575 #else 1583 #else
1576 #define ACCESS_MASM(masm) masm-> 1584 #define ACCESS_MASM(masm) masm->
1577 #endif 1585 #endif
1578 1586
1579 } } // namespace v8::internal 1587 } } // namespace v8::internal
1580 1588
1581 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1589 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/full-codegen-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698