Go to the source code of this file.
◆ DECLARE_CASE
#define DECLARE_CASE |
( |
| x, |
|
|
| ... ) |
◆ DEF_BINARY_LOWERING
#define DEF_BINARY_LOWERING |
( |
| Name | ) |
|
Value: void JSGenericLowering::LowerJS##Name(Node* node) { \
ReplaceBinaryOpWithBuiltinCall(node, Builtin::k##Name, \
Builtin::k##Name##_WithFeedback); \
}
Definition at line 182 of file js-generic-lowering.cc.
◆ DEF_UNARY_LOWERING
#define DEF_UNARY_LOWERING |
( |
| Name | ) |
|
Value: void JSGenericLowering::LowerJS##Name(Node* node) { \
ReplaceUnaryOpWithBuiltinCall(node, Builtin::k##Name, \
Builtin::k##Name##_WithFeedback); \
}
Definition at line 149 of file js-generic-lowering.cc.
◆ REPLACE_STUB_CALL
#define REPLACE_STUB_CALL |
( |
| Name | ) |
|
Value: void JSGenericLowering::LowerJS##Name(Node* node) { \
ReplaceWithBuiltinCall(node, Builtin::k##Name); \
}
Definition at line 59 of file js-generic-lowering.cc.