| OLD | NEW |
| 1 // Copyright 2010 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 Code::kNoExtraICState) \ | 90 Code::kNoExtraICState) \ |
| 91 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ | 91 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ |
| 92 Code::kNoExtraICState) \ | 92 Code::kNoExtraICState) \ |
| 93 V(NotifyOSR, BUILTIN, UNINITIALIZED, \ | 93 V(NotifyOSR, BUILTIN, UNINITIALIZED, \ |
| 94 Code::kNoExtraICState) \ | 94 Code::kNoExtraICState) \ |
| 95 \ | 95 \ |
| 96 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ | 96 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ |
| 97 Code::kNoExtraICState) \ | 97 Code::kNoExtraICState) \ |
| 98 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ | 98 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ |
| 99 Code::kNoExtraICState) \ | 99 Code::kNoExtraICState) \ |
| 100 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ |
| 101 Code::kNoExtraICState) \ |
| 102 V(KeyedLoadIC_Slow, BUILTIN, UNINITIALIZED, \ |
| 103 Code::kNoExtraICState) \ |
| 100 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \ | 104 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \ |
| 101 Code::kNoExtraICState) \ | 105 Code::kNoExtraICState) \ |
| 102 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \ | 106 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \ |
| 103 Code::kNoExtraICState) \ | 107 Code::kNoExtraICState) \ |
| 108 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ |
| 109 Code::kNoExtraICState) \ |
| 110 V(KeyedStoreIC_Slow_Strict, BUILTIN, UNINITIALIZED, \ |
| 111 Code::kNoExtraICState) \ |
| 112 V(KeyedStoreIC_Slow_NonStrict, BUILTIN, UNINITIALIZED, \ |
| 113 Code::kNoExtraICState) \ |
| 104 \ | 114 \ |
| 105 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ | 115 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ |
| 106 Code::kNoExtraICState) \ | 116 Code::kNoExtraICState) \ |
| 107 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ | 117 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ |
| 108 Code::kNoExtraICState) \ | 118 Code::kNoExtraICState) \ |
| 109 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ | 119 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ |
| 110 Code::kNoExtraICState) \ | 120 Code::kNoExtraICState) \ |
| 111 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \ | 121 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \ |
| 112 Code::kNoExtraICState) \ | 122 Code::kNoExtraICState) \ |
| 113 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC, \ | 123 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC, \ |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 369 |
| 360 friend class BuiltinFunctionTable; | 370 friend class BuiltinFunctionTable; |
| 361 friend class Isolate; | 371 friend class Isolate; |
| 362 | 372 |
| 363 DISALLOW_COPY_AND_ASSIGN(Builtins); | 373 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 364 }; | 374 }; |
| 365 | 375 |
| 366 } } // namespace v8::internal | 376 } } // namespace v8::internal |
| 367 | 377 |
| 368 #endif // V8_BUILTINS_H_ | 378 #endif // V8_BUILTINS_H_ |
| OLD | NEW |