1 // Copyright 2021 the V8 project authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef V8_BASELINE_PPC_BASELINE_COMPILER_PPC_INL_H_ 6 #define V8_BASELINE_PPC_BASELINE_COMPILER_PPC_INL_H_ 7 8 #include "src/base/logging.h" 9 #include "src/baseline/baseline-compiler.h" 10 11 namespace v8 { 12 namespace internal { 13 namespace baseline { 14 15 #define __ basm_. 16 Prologue()17void BaselineCompiler::Prologue() { UNIMPLEMENTED(); } 18 PrologueFillFrame()19void BaselineCompiler::PrologueFillFrame() { UNIMPLEMENTED(); } 20 VerifyFrameSize()21void BaselineCompiler::VerifyFrameSize() { UNIMPLEMENTED(); } 22 23 } // namespace baseline 24 } // namespace internal 25 } // namespace v8 26 27 #endif // V8_BASELINE_PPC_BASELINE_COMPILER_PPC_INL_H_ 28