Searched refs:ACPV (Results 1 – 4 of 4) sorted by relevance
75 ARMConstantPoolValue::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue() argument76 if (ACPV->Kind == Kind && in hasSameValue()77 ACPV->PCAdjust == PCAdjust && in hasSameValue()78 ACPV->Modifier == Modifier) { in hasSameValue()79 if (ACPV->LabelId == LabelId) in hasSameValue()169 bool ARMConstantPoolConstant::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue() argument170 const ARMConstantPoolConstant *ACPC = dyn_cast<ARMConstantPoolConstant>(ACPV); in hasSameValue()171 return ACPC && ACPC->CVal == CVal && ARMConstantPoolValue::hasSameValue(ACPV); in hasSameValue()208 bool ARMConstantPoolSymbol::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue() argument209 const ARMConstantPoolSymbol *ACPS = dyn_cast<ARMConstantPoolSymbol>(ACPV); in hasSameValue()[all …]
115 virtual bool hasSameValue(ARMConstantPoolValue *ACPV);172 bool hasSameValue(ARMConstantPoolValue *ACPV) override;208 bool hasSameValue(ARMConstantPoolValue *ACPV) override;212 static bool classof(const ARMConstantPoolValue *ACPV) { in classof() argument213 return ACPV->isExtSymbol(); in classof()244 bool hasSameValue(ARMConstantPoolValue *ACPV) override;248 static bool classof(const ARMConstantPoolValue *ACPV) { in classof() argument249 return ACPV->isMachineBasicBlock(); in classof()
876 ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV); in EmitMachineConstantPoolValue() local879 if (ACPV->isLSDA()) { in EmitMachineConstantPoolValue()881 } else if (ACPV->isBlockAddress()) { in EmitMachineConstantPoolValue()883 cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(); in EmitMachineConstantPoolValue()885 } else if (ACPV->isGlobalValue()) { in EmitMachineConstantPoolValue()886 const GlobalValue *GV = cast<ARMConstantPoolConstant>(ACPV)->getGV(); in EmitMachineConstantPoolValue()892 } else if (ACPV->isMachineBasicBlock()) { in EmitMachineConstantPoolValue()893 const MachineBasicBlock *MBB = cast<ARMConstantPoolMBB>(ACPV)->getMBB(); in EmitMachineConstantPoolValue()896 assert(ACPV->isExtSymbol() && "unrecognized constant pool value"); in EmitMachineConstantPoolValue()897 const char *Sym = cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(); in EmitMachineConstantPoolValue()[all …]
1352 ARMConstantPoolValue *ACPV = in duplicateCPV() local1363 if (ACPV->isGlobalValue()) in duplicateCPV()1365 Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId, in duplicateCPV()1367 else if (ACPV->isExtSymbol()) in duplicateCPV()1370 cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4); in duplicateCPV()1371 else if (ACPV->isBlockAddress()) in duplicateCPV()1373 Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId, in duplicateCPV()1375 else if (ACPV->isLSDA()) in duplicateCPV()1378 else if (ACPV->isMachineBasicBlock()) in duplicateCPV()1381 cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4); in duplicateCPV()