Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index 587dc2cce13d4366199e124f43e12b96abeb19eb..f94f90cad755e53f2c28dd6b4491608e3ba8b9d5 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -4746,32 +4746,6 @@ void MacroAssembler::GetMapConstructor(Register result, Register map, |
bind(&done); |
} |
- |
-void MacroAssembler::TryGetFunctionPrototype(Register function, Register result, |
- Register scratch, Label* miss) { |
- // Get the prototype or initial map from the function. |
- lw(result, |
- FieldMemOperand(function, JSFunction::kPrototypeOrInitialMapOffset)); |
- |
- // If the prototype or initial map is the hole, don't return it and |
- // simply miss the cache instead. This will allow us to allocate a |
- // prototype object on-demand in the runtime system. |
- LoadRoot(t8, Heap::kTheHoleValueRootIndex); |
- Branch(miss, eq, result, Operand(t8)); |
- |
- // If the function does not have an initial map, we're done. |
- Label done; |
- GetObjectType(result, scratch, scratch); |
- Branch(&done, ne, scratch, Operand(MAP_TYPE)); |
- |
- // Get the prototype from the initial map. |
- lw(result, FieldMemOperand(result, Map::kPrototypeOffset)); |
- |
- // All done. |
- bind(&done); |
-} |
- |
- |
void MacroAssembler::GetObjectType(Register object, |
Register map, |
Register type_reg) { |