Sha256: 75bce325939d95dfea32a9995958467b4da761cd98682eb714b9f2d1a98bfc49
Contents?: true
Size: 1.47 KB
Versions: 5
Compression:
Stored size: 1.47 KB
Contents
// Copyright 2017 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_SRC_IC_BINARY_OP_ASSEMBLER_H_ #define V8_SRC_IC_BINARY_OP_ASSEMBLER_H_ #include "src/code-stub-assembler.h" namespace v8 { namespace internal { namespace compiler { class CodeAssemblerState; } class BinaryOpAssembler : public CodeStubAssembler { public: typedef compiler::Node Node; explicit BinaryOpAssembler(compiler::CodeAssemblerState* state) : CodeStubAssembler(state) {} Node* Generate_AddWithFeedback(Node* context, Node* lhs, Node* rhs, Node* slot_id, Node* feedback_vector); Node* Generate_SubtractWithFeedback(Node* context, Node* lhs, Node* rhs, Node* slot_id, Node* feedback_vector); Node* Generate_MultiplyWithFeedback(Node* context, Node* lhs, Node* rhs, Node* slot_id, Node* feedback_vector); Node* Generate_DivideWithFeedback(Node* context, Node* dividend, Node* divisor, Node* slot_id, Node* feedback_vector); Node* Generate_ModulusWithFeedback(Node* context, Node* dividend, Node* divisor, Node* slot_id, Node* feedback_vector); }; } // namespace internal } // namespace v8 #endif // V8_SRC_IC_BINARY_OP_ASSEMBLER_H_
Version data entries
5 entries across 5 versions & 1 rubygems