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/property.h" | 5 #include "src/property.h" |
6 | 6 |
7 #include "src/handles-inl.h" | 7 #include "src/handles-inl.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 29 matching lines...) Expand all Loading... |
40 PrintF(out, " -entry = %d", GetDictionaryEntry()); | 40 PrintF(out, " -entry = %d", GetDictionaryEntry()); |
41 break; | 41 break; |
42 case CONSTANT: | 42 case CONSTANT: |
43 PrintF(out, " -type = constant\n"); | 43 PrintF(out, " -type = constant\n"); |
44 PrintF(out, " -value:\n"); | 44 PrintF(out, " -value:\n"); |
45 GetConstant()->Print(out); | 45 GetConstant()->Print(out); |
46 PrintF(out, "\n"); | 46 PrintF(out, "\n"); |
47 break; | 47 break; |
48 case FIELD: | 48 case FIELD: |
49 PrintF(out, " -type = field\n"); | 49 PrintF(out, " -type = field\n"); |
50 PrintF(out, " -index = %d\n", GetFieldIndex().field_index()); | 50 if (GetFieldIndex().is_inobject()) { |
| 51 PrintF(out, " -index (inobject)= %d\n", |
| 52 GetFieldIndex().property_index()); |
| 53 } else { |
| 54 PrintF(out, " -index (out-of-object)= %d\n", |
| 55 GetFieldIndex().property_index()); |
| 56 } |
51 PrintF(out, " -field type:\n"); | 57 PrintF(out, " -field type:\n"); |
52 GetFieldType()->TypePrint(out); | 58 GetFieldType()->TypePrint(out); |
53 break; | 59 break; |
54 case CALLBACKS: | 60 case CALLBACKS: |
55 PrintF(out, " -type = call backs\n"); | 61 PrintF(out, " -type = call backs\n"); |
56 PrintF(out, " -callback object:\n"); | 62 PrintF(out, " -callback object:\n"); |
57 GetCallbackObject()->Print(out); | 63 GetCallbackObject()->Print(out); |
58 break; | 64 break; |
59 case HANDLER: | 65 case HANDLER: |
60 PrintF(out, " -type = lookup proxy\n"); | 66 PrintF(out, " -type = lookup proxy\n"); |
(...skipping 10 matching lines...) Expand all Loading... |
71 | 77 |
72 void Descriptor::Print(FILE* out) { | 78 void Descriptor::Print(FILE* out) { |
73 PrintF(out, "Descriptor "); | 79 PrintF(out, "Descriptor "); |
74 GetKey()->ShortPrint(out); | 80 GetKey()->ShortPrint(out); |
75 PrintF(out, " @ "); | 81 PrintF(out, " @ "); |
76 GetValue()->ShortPrint(out); | 82 GetValue()->ShortPrint(out); |
77 } | 83 } |
78 #endif | 84 #endif |
79 | 85 |
80 } } // namespace v8::internal | 86 } } // namespace v8::internal |
OLD | NEW |