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

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

Issue 1219943002: Expose SIMD.Float32x4 type to Javascript. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Don't install SIMD object without the simd flag. Created 5 years, 5 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_MIPS 7 #if V8_TARGET_ARCH_MIPS
8 8
9 // Note on Mips implementation: 9 // Note on Mips implementation:
10 // 10 //
(...skipping 5204 matching lines...) Expand 10 before | Expand all | Expand 10 after
5215 __ GetObjectType(v0, v0, a1); 5215 __ GetObjectType(v0, v0, a1);
5216 __ Branch(if_false, ge, a1, Operand(FIRST_NONSTRING_TYPE)); 5216 __ Branch(if_false, ge, a1, Operand(FIRST_NONSTRING_TYPE));
5217 __ lbu(a1, FieldMemOperand(v0, Map::kBitFieldOffset)); 5217 __ lbu(a1, FieldMemOperand(v0, Map::kBitFieldOffset));
5218 __ And(a1, a1, Operand(1 << Map::kIsUndetectable)); 5218 __ And(a1, a1, Operand(1 << Map::kIsUndetectable));
5219 Split(eq, a1, Operand(zero_reg), 5219 Split(eq, a1, Operand(zero_reg),
5220 if_true, if_false, fall_through); 5220 if_true, if_false, fall_through);
5221 } else if (String::Equals(check, factory->symbol_string())) { 5221 } else if (String::Equals(check, factory->symbol_string())) {
5222 __ JumpIfSmi(v0, if_false); 5222 __ JumpIfSmi(v0, if_false);
5223 __ GetObjectType(v0, v0, a1); 5223 __ GetObjectType(v0, v0, a1);
5224 Split(eq, a1, Operand(SYMBOL_TYPE), if_true, if_false, fall_through); 5224 Split(eq, a1, Operand(SYMBOL_TYPE), if_true, if_false, fall_through);
5225 } else if (String::Equals(check, factory->float32x4_string())) {
5226 __ JumpIfSmi(v0, if_false);
5227 __ GetObjectType(v0, v0, a1);
5228 Split(eq, a1, Operand(FLOAT32X4_TYPE), if_true, if_false, fall_through);
5225 } else if (String::Equals(check, factory->boolean_string())) { 5229 } else if (String::Equals(check, factory->boolean_string())) {
5226 __ LoadRoot(at, Heap::kTrueValueRootIndex); 5230 __ LoadRoot(at, Heap::kTrueValueRootIndex);
5227 __ Branch(if_true, eq, v0, Operand(at)); 5231 __ Branch(if_true, eq, v0, Operand(at));
5228 __ LoadRoot(at, Heap::kFalseValueRootIndex); 5232 __ LoadRoot(at, Heap::kFalseValueRootIndex);
5229 Split(eq, v0, Operand(at), if_true, if_false, fall_through); 5233 Split(eq, v0, Operand(at), if_true, if_false, fall_through);
5230 } else if (String::Equals(check, factory->undefined_string())) { 5234 } else if (String::Equals(check, factory->undefined_string())) {
5231 __ LoadRoot(at, Heap::kUndefinedValueRootIndex); 5235 __ LoadRoot(at, Heap::kUndefinedValueRootIndex);
5232 __ Branch(if_true, eq, v0, Operand(at)); 5236 __ Branch(if_true, eq, v0, Operand(at));
5233 __ JumpIfSmi(v0, if_false); 5237 __ JumpIfSmi(v0, if_false);
5234 // Check for undetectable objects => true. 5238 // Check for undetectable objects => true.
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
5550 reinterpret_cast<uint32_t>( 5554 reinterpret_cast<uint32_t>(
5551 isolate->builtins()->OsrAfterStackCheck()->entry())); 5555 isolate->builtins()->OsrAfterStackCheck()->entry()));
5552 return OSR_AFTER_STACK_CHECK; 5556 return OSR_AFTER_STACK_CHECK;
5553 } 5557 }
5554 5558
5555 5559
5556 } // namespace internal 5560 } // namespace internal
5557 } // namespace v8 5561 } // namespace v8
5558 5562
5559 #endif // V8_TARGET_ARCH_MIPS 5563 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698