OLD | NEW |
1 // Copyright 2006-2008 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 |
11 // with the distribution. | 11 // with the distribution. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 case NORMAL: | 45 case NORMAL: |
46 PrintF(out, " -type = normal\n"); | 46 PrintF(out, " -type = normal\n"); |
47 PrintF(out, " -entry = %d", GetDictionaryEntry()); | 47 PrintF(out, " -entry = %d", GetDictionaryEntry()); |
48 break; | 48 break; |
49 case MAP_TRANSITION: | 49 case MAP_TRANSITION: |
50 PrintF(out, " -type = map transition\n"); | 50 PrintF(out, " -type = map transition\n"); |
51 PrintF(out, " -map:\n"); | 51 PrintF(out, " -map:\n"); |
52 GetTransitionMap()->Print(out); | 52 GetTransitionMap()->Print(out); |
53 PrintF(out, "\n"); | 53 PrintF(out, "\n"); |
54 break; | 54 break; |
55 case EXTERNAL_ARRAY_TRANSITION: | 55 case ELEMENTS_TRANSITION: |
56 PrintF(out, " -type = external array transition\n"); | 56 PrintF(out, " -type = elements transition\n"); |
57 PrintF(out, " -map:\n"); | 57 PrintF(out, " -map:\n"); |
58 GetTransitionMap()->Print(out); | 58 GetTransitionMap()->Print(out); |
59 PrintF(out, "\n"); | 59 PrintF(out, "\n"); |
60 break; | 60 break; |
61 case CONSTANT_FUNCTION: | 61 case CONSTANT_FUNCTION: |
62 PrintF(out, " -type = constant function\n"); | 62 PrintF(out, " -type = constant function\n"); |
63 PrintF(out, " -function:\n"); | 63 PrintF(out, " -function:\n"); |
64 GetConstantFunction()->Print(out); | 64 GetConstantFunction()->Print(out); |
65 PrintF(out, "\n"); | 65 PrintF(out, "\n"); |
66 break; | 66 break; |
(...skipping 29 matching lines...) Expand all Loading... |
96 PrintF(out, " @ "); | 96 PrintF(out, " @ "); |
97 GetValue()->ShortPrint(out); | 97 GetValue()->ShortPrint(out); |
98 PrintF(out, " %d\n", GetDetails().index()); | 98 PrintF(out, " %d\n", GetDetails().index()); |
99 } | 99 } |
100 | 100 |
101 | 101 |
102 #endif | 102 #endif |
103 | 103 |
104 | 104 |
105 } } // namespace v8::internal | 105 } } // namespace v8::internal |
OLD | NEW |