Home
last modified time | relevance | path

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

/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Target/Cpp/
H A DTranslateRegistration.cpp27 static llvm::cl::opt<bool> declareVariablesAtTop( in registerToCppTranslation() local
37 /*declareVariablesAtTop=*/declareVariablesAtTop); in registerToCppTranslation()
H A DTranslateToCpp.cpp69 explicit CppEmitter(raw_ostream &os, bool declareVariablesAtTop);
155 bool shouldDeclareVariablesAtTop() { return declareVariablesAtTop; }; in shouldDeclareVariablesAtTop()
167 bool declareVariablesAtTop; member
645 CppEmitter::CppEmitter(raw_ostream &os, bool declareVariablesAtTop) in CppEmitter() argument
646 : os(os), declareVariablesAtTop(declareVariablesAtTop) { in CppEmitter()
988 bool declareVariablesAtTop) { in translateToCpp() argument
989 CppEmitter emitter(os, declareVariablesAtTop); in translateToCpp()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/include/mlir/Target/Cpp/
H A DCppEmitter.h30 bool declareVariablesAtTop = false);