Lines Matching defs:constructor
10 #include "src/builtins/builtins-constructor-gen.h"
1347 // Get the super constructor from the object referenced by the accumulator.
1565 // Call the constructor in |constructor| with the first argument in register
1571 TNode<Object> constructor = LoadRegisterAtOperandIndex(0);
1577 constructor, context, new_target, args, slot_id, maybe_feedback_vector);
1582 // Construct <constructor> <first_arg> <arg_count>
1584 // Call operator construct with |constructor| and the first argument in
1590 TNode<Object> constructor = LoadRegisterAtOperandIndex(0);
1595 TNode<Object> result = Construct(constructor, context, new_target, args,
2758 // ThrowIfNotSuperConstructor <constructor>
2760 // Throws an exception if the value in |constructor| is not in fact a
2761 // constructor.
2763 TNode<HeapObject> constructor = CAST(LoadRegisterAtOperandIndex(0));
2767 TNode<Map> constructor_map = LoadMap(constructor);
2775 CallRuntime(Runtime::kThrowNotSuperConstructor, context, constructor,