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

Side by Side Diff: src/x64/assembler-x64.cc

Issue 123017: X64: Create test JS-function and call it. (Closed)
Patch Set: Created 11 years, 6 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
« no previous file with comments | « no previous file | src/x64/assembler-x64-inl.h » ('j') | src/x64/codegen-x64.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 75
76 Operand::Operand(Register base, int32_t disp): rex_(0) { 76 Operand::Operand(Register base, int32_t disp): rex_(0) {
77 len_ = 1; 77 len_ = 1;
78 if (base.is(rsp) || base.is(r12)) { 78 if (base.is(rsp) || base.is(r12)) {
79 // SIB byte is needed to encode (rsp + offset) or (r12 + offset). 79 // SIB byte is needed to encode (rsp + offset) or (r12 + offset).
80 set_sib(kTimes1, rsp, base); 80 set_sib(kTimes1, rsp, base);
81 } 81 }
82 82
83 if (disp == 0 && !base.is(rbp) && !base.is(r13)) { 83 if (disp == 0 && !base.is(rbp) && !base.is(r13)) {
84 set_modrm(0, rsp); 84 set_modrm(0, base);
85 } else if (is_int8(disp)) { 85 } else if (is_int8(disp)) {
86 set_modrm(1, base); 86 set_modrm(1, base);
87 set_disp8(disp); 87 set_disp8(disp);
88 } else { 88 } else {
89 set_modrm(2, base); 89 set_modrm(2, base);
90 set_disp32(disp); 90 set_disp32(disp);
91 } 91 }
92 } 92 }
93 93
94 94
(...skipping 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after
1691 UNIMPLEMENTED(); 1691 UNIMPLEMENTED();
1692 return NULL; 1692 return NULL;
1693 } 1693 }
1694 1694
1695 byte* JavaScriptFrame::GetCallerStackPointer() const { 1695 byte* JavaScriptFrame::GetCallerStackPointer() const {
1696 UNIMPLEMENTED(); 1696 UNIMPLEMENTED();
1697 return NULL; 1697 return NULL;
1698 } 1698 }
1699 1699
1700 } } // namespace v8::internal 1700 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64-inl.h » ('j') | src/x64/codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698