Searched refs:Constants (Results 1 - 17 of 17) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp30 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); local
31 for (unsigned I = 0, E = Constants.size(); I != E; ++I) {
32 if (Constants[I].isMachineConstantPoolEntry() &&
33 Constants[I].getAlign() >= Alignment) {
35 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal);
H A DSystemZISelLowering.cpp5043 SmallVector<SDValue, SystemZ::VectorBytes> Constants(NumElements, SDValue());
5052 Constants[I] = Elem;
5057 // Constants with undefs to get a full vector constant and use that
5063 if (!Constants[I].getNode())
5064 Constants[I] = DAG.getUNDEF(Elems[I].getValueType());
5065 Result = DAG.getBuildVector(VT, DL, Constants);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h119 std::vector<MachineConstantPoolEntry> Constants; ///< The pool of constants. member in class:llvm::MachineConstantPool
143 bool isEmpty() const { return Constants.empty(); }
146 return Constants;
H A DMIRYamlMapping.h609 std::vector<MachineConstantPoolValue> Constants; /// Constant pool. member in struct:llvm::yaml::MachineFunction
640 YamlIO.mapOptional("constants", MF.Constants,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h80 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); local
81 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
82 if (Constants[i].isMachineConstantPoolEntry() &&
83 Constants[i].getAlign() >= Alignment) {
85 static_cast<ARMConstantPoolValue*>(Constants[i].Val.MachineCPVal);
139 /// ARMConstantPoolConstant - ARM-specific constant pool values for Constants,
/freebsd-13-stable/stand/i386/btx/lib/
H A Dbtxsys.S28 # Constants.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp1118 // A constant may be a member of both Constants and MachineCPVsSharingEntries,
1121 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
1122 if (Constants[i].isMachineConstantPoolEntry()) {
1123 Deleted.insert(Constants[i].Val.MachineCPVal);
1124 delete Constants[i].Val.MachineCPVal;
1186 for (unsigned i = 0, e = Constants.size(); i != e; ++i)
1187 if (!Constants[i].isMachineConstantPoolEntry() &&
1188 CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, DL)) {
1189 if (Constants[i].getAlign() < Alignment)
1190 Constants[
[all...]
H A DMIRPrinter.cpp40 #include "llvm/IR/Constants.h"
523 MF.Constants.push_back(YamlConstant);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h57 llvm::dwarf::Constants Children;
364 template <> struct ScalarEnumerationTraits<dwarf::Constants> {
365 static void enumeration(IO &io, dwarf::Constants &value) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp567 unsigned Constants = Stats.ConstantMembers; local
568 VarParamWithLoc += Stats.TotalVarWithLoc + Constants;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.h1 //===-- llvm/BinaryFormat/Dwarf.h ---Dwarf Constants-------------*- C++ -*-===//
70 /// Constants that define the DWARF format as 32 or 64 bit.
335 enum Constants { enum
359 /// Constants for the DW_APPLE_PROPERTY_attributes attribute.
367 /// Constants for unit types in DWARF v5.
408 // Constants for the DWARF v5 Accelerator Table Proposal
433 // Constants for the GNU pubnames/pubtypes extensions supporting gdb index.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp428 if (!YamlMF.Constants.empty()) {
839 for (const auto &YamlConstant : YamlMF.Constants) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp33 #include "llvm/IR/Constants.h"
1732 SmallSetVector<Constant *, 4> Constants; local
1746 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
1752 Constants.insert(C);
1761 for (auto *C : Constants)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp75 #include "llvm/IR/Constants.h"
1497 SmallVector<SDValue, 4> Constants; local
1503 // Add each leaf value from the operand to the Constants list
1506 Constants.push_back(SDValue(Val, i));
1509 return DAG.getMergeValues(Constants, getCurSDLoc());
1517 // Add each leaf value from the operand to the Constants list
1537 SmallVector<SDValue, 4> Constants(NumElts);
1541 Constants[i] = DAG.getUNDEF(EltVT);
1543 Constants[i] = DAG.getConstantFP(0, getCurSDLoc(), EltVT);
1545 Constants[
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1773 ArrayRef<MachineConstantPoolEntry> Constants =
1775 const MachineConstantPoolEntry &ConstantEntry = Constants[Op.getIndex()];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp71 #include "llvm/IR/Constants.h"
2578 SmallPtrSet<ConstantInt*, 32> Constants; local
2582 Assert(Constants.insert(Case.getCaseValue()).second,
/freebsd-13-stable/lib/clang/libllvm/
H A DMakefile646 SRCS_MIN+= IR/Constants.cpp

Completed in 215 milliseconds