| 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 Register scratch2, | 362 Register scratch2, |
| 363 Label* miss_label); | 363 Label* miss_label); |
| 364 | 364 |
| 365 static void GenerateLoadFunctionPrototype(MacroAssembler* masm, | 365 static void GenerateLoadFunctionPrototype(MacroAssembler* masm, |
| 366 Register receiver, | 366 Register receiver, |
| 367 Register scratch1, | 367 Register scratch1, |
| 368 Register scratch2, | 368 Register scratch2, |
| 369 Label* miss_label); | 369 Label* miss_label); |
| 370 | 370 |
| 371 static void GenerateStoreField(MacroAssembler* masm, | 371 static void GenerateStoreField(MacroAssembler* masm, |
| 372 Builtins::Name storage_extend, | |
| 373 JSObject* object, | 372 JSObject* object, |
| 374 int index, | 373 int index, |
| 375 Map* transition, | 374 Map* transition, |
| 376 Register receiver_reg, | 375 Register receiver_reg, |
| 377 Register name_reg, | 376 Register name_reg, |
| 378 Register scratch, | 377 Register scratch, |
| 379 Label* miss_label); | 378 Label* miss_label); |
| 380 | 379 |
| 381 static void GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind); | 380 static void GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind); |
| 382 | 381 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 Object* CompileConstructStub(SharedFunctionInfo* shared); | 573 Object* CompileConstructStub(SharedFunctionInfo* shared); |
| 575 | 574 |
| 576 private: | 575 private: |
| 577 Object* GetCode(); | 576 Object* GetCode(); |
| 578 }; | 577 }; |
| 579 | 578 |
| 580 | 579 |
| 581 } } // namespace v8::internal | 580 } } // namespace v8::internal |
| 582 | 581 |
| 583 #endif // V8_STUB_CACHE_H_ | 582 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |