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

Side by Side Diff: src/x64/full-codegen-x64.cc

Issue 90643003: Experimental implementation: Exposing SIMD instructions into JavaScript Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/disasm-x64.cc ('k') | src/x64/lithium-codegen-x64.h » ('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 4508 matching lines...) Expand 10 before | Expand all | Expand 10 after
4519 { AccumulatorValueContext context(this); 4519 { AccumulatorValueContext context(this);
4520 VisitForTypeofValue(sub_expr); 4520 VisitForTypeofValue(sub_expr);
4521 } 4521 }
4522 PrepareForBailoutBeforeSplit(expr, true, if_true, if_false); 4522 PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
4523 4523
4524 if (check->Equals(isolate()->heap()->number_string())) { 4524 if (check->Equals(isolate()->heap()->number_string())) {
4525 __ JumpIfSmi(rax, if_true); 4525 __ JumpIfSmi(rax, if_true);
4526 __ movq(rax, FieldOperand(rax, HeapObject::kMapOffset)); 4526 __ movq(rax, FieldOperand(rax, HeapObject::kMapOffset));
4527 __ CompareRoot(rax, Heap::kHeapNumberMapRootIndex); 4527 __ CompareRoot(rax, Heap::kHeapNumberMapRootIndex);
4528 Split(equal, if_true, if_false, fall_through); 4528 Split(equal, if_true, if_false, fall_through);
4529 } else if (check->Equals(isolate()->heap()->float32x4_string())) {
4530 __ JumpIfSmi(rax, if_false);
4531 __ CmpObjectType(rax, FLOAT32x4_TYPE, rdx);
4532 Split(equal, if_true, if_false, fall_through);
4533 } else if (check->Equals(isolate()->heap()->int32x4_string())) {
4534 __ JumpIfSmi(rax, if_false);
4535 __ CmpObjectType(rax, INT32x4_TYPE, rdx);
4536 Split(equal, if_true, if_false, fall_through);
4529 } else if (check->Equals(isolate()->heap()->string_string())) { 4537 } else if (check->Equals(isolate()->heap()->string_string())) {
4530 __ JumpIfSmi(rax, if_false); 4538 __ JumpIfSmi(rax, if_false);
4531 // Check for undetectable objects => false. 4539 // Check for undetectable objects => false.
4532 __ CmpObjectType(rax, FIRST_NONSTRING_TYPE, rdx); 4540 __ CmpObjectType(rax, FIRST_NONSTRING_TYPE, rdx);
4533 __ j(above_equal, if_false); 4541 __ j(above_equal, if_false);
4534 __ testb(FieldOperand(rdx, Map::kBitFieldOffset), 4542 __ testb(FieldOperand(rdx, Map::kBitFieldOffset),
4535 Immediate(1 << Map::kIsUndetectable)); 4543 Immediate(1 << Map::kIsUndetectable));
4536 Split(zero, if_true, if_false, fall_through); 4544 Split(zero, if_true, if_false, fall_through);
4537 } else if (check->Equals(isolate()->heap()->symbol_string())) { 4545 } else if (check->Equals(isolate()->heap()->symbol_string())) {
4538 __ JumpIfSmi(rax, if_false); 4546 __ JumpIfSmi(rax, if_false);
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
4901 4909
4902 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), 4910 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(),
4903 Assembler::target_address_at(call_target_address)); 4911 Assembler::target_address_at(call_target_address));
4904 return OSR_AFTER_STACK_CHECK; 4912 return OSR_AFTER_STACK_CHECK;
4905 } 4913 }
4906 4914
4907 4915
4908 } } // namespace v8::internal 4916 } } // namespace v8::internal
4909 4917
4910 #endif // V8_TARGET_ARCH_X64 4918 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/disasm-x64.cc ('k') | src/x64/lithium-codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698