Index: src/x64/macro-assembler-x64.h |
diff --git a/src/x64/macro-assembler-x64.h b/src/x64/macro-assembler-x64.h |
index d78e417afccbd9e5459903788aec4e6346fe0c4b..769b91b4862c03d46200ab7acbefd5cc88c6c357 100644 |
--- a/src/x64/macro-assembler-x64.h |
+++ b/src/x64/macro-assembler-x64.h |
@@ -375,17 +375,15 @@ class MacroAssembler: public Assembler { |
InvokeFlag flag, |
const CallWrapper& call_wrapper); |
- // Invoke specified builtin JavaScript function. Adds an entry to |
- // the unresolved list if the name does not resolve. |
- void InvokeBuiltin(Builtins::JavaScript id, |
- InvokeFlag flag, |
+ // Invoke specified builtin JavaScript function. |
+ void InvokeBuiltin(int native_context_index, InvokeFlag flag, |
const CallWrapper& call_wrapper = NullCallWrapper()); |
// Store the function for the given builtin in the target register. |
- void GetBuiltinFunction(Register target, Builtins::JavaScript id); |
+ void GetBuiltinFunction(Register target, int native_context_index); |
// Store the code object for the given builtin in the target register. |
- void GetBuiltinEntry(Register target, Builtins::JavaScript id); |
+ void GetBuiltinEntry(Register target, int native_context_index); |
// --------------------------------------------------------------------------- |