| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 static Object* ComputeCallNormal(int argc, String* name, JSObject* receiver); | 141 static Object* ComputeCallNormal(int argc, String* name, JSObject* receiver); |
| 142 | 142 |
| 143 static Object* ComputeCallInterceptor(int argc, | 143 static Object* ComputeCallInterceptor(int argc, |
| 144 String* name, | 144 String* name, |
| 145 Object* object, | 145 Object* object, |
| 146 JSObject* holder); | 146 JSObject* holder); |
| 147 | 147 |
| 148 // --- | 148 // --- |
| 149 | 149 |
| 150 static Object* ComputeCallInitialize(int argc); | 150 static Object* ComputeCallInitialize(int argc); |
| 151 static Object* ComputeCallInitializeInLoop(int argc); |
| 151 static Object* ComputeCallPreMonomorphic(int argc); | 152 static Object* ComputeCallPreMonomorphic(int argc); |
| 152 static Object* ComputeCallNormal(int argc); | 153 static Object* ComputeCallNormal(int argc); |
| 153 static Object* ComputeCallMegamorphic(int argc); | 154 static Object* ComputeCallMegamorphic(int argc); |
| 154 static Object* ComputeCallMiss(int argc); | 155 static Object* ComputeCallMiss(int argc); |
| 155 | 156 |
| 156 // Finds the Code object stored in the Heap::non_monomorphic_cache(). | 157 // Finds the Code object stored in the Heap::non_monomorphic_cache(). |
| 157 static Code* FindCallInitialize(int argc); | 158 static Code* FindCallInitialize(int argc); |
| 158 | 159 |
| 159 static Object* ComputeCallDebugBreak(int argc); | 160 static Object* ComputeCallDebugBreak(int argc); |
| 160 static Object* ComputeCallDebugPrepareStepIn(int argc); | 161 static Object* ComputeCallDebugPrepareStepIn(int argc); |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 | 456 |
| 456 const ParameterCount& arguments() { return arguments_; } | 457 const ParameterCount& arguments() { return arguments_; } |
| 457 | 458 |
| 458 Object* GetCode(PropertyType type); | 459 Object* GetCode(PropertyType type); |
| 459 }; | 460 }; |
| 460 | 461 |
| 461 | 462 |
| 462 } } // namespace v8::internal | 463 } } // namespace v8::internal |
| 463 | 464 |
| 464 #endif // V8_STUB_CACHE_H_ | 465 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |