OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getOperationAction
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp
260
switch (TLI.
getOperationAction
(Node->getOpcode(), QueryType)) {
593
if (TLI.
getOperationAction
(ISD::AND, VT) == TargetLowering::Expand ||
594
TLI.
getOperationAction
(ISD::XOR, VT) == TargetLowering::Expand ||
595
TLI.
getOperationAction
(ISD::OR, VT) == TargetLowering::Expand ||
596
TLI.
getOperationAction
(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand)
636
if (TLI.
getOperationAction
(ISD::SRA, VT) == TargetLowering::Expand ||
637
TLI.
getOperationAction
(ISD::SHL, VT) == TargetLowering::Expand)
670
if (TLI.
getOperationAction
(ISD::AND, VT) == TargetLowering::Expand ||
671
TLI.
getOperationAction
(ISD::XOR, VT) == TargetLowering::Expand ||
672
TLI.
getOperationAction
(ISD::OR, VT) == TargetLowering::Expand |
[
all
...]
LegalizeDAG.cpp
721
switch (TLI.
getOperationAction
(ISD::STORE, VT)) {
[
all
...]
LegalizeTypes.cpp
[
all
...]
LegalizeIntegerTypes.cpp
[
all
...]
DAGCombiner.cpp
[
all
...]
/external/llvm/include/llvm/Target/
TargetLowering.h
407
LegalizeAction
getOperationAction
(unsigned Op, EVT VT) const {
421
(
getOperationAction
(Op, VT) == Legal ||
422
getOperationAction
(Op, VT) == Custom);
430
(
getOperationAction
(Op, VT) == Legal ||
431
getOperationAction
(Op, VT) == Promote);
438
return (!isTypeLegal(VT) ||
getOperationAction
(Op, VT) == Expand);
444
getOperationAction
(Op, VT) == Legal;
543
assert(
getOperationAction
(Op, VT) == Promote &&
561
getOperationAction
(Op, NVT) == Promote);
[
all
...]
Completed in 209 milliseconds