OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 case CEntry: | 125 case CEntry: |
126 return "CEntry"; | 126 return "CEntry"; |
127 case JSEntry: | 127 case JSEntry: |
128 return "JSEntry"; | 128 return "JSEntry"; |
129 case GetProperty: | 129 case GetProperty: |
130 return "GetProperty"; | 130 return "GetProperty"; |
131 case SetProperty: | 131 case SetProperty: |
132 return "SetProperty"; | 132 return "SetProperty"; |
133 case InvokeBuiltin: | 133 case InvokeBuiltin: |
134 return "InvokeBuiltin"; | 134 return "InvokeBuiltin"; |
135 case JSExit: | |
136 return "JSExit"; | |
137 case ConvertToDouble: | 135 case ConvertToDouble: |
138 return "ConvertToDouble"; | 136 return "ConvertToDouble"; |
139 case WriteInt32ToHeapNumber: | 137 case WriteInt32ToHeapNumber: |
140 return "WriteInt32ToHeapNumber"; | 138 return "WriteInt32ToHeapNumber"; |
141 default: | 139 default: |
142 UNREACHABLE(); | 140 UNREACHABLE(); |
143 return NULL; | 141 return NULL; |
144 } | 142 } |
145 } | 143 } |
146 | 144 |
147 | 145 |
148 } } // namespace v8::internal | 146 } } // namespace v8::internal |
OLD | NEW |