HomeSort by relevance Sort by last modified time
    Searched defs:getTypeAction (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 63 /// enum from TargetLowering. This can be queried with "getTypeAction(VT)".
66 /// getTypeAction - Return how we should legalize values of this type.
67 TargetLowering::LegalizeTypeAction getTypeAction(EVT VT) const {
68 return TLI.getTypeAction(*DAG.getContext(), VT);
73 return TLI.getTypeAction(*DAG.getContext(), VT) == TargetLowering::TypeLegal;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 246 LegalizeTypeAction getTypeAction(MVT VT) const {
260 /// getTypeAction - Return how we should legalize values of this type, either
264 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const {
267 LegalizeTypeAction getTypeAction(MVT VT) const {
268 return ValueTypeActions.getTypeAction(VT);
288 switch (getTypeAction(Context, VT)) {
    [all...]

Completed in 243 milliseconds