LLVM 22.0.0git
SystemZConstantPoolValue.cpp
Go to the documentation of this file.
1//===-- SystemZConstantPoolValue.cpp - SystemZ constant-pool value --------===//
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
10#include "llvm/ADT/FoldingSet.h"
11#include "llvm/IR/GlobalValue.h"
13
14using namespace llvm;
15
19
25
27 Align Alignment) {
28 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants();
29 for (unsigned I = 0, E = Constants.size(); I != E; ++I) {
30 if (Constants[I].isMachineConstantPoolEntry() &&
31 Constants[I].getAlign() >= Alignment) {
32 auto *ZCPV =
33 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal);
34 if (ZCPV->GV == GV && ZCPV->Modifier == Modifier)
35 return I;
36 }
37 }
38 return -1;
39}
40
42 ID.AddPointer(GV);
43 ID.AddInteger(Modifier);
44}
45
47 O << GV << "@" << int(Modifier);
48}
This file defines a hash set that can be used to remove duplication of nodes in a graph.
#define I(x, y, z)
Definition MD5.cpp:58
FoldingSetNodeID - This class is used to gather all the unique data bits of a node.
Definition FoldingSet.h:330
The MachineConstantPool class keeps track of constants referenced by a function which must be spilled...
A SystemZ-specific constant pool value.
void print(raw_ostream &O) const override
print - Implement operator<<
static SystemZConstantPoolValue * Create(const GlobalValue *GV, SystemZCP::SystemZCPModifier Modifier)
int getExistingMachineCPValue(MachineConstantPool *CP, Align Alignment) override
SystemZConstantPoolValue(const GlobalValue *GV, SystemZCP::SystemZCPModifier Modifier)
void addSelectionDAGCSEId(FoldingSetNodeID &ID) override
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
MaybeAlign getAlign(const CallInst &I, unsigned Index)
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39