More consts on TargetLowering references.

llvm-svn: 62262
This commit is contained in:
Dan Gohman 2009-01-15 16:58:17 +00:00
parent 6be2939d5d
commit 91febd1330
4 changed files with 9 additions and 10 deletions

View File

@ -736,7 +736,7 @@ SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads. /// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
static static
SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG, SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
TargetLowering &TLI) { const TargetLowering &TLI) {
int SVOffset = LD->getSrcValueOffset(); int SVOffset = LD->getSrcValueOffset();
SDValue Chain = LD->getChain(); SDValue Chain = LD->getChain();
SDValue Ptr = LD->getBasePtr(); SDValue Ptr = LD->getBasePtr();

View File

@ -4982,7 +4982,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
return "<<Unknown Machine Node>>"; return "<<Unknown Machine Node>>";
} }
if (G) { if (G) {
TargetLowering &TLI = G->getTargetLoweringInfo(); const TargetLowering &TLI = G->getTargetLoweringInfo();
const char *Name = TLI.getTargetNodeName(getOpcode()); const char *Name = TLI.getTargetNodeName(getOpcode());
if (Name) return Name; if (Name) return Name;
return "<<Unknown Target Node>>"; return "<<Unknown Target Node>>";

View File

@ -380,7 +380,7 @@ static SDValue getCopyFromParts(SelectionDAG &DAG,
MVT ValueVT, MVT ValueVT,
ISD::NodeType AssertOp = ISD::DELETED_NODE) { ISD::NodeType AssertOp = ISD::DELETED_NODE) {
assert(NumParts > 0 && "No parts to assemble!"); assert(NumParts > 0 && "No parts to assemble!");
TargetLowering &TLI = DAG.getTargetLoweringInfo(); const TargetLowering &TLI = DAG.getTargetLoweringInfo();
SDValue Val = Parts[0]; SDValue Val = Parts[0];
if (NumParts > 1) { if (NumParts > 1) {
@ -525,7 +525,7 @@ static SDValue getCopyFromParts(SelectionDAG &DAG,
static void getCopyToParts(SelectionDAG &DAG, SDValue Val, static void getCopyToParts(SelectionDAG &DAG, SDValue Val,
SDValue *Parts, unsigned NumParts, MVT PartVT, SDValue *Parts, unsigned NumParts, MVT PartVT,
ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
TargetLowering &TLI = DAG.getTargetLoweringInfo(); const TargetLowering &TLI = DAG.getTargetLoweringInfo();
MVT PtrVT = TLI.getPointerTy(); MVT PtrVT = TLI.getPointerTy();
MVT ValueVT = Val.getValueType(); MVT ValueVT = Val.getValueType();
unsigned PartBits = PartVT.getSizeInBits(); unsigned PartBits = PartVT.getSizeInBits();
@ -648,8 +648,7 @@ static void getCopyToParts(SelectionDAG &DAG, SDValue Val,
// Handle a multi-element vector. // Handle a multi-element vector.
MVT IntermediateVT, RegisterVT; MVT IntermediateVT, RegisterVT;
unsigned NumIntermediates; unsigned NumIntermediates;
unsigned NumRegs = unsigned NumRegs = TLI
DAG.getTargetLoweringInfo()
.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
RegisterVT); RegisterVT);
unsigned NumElements = ValueVT.getVectorNumElements(); unsigned NumElements = ValueVT.getVectorNumElements();
@ -4819,7 +4818,7 @@ GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
/// processed uses a memory 'm' constraint. /// processed uses a memory 'm' constraint.
static bool static bool
hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
TargetLowering &TLI) { const TargetLowering &TLI) {
for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
InlineAsm::ConstraintInfo &CI = CInfos[i]; InlineAsm::ConstraintInfo &CI = CInfos[i];
for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {

View File

@ -141,7 +141,7 @@ namespace llvm {
const TargetMachine *TM, const TargetMachine *TM,
MachineBasicBlock *BB, MachineBasicBlock *BB,
bool Fast) { bool Fast) {
TargetLowering &TLI = IS->getTargetLowering(); const TargetLowering &TLI = IS->getTargetLowering();
if (Fast) if (Fast)
return createFastDAGScheduler(IS, DAG, TM, BB, Fast); return createFastDAGScheduler(IS, DAG, TM, BB, Fast);
@ -399,7 +399,7 @@ static bool IsPossiblyOverwrittenArgumentOfTailCall(SDValue Op,
/// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the /// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
/// DAG and fixes their tailcall attribute operand. /// DAG and fixes their tailcall attribute operand.
static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG, static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
TargetLowering& TLI) { const TargetLowering& TLI) {
SDNode * Ret = NULL; SDNode * Ret = NULL;
SDValue Terminator = DAG.getRoot(); SDValue Terminator = DAG.getRoot();