OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 10347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10358 case KEYED_LOAD_IC: return "KEYED_LOAD_IC"; | 10358 case KEYED_LOAD_IC: return "KEYED_LOAD_IC"; |
10359 case STORE_IC: return "STORE_IC"; | 10359 case STORE_IC: return "STORE_IC"; |
10360 case KEYED_STORE_IC: return "KEYED_STORE_IC"; | 10360 case KEYED_STORE_IC: return "KEYED_STORE_IC"; |
10361 case CALL_IC: return "CALL_IC"; | 10361 case CALL_IC: return "CALL_IC"; |
10362 case KEYED_CALL_IC: return "KEYED_CALL_IC"; | 10362 case KEYED_CALL_IC: return "KEYED_CALL_IC"; |
10363 case UNARY_OP_IC: return "UNARY_OP_IC"; | 10363 case UNARY_OP_IC: return "UNARY_OP_IC"; |
10364 case BINARY_OP_IC: return "BINARY_OP_IC"; | 10364 case BINARY_OP_IC: return "BINARY_OP_IC"; |
10365 case COMPARE_IC: return "COMPARE_IC"; | 10365 case COMPARE_IC: return "COMPARE_IC"; |
10366 case COMPARE_NIL_IC: return "COMPARE_NIL_IC"; | 10366 case COMPARE_NIL_IC: return "COMPARE_NIL_IC"; |
10367 case TO_BOOLEAN_IC: return "TO_BOOLEAN_IC"; | 10367 case TO_BOOLEAN_IC: return "TO_BOOLEAN_IC"; |
| 10368 case REGEXP: return "REGEXP"; |
10368 } | 10369 } |
10369 UNREACHABLE(); | 10370 UNREACHABLE(); |
10370 return NULL; | 10371 return NULL; |
10371 } | 10372 } |
10372 | 10373 |
10373 | 10374 |
10374 #ifdef ENABLE_DISASSEMBLER | 10375 #ifdef ENABLE_DISASSEMBLER |
10375 | 10376 |
10376 void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) { | 10377 void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) { |
10377 disasm::NameConverter converter; | 10378 disasm::NameConverter converter; |
(...skipping 5388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15766 return static_cast<Type*>(type_raw()); | 15767 return static_cast<Type*>(type_raw()); |
15767 } | 15768 } |
15768 | 15769 |
15769 | 15770 |
15770 void PropertyCell::set_type(Type* type, WriteBarrierMode ignored) { | 15771 void PropertyCell::set_type(Type* type, WriteBarrierMode ignored) { |
15771 set_type_raw(type, ignored); | 15772 set_type_raw(type, ignored); |
15772 } | 15773 } |
15773 | 15774 |
15774 | 15775 |
15775 } } // namespace v8::internal | 15776 } } // namespace v8::internal |
OLD | NEW |