v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
string-builder-optimizer.cc File Reference
Include dependency graph for string-builder-optimizer.cc:

Go to the source code of this file.

Namespaces

namespace  v8
 
namespace  v8::internal
 
namespace  v8::internal::compiler
 

Macros

#define CONST_CASE(op, matcher)
 

Macro Definition Documentation

◆ CONST_CASE

#define CONST_CASE ( op,
matcher )
Value:
case IrOpcode::k##op: { \
matcher m(node); \
if (m.HasResolvedValue()) { \
if (m.ResolvedValue() < 0 || \
m.ResolvedValue() >= std::numeric_limits<int32_t>::min()) { \
return std::nullopt; \
} \
return std::pair{m.ResolvedValue(), m.ResolvedValue()}; \
} else { \
return std::nullopt; \
} \
}
int m
Definition mul-fft.cc:294