LLVM
15.0.0git
lib
Target
PowerPC
PPCCCState.cpp
Go to the documentation of this file.
1
//===---- PPCCCState.cpp - CCState with PowerPC specific extensions ---------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "
PPCCCState.h
"
10
#include "
PPCSubtarget.h
"
11
#include "
llvm/IR/Module.h
"
12
using namespace
llvm
;
13
14
// Identify lowered values that originated from ppcf128 arguments and record
15
// this.
16
void
PPCCCState::PreAnalyzeCallOperands
(
17
const
SmallVectorImpl<ISD::OutputArg>
&Outs) {
18
for
(
const
auto
&
I
: Outs) {
19
if
(
I
.ArgVT ==
llvm::MVT::ppcf128
)
20
OriginalArgWasPPCF128.push_back(
true
);
21
else
22
OriginalArgWasPPCF128.push_back(
false
);
23
}
24
}
25
26
void
PPCCCState::PreAnalyzeFormalArguments
(
27
const
SmallVectorImpl<ISD::InputArg>
&
Ins
) {
28
for
(
const
auto
&
I
:
Ins
) {
29
if
(
I
.ArgVT ==
llvm::MVT::ppcf128
) {
30
OriginalArgWasPPCF128.push_back(
true
);
31
}
else
{
32
OriginalArgWasPPCF128.push_back(
false
);
33
}
34
}
35
}
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:17
llvm::MVT::ppcf128
@ ppcf128
Definition:
MachineValueType.h:61
llvm::PPCCCState::PreAnalyzeCallOperands
void PreAnalyzeCallOperands(const SmallVectorImpl< ISD::OutputArg > &Outs)
Definition:
PPCCCState.cpp:16
Module.h
PPCSubtarget.h
PPCCCState.h
I
#define I(x, y, z)
Definition:
MD5.cpp:58
llvm::PPCCCState::PreAnalyzeFormalArguments
void PreAnalyzeFormalArguments(const SmallVectorImpl< ISD::InputArg > &Ins)
Definition:
PPCCCState.cpp:26
llvm::MipsISD::Ins
@ Ins
Definition:
MipsISelLowering.h:160
llvm::SmallVectorImpl
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition:
APFloat.h:42
Generated on Sat Jun 25 2022 07:51:34 for LLVM by
1.8.17