Index: src/arm/macro-assembler-arm.cc |
diff --git a/src/arm/macro-assembler-arm.cc b/src/arm/macro-assembler-arm.cc |
index 71645019478449a8e0c69da58bc4f4e190b82607..7e3d22fb8220b737397d4927e38a4c7857e70a08 100644 |
--- a/src/arm/macro-assembler-arm.cc |
+++ b/src/arm/macro-assembler-arm.cc |
@@ -2423,33 +2423,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. |
- ldr(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(ip, Heap::kTheHoleValueRootIndex); |
- cmp(result, ip); |
- b(eq, miss); |
- |
- // If the function does not have an initial map, we're done. |
- Label done; |
- CompareObjectType(result, scratch, scratch, MAP_TYPE); |
- b(ne, &done); |
- |
- // Get the prototype from the initial map. |
- ldr(result, FieldMemOperand(result, Map::kPrototypeOffset)); |
- |
- // All done. |
- bind(&done); |
-} |
- |
- |
void MacroAssembler::CallStub(CodeStub* stub, |
TypeFeedbackId ast_id, |
Condition cond) { |