| OLD | NEW | 
|---|
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 439     case INVALID_TYPE: return "INVALID"; | 439     case INVALID_TYPE: return "INVALID"; | 
| 440     case MAP_TYPE: return "MAP"; | 440     case MAP_TYPE: return "MAP"; | 
| 441     case HEAP_NUMBER_TYPE: return "HEAP_NUMBER"; | 441     case HEAP_NUMBER_TYPE: return "HEAP_NUMBER"; | 
| 442     case SYMBOL_TYPE: return "SYMBOL"; | 442     case SYMBOL_TYPE: return "SYMBOL"; | 
| 443     case ASCII_SYMBOL_TYPE: return "ASCII_SYMBOL"; | 443     case ASCII_SYMBOL_TYPE: return "ASCII_SYMBOL"; | 
| 444     case CONS_SYMBOL_TYPE: return "CONS_SYMBOL"; | 444     case CONS_SYMBOL_TYPE: return "CONS_SYMBOL"; | 
| 445     case CONS_ASCII_SYMBOL_TYPE: return "CONS_ASCII_SYMBOL"; | 445     case CONS_ASCII_SYMBOL_TYPE: return "CONS_ASCII_SYMBOL"; | 
| 446     case EXTERNAL_ASCII_SYMBOL_TYPE: | 446     case EXTERNAL_ASCII_SYMBOL_TYPE: | 
| 447     case EXTERNAL_SYMBOL_WITH_ASCII_DATA_TYPE: | 447     case EXTERNAL_SYMBOL_WITH_ASCII_DATA_TYPE: | 
| 448     case EXTERNAL_SYMBOL_TYPE: return "EXTERNAL_SYMBOL"; | 448     case EXTERNAL_SYMBOL_TYPE: return "EXTERNAL_SYMBOL"; | 
| 449     case SHORT_EXTERNAL_ASCII_SYMBOL_TYPE: |  | 
| 450     case SHORT_EXTERNAL_SYMBOL_WITH_ASCII_DATA_TYPE: |  | 
| 451     case SHORT_EXTERNAL_SYMBOL_TYPE: return "SHORT_EXTERNAL_SYMBOL"; |  | 
| 452     case ASCII_STRING_TYPE: return "ASCII_STRING"; | 449     case ASCII_STRING_TYPE: return "ASCII_STRING"; | 
| 453     case STRING_TYPE: return "TWO_BYTE_STRING"; | 450     case STRING_TYPE: return "TWO_BYTE_STRING"; | 
| 454     case CONS_STRING_TYPE: | 451     case CONS_STRING_TYPE: | 
| 455     case CONS_ASCII_STRING_TYPE: return "CONS_STRING"; | 452     case CONS_ASCII_STRING_TYPE: return "CONS_STRING"; | 
| 456     case EXTERNAL_ASCII_STRING_TYPE: | 453     case EXTERNAL_ASCII_STRING_TYPE: | 
| 457     case EXTERNAL_STRING_WITH_ASCII_DATA_TYPE: | 454     case EXTERNAL_STRING_WITH_ASCII_DATA_TYPE: | 
| 458     case EXTERNAL_STRING_TYPE: return "EXTERNAL_STRING"; | 455     case EXTERNAL_STRING_TYPE: return "EXTERNAL_STRING"; | 
| 459     case SHORT_EXTERNAL_ASCII_STRING_TYPE: |  | 
| 460     case SHORT_EXTERNAL_STRING_WITH_ASCII_DATA_TYPE: |  | 
| 461     case SHORT_EXTERNAL_STRING_TYPE: return "SHORT_EXTERNAL_STRING"; |  | 
| 462     case FIXED_ARRAY_TYPE: return "FIXED_ARRAY"; | 456     case FIXED_ARRAY_TYPE: return "FIXED_ARRAY"; | 
| 463     case BYTE_ARRAY_TYPE: return "BYTE_ARRAY"; | 457     case BYTE_ARRAY_TYPE: return "BYTE_ARRAY"; | 
| 464     case FREE_SPACE_TYPE: return "FREE_SPACE"; | 458     case FREE_SPACE_TYPE: return "FREE_SPACE"; | 
| 465     case EXTERNAL_PIXEL_ARRAY_TYPE: return "EXTERNAL_PIXEL_ARRAY"; | 459     case EXTERNAL_PIXEL_ARRAY_TYPE: return "EXTERNAL_PIXEL_ARRAY"; | 
| 466     case EXTERNAL_BYTE_ARRAY_TYPE: return "EXTERNAL_BYTE_ARRAY"; | 460     case EXTERNAL_BYTE_ARRAY_TYPE: return "EXTERNAL_BYTE_ARRAY"; | 
| 467     case EXTERNAL_UNSIGNED_BYTE_ARRAY_TYPE: | 461     case EXTERNAL_UNSIGNED_BYTE_ARRAY_TYPE: | 
| 468       return "EXTERNAL_UNSIGNED_BYTE_ARRAY"; | 462       return "EXTERNAL_UNSIGNED_BYTE_ARRAY"; | 
| 469     case EXTERNAL_SHORT_ARRAY_TYPE: return "EXTERNAL_SHORT_ARRAY"; | 463     case EXTERNAL_SHORT_ARRAY_TYPE: return "EXTERNAL_SHORT_ARRAY"; | 
| 470     case EXTERNAL_UNSIGNED_SHORT_ARRAY_TYPE: | 464     case EXTERNAL_UNSIGNED_SHORT_ARRAY_TYPE: | 
| 471       return "EXTERNAL_UNSIGNED_SHORT_ARRAY"; | 465       return "EXTERNAL_UNSIGNED_SHORT_ARRAY"; | 
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 956     desc.Print(out); | 950     desc.Print(out); | 
| 957   } | 951   } | 
| 958   PrintF(out, "\n"); | 952   PrintF(out, "\n"); | 
| 959 } | 953 } | 
| 960 | 954 | 
| 961 | 955 | 
| 962 #endif  // OBJECT_PRINT | 956 #endif  // OBJECT_PRINT | 
| 963 | 957 | 
| 964 | 958 | 
| 965 } }  // namespace v8::internal | 959 } }  // namespace v8::internal | 
| OLD | NEW | 
|---|