Home
last modified time | relevance | path

Searched refs:Constants (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp30 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValue() local
31 for (unsigned I = 0, E = Constants.size(); I != E; ++I) { in getExistingMachineCPValue()
32 if (Constants[I].isMachineConstantPoolEntry() && in getExistingMachineCPValue()
33 Constants[I].getAlign() >= Alignment) { in getExistingMachineCPValue()
35 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal); in getExistingMachineCPValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.h89 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl() local
90 for (unsigned i = 0, e = Constants.size(); i != e; ++i) { in getExistingMachineCPValueImpl()
91 if (Constants[i].isMachineConstantPoolEntry() && in getExistingMachineCPValueImpl()
92 Constants[i].getAlign() >= Alignment) { in getExistingMachineCPValueImpl()
94 static_cast<CSKYConstantPoolValue *>(Constants[i].Val.MachineCPVal); in getExistingMachineCPValueImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaConstantPoolValue.h65 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl() local
66 for (unsigned i = 0, e = Constants.size(); i != e; ++i) { in getExistingMachineCPValueImpl()
67 if (Constants[i].isMachineConstantPoolEntry() && in getExistingMachineCPValueImpl()
68 (Constants[i].getAlign() >= Alignment)) { in getExistingMachineCPValueImpl()
70 Constants[i].Val.MachineCPVal); in getExistingMachineCPValueImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h119 std::vector<MachineConstantPoolEntry> Constants; ///< The pool of constants. variable
143 bool isEmpty() const { return Constants.empty(); } in isEmpty()
146 return Constants; in getConstants()
H A DMIRYamlMapping.h752 std::vector<MachineConstantPoolValue> Constants; /// Constant pool.
801 YamlIO.mapOptional("constants", MF.Constants,
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h80 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl() local
81 for (unsigned i = 0, e = Constants.size(); i != e; ++i) { in getExistingMachineCPValueImpl()
82 if (Constants[i].isMachineConstantPoolEntry() && in getExistingMachineCPValueImpl()
83 Constants[i].getAlign() >= Alignment) { in getExistingMachineCPValueImpl()
85 static_cast<ARMConstantPoolValue*>(Constants[i].Val.MachineCPVal); in getExistingMachineCPValueImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp1414 for (const MachineConstantPoolEntry &C : Constants) in ~MachineConstantPool()
1486 for (unsigned i = 0, e = Constants.size(); i != e; ++i) in getConstantPoolIndex()
1487 if (!Constants[i].isMachineConstantPoolEntry() && in getConstantPoolIndex()
1488 CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, DL)) { in getConstantPoolIndex()
1489 if (Constants[i].getAlign() < Alignment) in getConstantPoolIndex()
1490 Constants[i].Alignment = Alignment; in getConstantPoolIndex()
1494 Constants.push_back(MachineConstantPoolEntry(C, Alignment)); in getConstantPoolIndex()
1495 return Constants.size()-1; in getConstantPoolIndex()
1511 Constants.push_back(MachineConstantPoolEntry(V, Alignment)); in getConstantPoolIndex()
1512 return Constants.size()-1; in getConstantPoolIndex()
[all …]
H A DMIRPrinter.cpp595 MF.Constants.push_back(YamlConstant); in convert()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp76 if (Buf.Constants.empty()) in layoutBuffer()
80 for (auto &Const : Buf.Constants) { in layoutBuffer()
100 for (auto &[GV, Offset] : Buf.Constants) { in replaceBuffer()
143 CB.Constants.emplace_back(std::make_pair(GV, LowerBound)); in addConstant()
H A DCGHLSLRuntime.h100 std::vector<std::pair<llvm::GlobalVariable *, unsigned>> Constants; member
/freebsd/contrib/arm-optimized-routines/math/tools/
H A Derfcf.sollya18 // Constants
H A Derff.sollya18 // Constants
H A Derf.sollya18 // Constants
H A Derfc.sollya18 // Constants
/freebsd/stand/i386/btx/lib/
H A Dbtxsys.S26 # Constants.
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h40 llvm::dwarf::Constants Children;
499 template <> struct ScalarEnumerationTraits<dwarf::Constants> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
500 static void enumeration(IO &io, dwarf::Constants &value) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def168 // C99 6.4.4.1: Integer Constants
169 // C99 6.4.4.2: Floating Constants
175 // C99 6.4.4: Character Constants
179 // C++17 Character Constants
182 // C++11 Character Constants
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructions.td396 // PatLeafs for Texture Constants
730 class Constants {
742 def CONST : Constants;
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp993 uint64_t Constants = Stats.ConstantMembers; in collectStatsForObjectFile() local
994 VarParamWithLoc += Stats.TotalVarWithLoc + Constants; in collectStatsForObjectFile()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h132 const EnumDecl::enumerator_range Constants);
1205 SymbolReference Container, const EnumDecl::enumerator_range Constants) { in recordEnumConstants() argument
1206 for (const auto *Constant : Constants) { in recordEnumConstants()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp520 if (!YamlMF.Constants.empty()) { in initializeMachineFunction()
988 for (const auto &YamlConstant : YamlMF.Constants) { in initializeConstantPool()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1914 SmallSetVector<Constant *, 4> Constants; in replaceCfiUses() local
1935 Constants.insert(C); in replaceCfiUses()
1944 for (auto *C : Constants) in replaceCfiUses()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.h835 enum Constants { enum
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DOpcodes.td236 // Constants
/freebsd/contrib/tcsh/
H A Dtcsh.man2html27 ### Constants

12