1
2
3
4
5
6
7
8
9
10
11
|
#ifndef EMPATHY_LLR_HELPERS_H
#define EMPATHY_LLR_HELPERS_H
namespace empathy::llr
{
class Instruction;
bool IsValueConstantOrExecutable( const ir::Value& val );
bool CanValueBeEagerlyEvaluated( const ir::Value& val );
template< typename T, typename I >
|
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GOOSE_LLR_HELPERS_H
#define GOOSE_LLR_HELPERS_H
namespace goose::llr
{
class Instruction;
bool IsValueConstantOrExecutable( const ir::Value& val );
bool CanValueBeEagerlyEvaluated( const ir::Value& val );
template< typename T, typename I >
|