OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 #include "src/compilation-info.h" | 6 #include "src/compilation-info.h" |
7 #include "src/compiler/code-generator-impl.h" | 7 #include "src/compiler/code-generator-impl.h" |
8 #include "src/compiler/gap-resolver.h" | 8 #include "src/compiler/gap-resolver.h" |
9 #include "src/compiler/node-matchers.h" | 9 #include "src/compiler/node-matchers.h" |
10 #include "src/compiler/osr.h" | 10 #include "src/compiler/osr.h" |
(...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1387 break; | 1387 break; |
1388 case kMipsFloat64InsertHighWord32: | 1388 case kMipsFloat64InsertHighWord32: |
1389 __ FmoveHigh(i.OutputDoubleRegister(), i.InputRegister(1)); | 1389 __ FmoveHigh(i.OutputDoubleRegister(), i.InputRegister(1)); |
1390 break; | 1390 break; |
1391 case kMipsFloat64SilenceNaN: | 1391 case kMipsFloat64SilenceNaN: |
1392 __ FPUCanonicalizeNaN(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); | 1392 __ FPUCanonicalizeNaN(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); |
1393 break; | 1393 break; |
1394 | 1394 |
1395 // ... more basic instructions ... | 1395 // ... more basic instructions ... |
1396 case kMipsSeb: | 1396 case kMipsSeb: |
1397 __ seb(i.OutputRegister(), i.InputRegister(0)); | 1397 __ Seb(i.OutputRegister(), i.InputRegister(0)); |
1398 break; | 1398 break; |
1399 case kMipsSeh: | 1399 case kMipsSeh: |
1400 __ seh(i.OutputRegister(), i.InputRegister(0)); | 1400 __ Seh(i.OutputRegister(), i.InputRegister(0)); |
1401 break; | 1401 break; |
1402 case kMipsLbu: | 1402 case kMipsLbu: |
1403 __ lbu(i.OutputRegister(), i.MemoryOperand()); | 1403 __ lbu(i.OutputRegister(), i.MemoryOperand()); |
1404 break; | 1404 break; |
1405 case kMipsLb: | 1405 case kMipsLb: |
1406 __ lb(i.OutputRegister(), i.MemoryOperand()); | 1406 __ lb(i.OutputRegister(), i.MemoryOperand()); |
1407 break; | 1407 break; |
1408 case kMipsSb: | 1408 case kMipsSb: |
1409 __ sb(i.InputRegister(2), i.MemoryOperand()); | 1409 __ sb(i.InputRegister(2), i.MemoryOperand()); |
1410 break; | 1410 break; |
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2255 padding_size -= v8::internal::Assembler::kInstrSize; | 2255 padding_size -= v8::internal::Assembler::kInstrSize; |
2256 } | 2256 } |
2257 } | 2257 } |
2258 } | 2258 } |
2259 | 2259 |
2260 #undef __ | 2260 #undef __ |
2261 | 2261 |
2262 } // namespace compiler | 2262 } // namespace compiler |
2263 } // namespace internal | 2263 } // namespace internal |
2264 } // namespace v8 | 2264 } // namespace v8 |
OLD | NEW |