Searched defs:CP (Results 1 - 25 of 29) 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/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp40 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) { argument
42 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
H A DSystemZISelLowering.cpp1243 SDValue SystemZTargetLowering::lowerConstantPool(ConstantPoolSDNode *CP, argument
1245 SDLoc DL(CP);
1249 if (CP->isMachineConstantPoolEntry())
1250 Result = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
1251 CP->getAlignment());
1253 Result = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
1254 CP->getAlignment(), CP->getOffset());
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp140 const CoalescerPair &CP,
165 !CP.isCoalescable(Indexes.getInstructionFromIndex(Def)))
139 overlaps(const LiveInterval &Other, const CoalescerPair &CP, const SlotIndexes &Indexes) const argument
H A DRegisterCoalescer.cpp142 bool joinIntervals(CoalescerPair &CP);
145 bool joinVirtRegs(CoalescerPair &CP);
148 bool joinReservedPhysReg(CoalescerPair &CP);
154 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
165 bool removeCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
169 bool reMaterializeTrivialDef(CoalescerPair &CP, MachineInstr *CopyMI,
173 bool canJoinPhys(const CoalescerPair &CP);
183 bool eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP);
426 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP, argument
428 assert(!CP
569 removeCopyByCommutingDef(const CoalescerPair &CP, MachineInstr *CopyMI) argument
734 reMaterializeTrivialDef(CoalescerPair &CP, MachineInstr *CopyMI, bool &IsDefCopy) argument
901 eliminateUndefCopy(MachineInstr *CopyMI, const CoalescerPair &CP) argument
994 canJoinPhys(const CoalescerPair &CP) argument
1171 joinReservedPhysReg(CoalescerPair &CP) argument
1288 const CoalescerPair &CP; member in class:__anon22128::JoinVals
1965 joinVirtRegs(CoalescerPair &CP) argument
2026 joinIntervals(CoalescerPair &CP) argument
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp115 // Take a CP and assign addresses and sizes to everything. Returns false if the
117 static bool layoutCOFF(COFFParser &CP) { argument
123 SectionTableStart = sizeof(COFF::header) + CP.Obj.Header.SizeOfOptionalHeader;
124 SectionTableSize = sizeof(COFF::section) * CP.Obj.Sections.size();
129 for (std::vector<COFFYAML::Section>::iterator i = CP.Obj.Sections.begin(),
130 e = CP.Obj.Sections.end();
153 for (std::vector<COFFYAML::Symbol>::iterator i = CP.Obj.Symbols.begin(),
154 e = CP.Obj.Symbols.end();
166 CP.Obj.Header.NumberOfSections = CP
197 writeCOFF(COFFParser &CP, raw_ostream &OS) argument
[all...]
/external/chromium_org/native_client_sdk/src/tools/
H A Dcommon.mk181 CP := $(OSHELPERS) cp macro
186 CP := @$(OSHELPERS) cp macro
/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();
217 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, argument
220 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
272 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, argument
275 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp48 const Constant *CP; member in struct:__anon22337::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/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp486 SDValue CP = CurDAG->getTargetConstantPool(C, CN->getValueType(0)); local
488 ReplaceUses(SDValue(Node, 0), CP); local
/external/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp473 if (const ComplexPattern *CP =
475 const std::vector<Record*> &OpNodes = CP->getRootNodes();
508 const ComplexPattern &CP = local
513 AddMatcher(new CheckComplexPatMatcher(CP, RecNodeEntry,
517 NextRecordedOperandNo += CP.getNumOperands();
518 if (CP.hasProperty(SDNPHasChain)) {
548 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
559 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
H A DCodeGenDAGPatterns.cpp1457 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1458 return CP->hasProperty(Property);
2522 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec); local
2523 if (CP.hasProperty(SDNPMayStore)) mayStore = true;
2524 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
2525 if (CP.hasProperty(SDNPSideEffect)) hasSideEffects = true;
2945 if (const ComplexPattern *CP =
2947 if (CP->getRootNodes().empty())
/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/IR/
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/chromium_org/third_party/JSON/JSON-2.59/
H A DMakefile223 CP = cp macro
/external/clang/lib/Lex/
H A DLexer.cpp1105 static char DecodeTrigraphChar(const char *CP, Lexer *L) { argument
1106 char Res = GetTrigraphCharForLetter(*CP);
1111 L->Diag(CP-2, diag::trigraph_ignored);
1116 L->Diag(CP-2, diag::trigraph_converted) << StringRef(&Res, 1);
2797 case 26: // DOS & CP/M EOF: "^Z".
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp124 getFirstStackedCallToHeaderFile(PathDiagnosticCallPiece *CP, argument
126 SourceLocation CallLoc = CP->callEnter.asLocation();
135 // Check if CP represents a path through a function outside of the main file.
136 if (!SMgr.isFromMainFile(CP->callEnterWithin.asLocation()))
137 return CP;
139 const PathPieces &Path = CP->path;
164 if (PathDiagnosticCallPiece *CP = dyn_cast<PathDiagnosticCallPiece>(LastP)) {
165 CP = getFirstStackedCallToHeaderFile(CP, SMgr);
166 if (CP) {
[all...]
H A DBugReporter.cpp508 PathDiagnosticCallPiece *CP = I->first; local
515 if (!CP->hasCallStackMessage())
516 CP->setCallStackMessage(stackMsg);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1003 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); local
1004 if (CP.empty()) return;
1009 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
1010 const MachineConstantPoolEntry &CPE = CP[i];
1059 MachineConstantPoolEntry CPE = CP[CPI];
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp953 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
955 if (CP->isMachineConstantPoolEntry())
956 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), ValTy,
957 CP->getAlignment());
959 Res = DAG.getTargetConstantPool(CP->getConstVal(), ValTy,
960 CP->getAlignment());
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp281 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); local
283 SDLoc dl(CP);
286 if (CP->isMachineConstantPoolEntry()) {
287 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
288 CP->getAlignment());
290 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
291 CP->getAlignment());
/external/opencv/cv/include/
H A Dcvtypes.h275 int CP; /* number of control vector dimensions */ member in struct:CvKalman
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp64 const Constant *CP; member in struct:__anon22482::X86ISelAddressMode
68 unsigned Align; // CP alignment.
73 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
78 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
121 dbgs() << " CP ";
122 if (CP)
123 CP->dump();
242 else if (AM.CP)
243 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
659 } else if (ConstantPoolSDNode *CP
[all...]

Completed in 784 milliseconds

12