Home
last modified time | relevance | path

Searched refs:added_function (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/development/vndk/tools/header-checker/src/repr/protobuf/
H A Dir_dumper.cpp256 abi_dump::FunctionDecl added_function; in ConvertFunctionIR() local
257 added_function.set_access(AccessIRToProtobuf(functionp->GetAccess())); in ConvertFunctionIR()
258 added_function.set_linker_set_key(functionp->GetLinkerSetKey()); in ConvertFunctionIR()
259 added_function.set_source_file(functionp->GetSourceFile()); in ConvertFunctionIR()
260 added_function.set_function_name(functionp->GetName()); in ConvertFunctionIR()
261 if (!AddFunctionParametersAndSetReturnType(&added_function, functionp) || in ConvertFunctionIR()
263 AddTemplateInformation(added_function.mutable_template_info(), functionp) in ConvertFunctionIR()
268 AddAvailabilityAttrs(&added_function, functionp); in ConvertFunctionIR()
269 return added_function; in ConvertFunctionIR()
469 abi_dump::FunctionDecl *added_function = tu_ptr_->add_functions(); in AddFunctionIR() local
[all …]
H A Dir_diff_dumper.cpp475 abi_dump::FunctionDecl *added_function = nullptr; in AddLoneFunctionDiffIR() local
478 added_function = diff_tu_->add_functions_removed(); in AddLoneFunctionDiffIR()
481 added_function = diff_tu_->add_functions_added(); in AddLoneFunctionDiffIR()
487 *added_function = ConvertFunctionIR(function_ir); in AddLoneFunctionDiffIR()
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dtransformation_add_function.cpp326 opt::Function* added_function = nullptr; in TryToMakeFunctionLivesafe() local
329 added_function = &function; in TryToMakeFunctionLivesafe()
333 assert(added_function && "The added function should have been found."); in TryToMakeFunctionLivesafe()
335 if (!TryToAddLoopLimiters(ir_context, added_function)) { in TryToMakeFunctionLivesafe()
344 for (auto& block : *added_function) { in TryToMakeFunctionLivesafe()
349 if (!TryToTurnKillOrUnreachableIntoReturn(ir_context, added_function, in TryToMakeFunctionLivesafe()
391 opt::IRContext* ir_context, opt::Function* added_function) const { in TryToAddLoopLimiters()
395 for (auto& block : *added_function) { in TryToAddLoopLimiters()
486 added_function->begin()->begin()->InsertBefore(MakeUnique<opt::Instruction>( in TryToAddLoopLimiters()
519 if (!ir_context->GetDominatorAnalysis(added_function) in TryToAddLoopLimiters()
[all …]
Dtransformation_add_function.h109 opt::Function* added_function) const;
114 opt::IRContext* ir_context, opt::Function* added_function,
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/fuzz/
H A Dtransformation_add_function.cpp326 opt::Function* added_function = nullptr; in TryToMakeFunctionLivesafe() local
329 added_function = &function; in TryToMakeFunctionLivesafe()
333 assert(added_function && "The added function should have been found."); in TryToMakeFunctionLivesafe()
335 if (!TryToAddLoopLimiters(ir_context, added_function)) { in TryToMakeFunctionLivesafe()
344 for (auto& block : *added_function) { in TryToMakeFunctionLivesafe()
349 if (!TryToTurnKillOrUnreachableIntoReturn(ir_context, added_function, in TryToMakeFunctionLivesafe()
391 opt::IRContext* ir_context, opt::Function* added_function) const { in TryToAddLoopLimiters()
395 for (auto& block : *added_function) { in TryToAddLoopLimiters()
486 added_function->begin()->begin()->InsertBefore(MakeUnique<opt::Instruction>( in TryToAddLoopLimiters()
519 if (!ir_context->GetDominatorAnalysis(added_function) in TryToAddLoopLimiters()
[all …]
H A Dtransformation_add_function.h109 opt::Function* added_function) const;
114 opt::IRContext* ir_context, opt::Function* added_function,
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dtransformation_add_function.cpp326 opt::Function* added_function = nullptr; in TryToMakeFunctionLivesafe() local
329 added_function = &function; in TryToMakeFunctionLivesafe()
333 assert(added_function && "The added function should have been found."); in TryToMakeFunctionLivesafe()
335 if (!TryToAddLoopLimiters(ir_context, added_function)) { in TryToMakeFunctionLivesafe()
344 for (auto& block : *added_function) { in TryToMakeFunctionLivesafe()
349 if (!TryToTurnKillOrUnreachableIntoReturn(ir_context, added_function, in TryToMakeFunctionLivesafe()
391 opt::IRContext* ir_context, opt::Function* added_function) const { in TryToAddLoopLimiters()
395 for (auto& block : *added_function) { in TryToAddLoopLimiters()
486 added_function->begin()->begin()->InsertBefore(MakeUnique<opt::Instruction>( in TryToAddLoopLimiters()
519 if (!ir_context->GetDominatorAnalysis(added_function) in TryToAddLoopLimiters()
[all …]
H A Dtransformation_add_function.h109 opt::Function* added_function) const;
114 opt::IRContext* ir_context, opt::Function* added_function,
/aosp_15_r20/development/vndk/tools/header-checker/src/dumper/
H A Dast_processing.cpp88 auto added_function = std::make_unique<repr::FunctionIR>(); in MutateFunctionWithLinkageName() local
89 *added_function = *function; in MutateFunctionWithLinkageName()
90 added_function->SetLinkerSetKey(linkage_name); in MutateFunctionWithLinkageName()
91 return module->AddLinkableMessage(*added_function); in MutateFunctionWithLinkageName()