OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DFAInput
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/CodeGen/
DFAPacketizer.h
46
// DFA_MAX_RESTERMS * DFA_MAX_RESOURCES must fit within sizeof
DFAInput
.
66
typedef uint64_t
DFAInput
;
73
typedef std::pair<unsigned,
DFAInput
> UnsignPair;
95
// getInsnInput - Return the
DFAInput
for an instruction class.
96
DFAInput
getInsnInput(unsigned InsnClass);
98
// getInsnInput - Return the
DFAInput
for an instruction class input vector.
99
static
DFAInput
getInsnInput(const std::vector<unsigned> &InsnClass);
/external/llvm/lib/CodeGen/
DFAPacketizer.cpp
38
DFAInput
addDFAFuncUnits(
DFAInput
Inp, unsigned FuncUnits) {
42
/// Return the
DFAInput
for an instruction class input vector.
45
DFAInput
getDFAInsnInput(const std::vector<unsigned> &InsnClass) {
46
DFAInput
InsnInput = 0;
62
assert((DFA_MAX_RESTERMS * DFA_MAX_RESOURCES) <= (8 * sizeof(
DFAInput
))
63
&& "(DFA_MAX_RESTERMS * DFA_MAX_RESOURCES) too big for
DFAInput
");
93
// getInsnInput - Return the
DFAInput
for an instruction class.
95
DFAInput
DFAPacketizer::getInsnInput(unsigned InsnClass) {
97
DFAInput
InsnInput = 0
[
all
...]
/external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp
36
// DFA_MAX_RESTERMS * DFA_MAX_RESOURCES must fit within sizeof
DFAInput
.
56
typedef uint64_t
DFAInput
;
61
DFAInput
addDFAFuncUnits(
DFAInput
Inp, unsigned FuncUnits) {
65
/// Return the
DFAInput
for an instruction class input vector.
68
DFAInput
getDFAInsnInput(const std::vector<unsigned> &InsnClass) {
69
DFAInput
InsnInput = 0;
280
DFAInput
InsnInput = getDFAInsnInput(InsnClass);
[
all
...]
Completed in 127 milliseconds