| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 static void GenerateLoadLongStringLength(MacroAssembler* masm, | 349 static void GenerateLoadLongStringLength(MacroAssembler* masm, |
| 350 Register receiver, | 350 Register receiver, |
| 351 Register scratch, | 351 Register scratch, |
| 352 Label* miss_label); | 352 Label* miss_label); |
| 353 static void GenerateLoadFunctionPrototype(MacroAssembler* masm, | 353 static void GenerateLoadFunctionPrototype(MacroAssembler* masm, |
| 354 Register receiver, | 354 Register receiver, |
| 355 Register scratch1, | 355 Register scratch1, |
| 356 Register scratch2, | 356 Register scratch2, |
| 357 Label* miss_label); | 357 Label* miss_label); |
| 358 static void GenerateStoreField(MacroAssembler* masm, | 358 static void GenerateStoreField(MacroAssembler* masm, |
| 359 Builtins::Name storage_extend, |
| 359 JSObject* object, | 360 JSObject* object, |
| 360 int index, | 361 int index, |
| 361 Map* transition, | 362 Map* transition, |
| 362 Register receiver_reg, | 363 Register receiver_reg, |
| 363 Register name_reg, | 364 Register name_reg, |
| 364 Register scratch, | 365 Register scratch, |
| 365 Label* miss_label); | 366 Label* miss_label); |
| 366 static void GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind); | 367 static void GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind); |
| 367 | 368 |
| 368 protected: | 369 protected: |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 | 468 |
| 468 const ParameterCount& arguments() { return arguments_; } | 469 const ParameterCount& arguments() { return arguments_; } |
| 469 | 470 |
| 470 Object* GetCode(PropertyType type); | 471 Object* GetCode(PropertyType type); |
| 471 }; | 472 }; |
| 472 | 473 |
| 473 | 474 |
| 474 } } // namespace v8::internal | 475 } } // namespace v8::internal |
| 475 | 476 |
| 476 #endif // V8_STUB_CACHE_H_ | 477 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |