Home
last modified time | relevance | path

Searched refs:ACPV (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/ARM/
DARMConstantPoolValue.cpp75 ARMConstantPoolValue::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue() argument
76 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() argument
170 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() argument
209 const ARMConstantPoolSymbol *ACPS = dyn_cast<ARMConstantPoolSymbol>(ACPV); in hasSameValue()
[all …]
DARMConstantPoolValue.h115 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() argument
213 return ACPV->isExtSymbol(); in classof()
244 bool hasSameValue(ARMConstantPoolValue *ACPV) override;
248 static bool classof(const ARMConstantPoolValue *ACPV) { in classof() argument
249 return ACPV->isMachineBasicBlock(); in classof()
DARMAsmPrinter.cpp876 ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV); in EmitMachineConstantPoolValue() local
879 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 …]
DARMBaseInstrInfo.cpp1352 ARMConstantPoolValue *ACPV = in duplicateCPV() local
1363 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()