Searched defs:CP (Results 1 - 25 of 31) sorted by relevance

12

/external/qemu-pc-bios/
H A DMakefile24 CP := cp macro
33 $(CP) bochs/bios/BIOS-bochs-latest $@
37 $(CP) vgabios/VGABIOS-lgpl-latest.cirrus.bin $@
/external/compiler-rt/make/
H A Dconfig.mk23 CP := cp macro
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp147 const CoalescerPair &CP,
172 !CP.isCoalescable(Indexes.getInstructionFromIndex(Def)))
146 overlaps(const LiveInterval &Other, const CoalescerPair &CP, const SlotIndexes &Indexes) const argument
H A DRegisterCoalescer.cpp124 bool joinIntervals(CoalescerPair &CP);
127 bool joinReservedPhysReg(CoalescerPair &CP);
133 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
144 bool removeCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
152 bool canJoinPhys(CoalescerPair &CP);
162 bool eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP);
396 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP, argument
398 assert(!CP.isPartial() && "This doesn't work for partial copies.");
399 assert(!CP.isPhys() && "This doesn't work for physreg copies.");
402 LIS->getInterval(CP
538 removeCopyByCommutingDef(const CoalescerPair &CP, MachineInstr *CopyMI) argument
802 eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP) argument
889 canJoinPhys(CoalescerPair &CP) argument
1066 joinReservedPhysReg(CoalescerPair &CP) argument
1167 RegistersDefinedFromSameValue(LiveIntervals &li, const TargetRegisterInfo &tri, CoalescerPair &CP, VNInfo *VNI, VNInfo *OtherVNI, SmallVector<MachineInstr*, 8> &DupCopies) argument
1227 joinIntervals(CoalescerPair &CP) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp63 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, argument
164 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, argument
167 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
229 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, argument
232 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
285 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, argument
288 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp48 const Constant *CP; member in struct:__anon8928::MSP430ISelAddressMode
52 unsigned Align; // CP alignment.
55 : BaseType(RegBase), Disp(0), GV(0), CP(0), BlockAddr(0),
60 return GV != 0 || CP != 0 || ES != 0 || JT != -1;
75 } else if (CP) {
76 errs() << " CP ";
77 CP->dump();
151 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
152 AM.CP = CP
[all...]
/external/mdnsresponder/mDNSPosix/
H A DMakefile61 CP = cp macro
298 $(CP) $< $@
301 $(CP) $< $@
309 $(CP) $< $@
314 $(CP) $< $@
343 $(CP) $< $@
350 $(CP) $< $@
354 $(CP) $< $@
377 $(CP) $< $@
393 $(CP)
[all...]
/external/llvm/lib/VMCore/
H A DConstantsContext.h558 typename MapTy::iterator FindExistingElement(ConstantClass *CP) { argument
560 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
562 IMI->second->second == CP &&
568 Map.find(MapKey(static_cast<TypeClass*>(CP->getType()),
569 ConstantKeyData<ConstantClass>::getValType(CP)));
570 if (I == Map.end() || I->second != CP) {
573 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
613 void remove(ConstantClass *CP) { argument
614 typename MapTy::iterator I = FindExistingElement(CP);
616 assert(I->second == CP
666 getHashValue(const ConstantClass *CP) argument
715 findExistingElement(ConstantClass *CP) argument
755 insert(ConstantClass *CP) argument
760 remove(ConstantClass *CP) argument
[all...]
/external/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp463 if (const ComplexPattern *CP =
465 const std::vector<Record*> &OpNodes = CP->getRootNodes();
498 const ComplexPattern &CP = local
503 AddMatcher(new CheckComplexPatMatcher(CP, RecNodeEntry,
507 NextRecordedOperandNo += CP.getNumOperands();
508 if (CP.hasProperty(SDNPHasChain)) {
538 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
549 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
H A DCodeGenDAGPatterns.cpp1344 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1345 return CP->hasProperty(Property);
2410 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec); local
2411 if (CP.hasProperty(SDNPMayStore)) mayStore = true;
2412 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
2413 if (CP.hasProperty(SDNPSideEffect)) hasSideEffects = true;
2812 if (const ComplexPattern *CP =
2814 if (CP->getRootNodes().empty())
/external/llvm/utils/yaml2obj/
H A Dyaml2obj.cpp730 // Take a CP and assign addresses and sizes to everything. Returns false if the
732 static bool layoutCOFF(COFFParser &CP) { argument
738 SectionTableStart = sizeof(COFF::header) + CP.Header.SizeOfOptionalHeader;
739 SectionTableSize = sizeof(COFF::section) * CP.Sections.size();
744 for (std::vector<COFFParser::Section>::iterator i = CP.Sections.begin(),
745 e = CP.Sections.end();
762 for (std::vector<COFFParser::Symbol>::iterator i = CP.Symbols.begin(),
763 e = CP.Symbols.end();
774 CP.Header.NumberOfSections = CP
804 writeCOFF(COFFParser &CP, raw_ostream &OS) argument
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-shaper.cpp74 CombiningProhibitedBreak // CP in table
79 #define CP CombiningProhibitedBreak macro
85 /* OP */ { PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, PB, CP, PB, PB, PB, PB, PB, PB },
115 #undef CP macro
/external/llvm/lib/Target/CellSPU/
H A DSPUISelDAGToDAG.cpp206 const Constant *CP = ConstantVector::get(CV); local
207 SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy());
H A DSPUISelLowering.cpp1013 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
1014 const Constant *C = CP->getConstVal();
1015 SDValue CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment());
/external/llvm/lib/Target/MBlaze/
H A DMBlazeISelLowering.cpp628 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment(), local
630 return DAG.getNode(MBlazeISD::Wrap, dl, MVT::i32, CP);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp912 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment()); local
913 SDValue Hi = DAG.getNode(SPISD::Hi, dl, MVT::i32, CP);
914 SDValue Lo = DAG.getNode(SPISD::Lo, dl, MVT::i32, CP);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp993 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); local
994 if (CP.empty()) return;
999 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
1000 const MachineConstantPoolEntry &CPE = CP[i];
1049 MachineConstantPoolEntry CPE = CP[CPI];
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp944 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
946 if (CP->isMachineConstantPoolEntry())
947 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), ValTy,
948 CP->getAlignment());
950 Res = DAG.getTargetConstantPool(CP->getConstVal(), ValTy,
951 CP->getAlignment());
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp67 const Constant *CP; member in struct:__anon9020::X86ISelAddressMode
71 unsigned Align; // CP alignment.
76 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
81 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
124 dbgs() << " CP ";
125 if (CP)
126 CP->dump();
246 else if (AM.CP)
247 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
642 } else if (ConstantPoolSDNode *CP
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp309 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
311 DebugLoc dl = CP->getDebugLoc();
314 if (CP->isMachineConstantPoolEntry()) {
315 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
316 CP->getAlignment());
318 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
319 CP->getAlignment());
/external/opencv/cv/include/
H A Dcvtypes.h275 int CP; /* number of control vector dimensions */ member in struct:CvKalman
/external/clang/lib/Lex/
H A DLexer.cpp1212 static char DecodeTrigraphChar(const char *CP, Lexer *L) { argument
1213 char Res = GetTrigraphCharForLetter(*CP);
1218 L->Diag(CP-2, diag::trigraph_ignored);
1223 L->Diag(CP-2, diag::trigraph_converted) << StringRef(&Res, 1);
2617 case 26: // DOS & CP/M EOF: "^Z".
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1303 ObjCCategoryDecl::prop_iterator CP, CE; local
1305 for (CP = CatDecl->prop_begin(), CE = CatDecl->prop_end(); CP!=CE; ++CP)
1306 if (CP->getIdentifier() == Pr->getIdentifier())
1308 if (CP != CE)
1310 DiagnosePropertyMismatch(*CP, Pr, PDecl->getIdentifier());
1317 ObjCInterfaceDecl::prop_iterator CP, CE; local
1319 for (CP = IDecl->prop_begin(), CE = IDecl->prop_end(); CP !
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp404 PathDiagnosticCallPiece *CP = I->first; local
411 if (!CP->hasCallStackMessage())
412 CP->setCallStackMessage(stackMsg);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1768 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
1784 SDValue CP = DAG.getTargetConstantPool(C, ValTy, N->getAlignment(), local
1786 CP = DAG.getNode(MipsISD::Wrapper, dl, ValTy, GetGlobalReg(DAG, ValTy), CP);
1787 SDValue Load = DAG.getLoad(ValTy, dl, DAG.getEntryNode(), CP,

Completed in 2618 milliseconds

12