ast-decoder.cc | 93 // Macros that build nodes only if there is a graph and the current SSA 96 #define BUILD(func, ...) (build() ? builder_->func(__VA_ARGS__) : nullptr) 97 #define BUILD0(func) (build() ? builder_->func() : nullptr) 182 inline bool build() { return builder_ && ssa_env_->go(); } function in class:v8::internal::wasm::LR_WasmDecoder 433 BUILD(Return, 0, builder_->Buffer(0)); 449 Leaf(kAstI32, BUILD(Int32Constant, value)); 455 Leaf(kAstI32, BUILD(Int32Constant, value)); 461 Leaf(kAstI64, BUILD(Int64Constant, value)); 467 Leaf(kAstF32, BUILD(Float32Constant, value)) [all...] |