Home
last modified time | relevance | path

Searched refs:CP (Results 1 – 25 of 123) sorted by relevance

12345

/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp162 static bool layoutOptionalHeader(COFFParser &CP) { in layoutOptionalHeader() argument
163 if (!CP.isPE()) in layoutOptionalHeader()
165 unsigned PEHeaderSize = CP.is64Bit() ? sizeof(object::pe32plus_header) in layoutOptionalHeader()
167 CP.Obj.Header.SizeOfOptionalHeader = in layoutOptionalHeader()
169 CP.Obj.OptionalHeader->Header.NumberOfRvaAndSize; in layoutOptionalHeader()
201 static bool layoutCOFF(COFFParser &CP) { in layoutCOFF() argument
204 CP.SectionTableStart = in layoutCOFF()
205 CP.getHeaderSize() + CP.Obj.Header.SizeOfOptionalHeader; in layoutCOFF()
206 if (CP.isPE()) in layoutCOFF()
207 CP.SectionTableStart += DOSStubSize + sizeof(COFF::PEMagic); in layoutCOFF()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp250 bool joinIntervals(CoalescerPair &CP);
253 bool joinVirtRegs(CoalescerPair &CP);
261 bool joinReservedPhysReg(CoalescerPair &CP);
269 LaneBitmask LaneMask, CoalescerPair &CP,
275 LaneBitmask LaneMask, const CoalescerPair &CP);
281 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
296 std::pair<bool,bool> removeCopyByCommutingDef(const CoalescerPair &CP,
300 bool removePartialRedundancy(const CoalescerPair &CP, MachineInstr &CopyMI);
304 bool reMaterializeTrivialDef(const CoalescerPair &CP, MachineInstr *CopyMI,
308 bool canJoinPhys(const CoalescerPair &CP);
[all …]
H A DRegAllocPBQP.cpp440 CoalescerPair CP(*MF.getSubtarget().getRegisterInfo()); in apply() local
447 if (!CP.setRegisters(&MI) || CP.getSrcReg() == CP.getDstReg()) in apply()
450 Register DstReg = CP.getDstReg(); in apply()
451 Register SrcReg = CP.getSrcReg(); in apply()
455 if (CP.isPhys()) { in apply()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DConstantPools.cpp80 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section); in getConstantPool() local
81 if (CP == ConstantPools.end()) in getConstantPool()
84 return &CP->second; in getConstantPool()
93 ConstantPool &CP) { in emitConstantPool() argument
94 if (!CP.empty()) { in emitConstantPool()
96 CP.emitEntries(Streamer); in emitConstantPool()
104 ConstantPool &CP = CPI.second; in emitAll() local
106 emitConstantPool(Streamer, Section, CP); in emitAll()
112 if (ConstantPool *CP = getConstantPool(Section)) in emitForCurrentSection() local
113 emitConstantPool(Streamer, Section, *CP); in emitForCurrentSection()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.cpp57 int CSKYConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
114 int CSKYConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
116 return getExistingMachineCPValueImpl<CSKYConstantPoolConstant>(CP, Alignment); in getExistingMachineCPValue()
148 int CSKYConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
151 return getExistingMachineCPValueImpl<CSKYConstantPoolSymbol>(CP, Alignment); in getExistingMachineCPValue()
182 int CSKYConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
184 return getExistingMachineCPValueImpl<CSKYConstantPoolMBB>(CP, Alignment); in getExistingMachineCPValue()
214 int CSKYConstantPoolJT::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
216 return getExistingMachineCPValueImpl<CSKYConstantPoolJT>(CP, Alignment); in getExistingMachineCPValue()
H A DCSKYConstantPoolValue.h75 int getExistingMachineCPValue(MachineConstantPool *CP,
88 int getExistingMachineCPValueImpl(MachineConstantPool *CP, Align Alignment) { in getExistingMachineCPValueImpl() argument
89 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl()
127 int getExistingMachineCPValue(MachineConstantPool *CP,
157 int getExistingMachineCPValue(MachineConstantPool *CP,
185 int getExistingMachineCPValue(MachineConstantPool *CP,
212 int getExistingMachineCPValue(MachineConstantPool *CP,
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DCOFFPlatform.cpp47 COFFHeaderMaterializationUnit(COFFPlatform &CP, in COFFHeaderMaterializationUnit() argument
49 : MaterializationUnit(createHeaderInterface(CP, HeaderStartSymbol)), in COFFHeaderMaterializationUnit()
50 CP(CP) {} in COFFHeaderMaterializationUnit()
58 CP.getExecutionSession().getExecutorProcessControl().getTargetTriple(); in materialize()
82 CP.getObjectLinkingLayer().emit(std::move(R), std::move(G)); in materialize()
154 COFFPlatform &CP; member in __anon82ec25b60111::COFFHeaderMaterializationUnit
751 bool IsBootstrapping = CP.Bootstrapping.load(); in modifyPassConfig()
754 if (InitSymbol == CP.COFFHeaderStartSymbol) { in modifyPassConfig()
796 return Sym->getName() == *CP.COFFHeaderStartSymbol; in associateJITDylibHeaderSymbol()
801 std::lock_guard<std::mutex> Lock(CP.PlatformMutex); in associateJITDylibHeaderSymbol()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/
H A DM68kISelDAGToDAG.cpp74 const Constant *CP; member
85 Scale(1), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr), in M68kISelAddressMode()
89 return GV != nullptr || CP != nullptr || ES != nullptr || in hasSymbolicDisplacement()
254 if (AM.CP) { in getSymbolicDisplacement()
255 Sym = CurDAG->getTargetConstantPool(AM.CP, MVT::i32, AM.Alignment, in getSymbolicDisplacement()
581 } else if (auto *CP = dyn_cast<ConstantPoolSDNode>(N0)) { in matchWrapper() local
582 AM.CP = CP->getConstVal(); in matchWrapper()
583 AM.Alignment = CP->getAlign(); in matchWrapper()
584 AM.SymbolFlags = CP->getTargetFlags(); in matchWrapper()
585 if (!foldOffsetIntoAddress(CP->getOffset(), AM)) { in matchWrapper()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp49 const Constant *CP = nullptr; member
58 return GV != nullptr || CP != nullptr || ES != nullptr || JT != -1; in hasSymbolicDisplacement()
74 } else if (CP) { in dump()
76 CP->dump(); in dump()
151 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) { in MatchWrapper() local
152 AM.CP = CP->getConstVal(); in MatchWrapper()
153 AM.Alignment = CP->getAlign(); in MatchWrapper()
154 AM.Disp += CP->getOffset(); in MatchWrapper()
269 else if (AM.CP) in SelectAddr()
270 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i16, AM.Alignment, AM.Disp, in SelectAddr()
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A D001_utf8.t14 : (ord "^" == 0x5F) ? "\x80\x65" # CP 1024
15 : "\x78\x64"; # assume CP 037
29 : (ord "^" == 0x5F) ? "\025\\\015\005\014\026" # CP 1024
30 : "\045\\\015\005\014\026"; # assume CP 037
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp75 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
191 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
194 getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment); in getExistingMachineCPValue()
197 CP->getConstants()[index].Val.MachineCPVal); in getExistingMachineCPValue()
239 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
241 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment); in getExistingMachineCPValue()
279 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
281 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment); in getExistingMachineCPValue()
H A DARMConstantPoolValue.h79 int getExistingMachineCPValueImpl(MachineConstantPool *CP, Align Alignment) { in getExistingMachineCPValueImpl() argument
80 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl()
114 int getExistingMachineCPValue(MachineConstantPool *CP,
187 int getExistingMachineCPValue(MachineConstantPool *CP,
223 int getExistingMachineCPValue(MachineConstantPool *CP,
259 int getExistingMachineCPValue(MachineConstantPool *CP,
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DFormattedStream.cpp30 auto ProcessUTF8CodePoint = [&Line, &Column](StringRef CP) { in UpdatePosition() argument
31 int Width = sys::unicode::columnWidthUTF8(CP); in UpdatePosition()
36 if (CP.size() > 1) in UpdatePosition()
39 switch (CP[0]) { in UpdatePosition()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstantsContext.h572 static unsigned getHashValue(const ConstantClass *CP) {
574 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage)));
647 void remove(ConstantClass *CP) {
648 typename MapTy::iterator I = Map.find(CP);
650 assert(*I == CP && "Didn't find correct element?");
655 ConstantClass *CP, Value *From,
658 LookupKey Key(CP->getType(), ValType(Operands, CP));
668 remove(CP);
670 assert(OperandNo < CP->getNumOperands() && "Invalid index");
671 assert(CP->getOperand(OperandNo) != To && "I didn't contain From!");
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/corpus/
H A Dcp1256.txt4 buniya1256 -- test document: a paragraph in Arabic as CP-1256
9 as CP-1256.
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DCOFFPlatform.h92 COFFPlatformPlugin(COFFPlatform &CP) : CP(CP) {} in COFFPlatformPlugin() argument
129 COFFPlatform &CP; variable
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp28 int SystemZConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue() argument
30 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValue()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DStringsAndChecksums.h92 void setChecksums(const ChecksumsPtr &CP) { Checksums = CP; } in setChecksums() argument
/openbsd-src/gnu/llvm/llvm/lib/Target/XCore/
H A DXCoreRegisterInfo.td37 def CP : Ri<12, "cp">, DwarfRegNum<[12]>;
56 R11, CP, DP, SP, LR)> {
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-sh64.h127 #define md_parse_name(NAME, EXP, CP) \ argument
128 sh64_consume_datalabel (NAME, EXP, CP, operand)
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-sh64.h127 #define md_parse_name(NAME, EXP, MODE, CP) \ argument
128 sh64_consume_datalabel (NAME, EXP, MODE, CP, operand)
/openbsd-src/gnu/llvm/llvm/utils/UnicodeData/
H A DUnicodeNameMappingGenerator.cpp70 auto InsertUnique = [&](char32_t CP, std::string Name) { in loadDataFiles() argument
71 auto It = CollectedCharacters.find(CP); in loadDataFiles()
72 while (It != std::end(CollectedCharacters) && It->first == CP) { in loadDataFiles()
77 CollectedCharacters.insert({CP, std::move(Name)}); in loadDataFiles()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonRDFOpt.cpp311 HexagonCP CP(G); in runOnMachineFunction() local
312 CP.trace(RDFDump); in runOnMachineFunction()
313 Changed = CP.run(); in runOnMachineFunction()
/openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/
H A D3316.crt18 OxXLH0abXdirSV7/ECCw47GmilndDc34r65R6pzhL0r4W+99Fl2ETxQrC4fH/7CP
H A D2481.crt18 2gpBHJVAb9kL3POXXbjl52Qk96o8ovF00qFdTqMqwUPaY13no3+CP/gFv9H8qLPM

12345