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

Side by Side Diff: test/cctest/test-assembler-x64.cc

Issue 6647015: X64: Change kSmiConstantRegister to r12. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 9 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/register-allocator-x64-inl.h ('k') | test/cctest/test-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 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 using v8::internal::Label; 43 using v8::internal::Label;
44 using v8::internal::rax; 44 using v8::internal::rax;
45 using v8::internal::rsi; 45 using v8::internal::rsi;
46 using v8::internal::rdi; 46 using v8::internal::rdi;
47 using v8::internal::rcx; 47 using v8::internal::rcx;
48 using v8::internal::rdx; 48 using v8::internal::rdx;
49 using v8::internal::rbp; 49 using v8::internal::rbp;
50 using v8::internal::rsp; 50 using v8::internal::rsp;
51 using v8::internal::r8; 51 using v8::internal::r8;
52 using v8::internal::r9; 52 using v8::internal::r9;
53 using v8::internal::r12;
54 using v8::internal::r13; 53 using v8::internal::r13;
54 using v8::internal::r15;
55 using v8::internal::times_1; 55 using v8::internal::times_1;
56 56
57 using v8::internal::FUNCTION_CAST; 57 using v8::internal::FUNCTION_CAST;
58 using v8::internal::CodeDesc; 58 using v8::internal::CodeDesc;
59 using v8::internal::less_equal; 59 using v8::internal::less_equal;
60 using v8::internal::not_equal; 60 using v8::internal::not_equal;
61 using v8::internal::greater; 61 using v8::internal::greater;
62 62
63 // Test the x64 assembler by compiling some simple functions into 63 // Test the x64 assembler by compiling some simple functions into
64 // a buffer and executing them. These tests do not initialize the 64 // a buffer and executing them. These tests do not initialize the
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 310
311 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rax)); 311 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rax));
312 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rcx)); 312 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rcx));
313 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r8)); 313 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r8));
314 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r9)); 314 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r9));
315 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rdx)); 315 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rdx));
316 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rsp)); 316 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rsp));
317 317
318 CHECK(Operand(rsp, offset).AddressUsesRegister(rsp)); 318 CHECK(Operand(rsp, offset).AddressUsesRegister(rsp));
319 CHECK(!Operand(rsp, offset).AddressUsesRegister(rax)); 319 CHECK(!Operand(rsp, offset).AddressUsesRegister(rax));
320 CHECK(!Operand(rsp, offset).AddressUsesRegister(r12)); 320 CHECK(!Operand(rsp, offset).AddressUsesRegister(r15));
321 321
322 CHECK(Operand(rbp, offset).AddressUsesRegister(rbp)); 322 CHECK(Operand(rbp, offset).AddressUsesRegister(rbp));
323 CHECK(!Operand(rbp, offset).AddressUsesRegister(rax)); 323 CHECK(!Operand(rbp, offset).AddressUsesRegister(rax));
324 CHECK(!Operand(rbp, offset).AddressUsesRegister(r13)); 324 CHECK(!Operand(rbp, offset).AddressUsesRegister(r13));
325 325
326 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rbp)); 326 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rbp));
327 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rax)); 327 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rax));
328 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rcx)); 328 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rcx));
329 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r13)); 329 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r13));
330 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r8)); 330 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r8));
331 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rsp)); 331 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rsp));
332 332
333 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rsp)); 333 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rsp));
334 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rbp)); 334 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rbp));
335 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rax)); 335 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rax));
336 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r12)); 336 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r15));
337 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r13)); 337 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r13));
338 } 338 }
339 } 339 }
340 340
341 #undef __ 341 #undef __
OLDNEW
« no previous file with comments | « src/x64/register-allocator-x64-inl.h ('k') | test/cctest/test-macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698