Home
last modified time | relevance | path

Searched refs:CPV (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1700 void NVPTXAsmPrinter::printScalarConstant(const Constant *CPV, raw_ostream &O) { in printScalarConstant() argument
1701 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) { in printScalarConstant()
1705 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV)) { in printScalarConstant()
1709 if (isa<ConstantPointerNull>(CPV)) { in printScalarConstant()
1713 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) { in printScalarConstant()
1718 if (EmitGeneric && !isa<Function>(CPV) && !IsNonGenericPointer) { in printScalarConstant()
1727 if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) { in printScalarConstant()
1744 lowerConstant(CPV)->print(O, MAI); in printScalarConstant()
1775 void NVPTXAsmPrinter::bufferLEByte(const Constant *CPV, int Bytes, in bufferLEByte() argument
1779 if (isa<UndefValue>(CPV) || CPV->isNullValue()) { in bufferLEByte()
[all …]
H A DNVPTXAsmPrinter.h262 void printScalarConstant(const Constant *CPV, raw_ostream &O);
264 void bufferLEByte(const Constant *CPV, int Bytes, AggBuffer *aggBuffer);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h84 auto *CPV = in getExistingMachineCPValueImpl() local
86 if (Derived *APC = dyn_cast<Derived>(CPV)) in getExistingMachineCPValueImpl()
H A DARMConstantPoolValue.cpp196 auto *CPV = static_cast<ARMConstantPoolValue*>( in getExistingMachineCPValue() local
198 auto *Constant = cast<ARMConstantPoolConstant>(CPV); in getExistingMachineCPValue()
H A DARMExpandPseudoInsts.cpp2330 MachineConstantPoolValue *CPV = in ExpandMI() local
2337 .addConstantPoolIndex(MCP->getConstantPoolIndex(CPV, Align(4))); in ExpandMI()
2408 MachineConstantPoolValue *CPV; in ExpandMI() local
2416 CPV = ARMConstantPoolConstant::Create( in ExpandMI()
2420 CPV = ARMConstantPoolConstant::Create(GV, ARMCP::no_modifier); in ExpandMI()
2424 .addConstantPoolIndex(MCP->getConstantPoolIndex(CPV, Align(4))); in ExpandMI()
H A DARMFastISel.cpp567 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id, in ARMMaterializeGV() local
570 unsigned Idx = MCP.getConstantPoolIndex(CPV, Alignment); in ARMMaterializeGV()
2953 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create( in ARMLowerPICELF() local
2960 unsigned Idx = MF->getConstantPool()->getConstantPoolIndex(CPV, ConstAlign); in ARMLowerPICELF()
H A DARMISelLowering.cpp2497 ARMConstantPoolValue *CPV = in LowerCall() local
2501 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, Align(4)); in LowerCall()
2511 ARMConstantPoolValue *CPV = in LowerCall() local
2515 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, Align(4)); in LowerCall()
2564 ARMConstantPoolValue *CPV = in LowerCall() local
2567 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, Align(4)); in LowerCall()
3292 ARMConstantPoolValue *CPV = in LowerBlockAddress() local
3295 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, Align(4)); in LowerBlockAddress()
3421 auto *CPV = ARMConstantPoolConstant::Create(GA->getGlobal(), ARMCP::SECREL); in LowerGlobalTLSAddressWindows() local
3425 DAG.getTargetConstantPool(CPV, PtrVT, Align(4))), in LowerGlobalTLSAddressWindows()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineFunction.cpp1152 for (MachineConstantPoolValue *CPV : MachineCPVsSharingEntries) { in ~MachineConstantPool()
1153 if (Deleted.count(CPV) == 0) in ~MachineConstantPool()
1154 delete CPV; in ~MachineConstantPool()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/
H A DISO_3166_de64 CV CPV Kap Verde
/netbsd-src/share/misc/
H A Dcountry60 Cape Verde CV CPV 132 CV
H A Dairport1470 CPV:Campina Grande, PB, Brazil
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp3160 SystemZConstantPoolValue *CPV = in lowerGlobalTLSAddress() local
3163 Offset = DAG.getConstantPool(CPV, PtrVT, Align(8)); in lowerGlobalTLSAddress()
3175 SystemZConstantPoolValue *CPV = in lowerGlobalTLSAddress() local
3178 Offset = DAG.getConstantPool(CPV, PtrVT, Align(8)); in lowerGlobalTLSAddress()
3194 CPV = SystemZConstantPoolValue::Create(GV, SystemZCP::DTPOFF); in lowerGlobalTLSAddress()
3196 SDValue DTPOffset = DAG.getConstantPool(CPV, PtrVT, Align(8)); in lowerGlobalTLSAddress()
3218 SystemZConstantPoolValue *CPV = in lowerGlobalTLSAddress() local
3221 Offset = DAG.getConstantPool(CPV, PtrVT, Align(8)); in lowerGlobalTLSAddress()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp2103 } else if (Constant *CPV = dyn_cast<Constant>(V)) { in getOperandValue() local
2104 return getConstantValue(CPV); in getOperandValue()