Home
last modified time | relevance | path

Searched refs:declareVariablesAtTop (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Target/Cpp/
H A DTranslateRegistration.cpp30 static llvm::cl::opt<bool> declareVariablesAtTop( in registerToCppTranslation() local
40 /*declareVariablesAtTop=*/declareVariablesAtTop); in registerToCppTranslation()
H A DTranslateToCpp.cpp72 explicit CppEmitter(raw_ostream &os, bool declareVariablesAtTop);
158 bool shouldDeclareVariablesAtTop() { return declareVariablesAtTop; }; in shouldDeclareVariablesAtTop()
170 bool declareVariablesAtTop; member
684 CppEmitter::CppEmitter(raw_ostream &os, bool declareVariablesAtTop) in CppEmitter() argument
685 : os(os), declareVariablesAtTop(declareVariablesAtTop) { in CppEmitter()
1041 bool declareVariablesAtTop) { in translateToCpp() argument
1042 CppEmitter emitter(os, declareVariablesAtTop); in translateToCpp()
/llvm-project-15.0.7/mlir/include/mlir/Target/Cpp/
H A DCppEmitter.h30 bool declareVariablesAtTop = false);