OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isTypeLegal
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h
71
///
isTypeLegal
- Return true if this type is legal on this target.
72
bool
isTypeLegal
(EVT VT) const {
[
all
...]
DAGCombiner.cpp
295
///
isTypeLegal
- This method returns true if we are running before type
297
bool
isTypeLegal
(const EVT &VT) {
299
return TLI.
isTypeLegal
(VT);
[
all
...]
/external/llvm/include/llvm/Target/
TargetLowering.h
206
///
isTypeLegal
- Return true if the target has native support for the
209
bool
isTypeLegal
(EVT VT) const {
360
return (VT == MVT::Other ||
isTypeLegal
(VT)) &&
368
return (VT == MVT::Other ||
isTypeLegal
(VT)) &&
404
return
isTypeLegal
(ValVT) && MemVT.isSimple() &&
492
} while (!
isTypeLegal
(NVT) ||
[
all
...]
/external/llvm/lib/Target/ARM/
ARMFastISel.cpp
174
bool
isTypeLegal
(Type *Ty, MVT &VT);
676
bool ARMFastISel::
isTypeLegal
(Type *Ty, MVT &VT) {
685
return TLI.
isTypeLegal
(VT);
689
if (
isTypeLegal
(Ty, VT)) return true;
[
all
...]
/external/llvm/lib/Target/X86/
X86FastISel.cpp
137
bool
isTypeLegal
(Type *Ty, MVT &VT, bool AllowI1 = false);
147
bool X86FastISel::
isTypeLegal
(Type *Ty, MVT &VT, bool AllowI1) {
167
return (AllowI1 && VT == MVT::i1) || TLI.
isTypeLegal
(VT);
662
if (!
isTypeLegal
(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
784
if (!
isTypeLegal
(I->getType(), VT, /*AllowI1=*/true))
867
if (!
isTypeLegal
(I->getOperand(0)->getType(), VT))
947
if (!TLI.
isTypeLegal
(DstVT))
[
all
...]
Completed in 107 milliseconds