PandA-2024.02
|
#include "discrepancy_analysis_c_writer.hpp"
#include "Discrepancy.hpp"
#include "Parameter.hpp"
#include "SimulationInformation.hpp"
#include "allocation_information.hpp"
#include "application_manager.hpp"
#include "behavioral_helper.hpp"
#include "c_backend_information.hpp"
#include "call_graph.hpp"
#include "call_graph_manager.hpp"
#include "fu_binding.hpp"
#include "hls.hpp"
#include "hls_manager.hpp"
#include "indented_output_stream.hpp"
#include "language_writer.hpp"
#include "math_function.hpp"
#include "memory.hpp"
#include "state_transition_graph.hpp"
#include "state_transition_graph_manager.hpp"
#include "string_manipulation.hpp"
#include "structural_objects.hpp"
#include "technology_node.hpp"
#include "time_info.hpp"
#include "tree_helper.hpp"
#include "tree_manager.hpp"
#include "tree_reindex.hpp"
#include <filesystem>
Go to the source code of this file.
Macros | |
#define | INT_TYPE 0 |
#define | UINT_TYPE 1 |
#define | FLOAT_TYPE 2 |
#define | DOUBLE_TYPE 3 |
#define | F_SIGN(out, in) (((out & 3) << 2) | (in & 3)) |
#define | F_TYPE_IN(f_sign) (f_sign & 3) |
#define | F_TYPE_OUT(f_sign) ((f_sign >> 2) & 3) |
Functions | |
static bool | is_large_integer (const tree_nodeConstRef &_tn) |
#define DOUBLE_TYPE 3 |
Definition at line 71 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
#define F_SIGN | ( | out, | |
in | |||
) | (((out & 3) << 2) | (in & 3)) |
Definition at line 72 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
#define F_TYPE_IN | ( | f_sign | ) | (f_sign & 3) |
Definition at line 73 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
#define F_TYPE_OUT | ( | f_sign | ) | ((f_sign >> 2) & 3) |
Definition at line 74 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
#define FLOAT_TYPE 2 |
Definition at line 70 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
#define INT_TYPE 0 |
Definition at line 68 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
#define UINT_TYPE 1 |
Definition at line 69 of file discrepancy_analysis_c_writer.cpp.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().
|
inlinestatic |
Definition at line 83 of file discrepancy_analysis_c_writer.cpp.
References GET_CONST_NODE, STR, THROW_ASSERT, and test_panda::type.
Referenced by DiscrepancyAnalysisCWriter::writePostInstructionInfo().