Searched defs:CPE (Results 1 - 12 of 12) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFCodeEmitter.cpp150 MachineConstantPoolEntry CPE = CP[i]; local
153 ELFSection &CstPool = EW.getConstantPoolSection(CPE);
157 if (CPE.isMachineConstantPoolEntry())
158 assert(0 && "CPE.isMachineConstantPoolEntry not supported yet");
161 EW.EmitGlobalConstant(CPE.Val.ConstVal, CstPool);
H A DELFWriter.cpp230 ELFSection &ELFWriter::getConstantPoolSection(MachineConstantPoolEntry &CPE) { argument
232 switch (CPE.getRelocationInfo()) {
239 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
250 CPSect->getFlags(), CPE.getAlignment());
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
H A Drdtsc_buckets.cpp100 uint64_t CPE = bucket.elapsed / bucket.count; local
114 CPE,
135 fprintf(f, " %%Tot %%Par Cycles CPE NumEvent CPE2 NumEvent2 Bucket\n");
/external/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp557 const MachineConstantPoolEntry &CPE = local
559 if (!CPE.isMachineConstantPoolEntry()) {
561 SectionKind Kind = CPE.getSectionKind(&DL);
562 const Constant *C = CPE.Val.ConstVal;
563 unsigned Align = CPE.Alignment;
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp1236 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; local
1237 assert(!CPE.isMachineConstantPoolEntry() && "Invalid constpool entry");
1239 Offset = -cast<ConstantInt>(CPE.Val.ConstVal)->getSExtValue();
H A DARMConstantIslandPass.cpp83 /// CPE - A constant pool entry that has been placed somewhere, which
517 const CPEntry & CPE = CPEntries[i][j]; local
518 if (CPE.CPEMI && CPE.CPEMI->getOperand(1).isCPI())
519 AFI->recordCPEClone(i, CPE.CPI);
542 // Create the basic block to hold the CPE's.
563 // identity mapping of CPI's to CPE's.
717 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
892 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI); local
893 assert(CPE
1208 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI); local
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp194 /// CPE - A constant pool entry that has been placed somewhere, which
528 // Create the basic block to hold the CPE's.
551 // identity mapping of CPI's to CPE's.
633 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
782 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI); local
783 assert(CPE && "Cannot find a corresponding CPEntry!");
784 CPE->RefCount++;
945 /// isWaterInRange - Returns true if a CPE placed after the specified
948 /// Compute how much the function will grow by inserting a CPE after Water.
966 // The CPE ma
1045 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI); local
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp961 const MachineConstantPoolEntry &CPE = CP[i]; local
962 unsigned Align = CPE.getAlignment();
965 switch (CPE.getRelocationInfo()) {
972 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
1010 MachineConstantPoolEntry CPE = CP[CPI]; local
1013 unsigned AlignMask = CPE.getAlignment() - 1;
1017 Type *Ty = CPE.getType();
1021 if (CPE.isMachineConstantPoolEntry())
1022 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
1024 EmitGlobalConstant(CPE
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp771 MachineConstantPoolEntry CPE = Constants[i]; local
772 unsigned AlignMask = CPE.getAlignment() - 1;
774 Type *Ty = CPE.getType();
1087 MachineConstantPoolEntry CPE = Constants[i]; local
1088 unsigned AlignMask = CPE.getAlignment() - 1;
1093 if (CPE.isMachineConstantPoolEntry()) {
1098 TheJIT->InitializeMemory(CPE.Val.ConstVal, (void*)CAddr);
1102 Type *Ty = CPE.Val.ConstVal->getType();
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMAsmPrinter.cpp1142 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; local
1143 assert(!CPE.isMachineConstantPoolEntry() && "Invalid constpool entry");
1145 Offset = -cast<ConstantInt>(CPE.Val.ConstVal)->getSExtValue();
H A DARMConstantIslandPass.cpp64 /// CPE - A constant pool entry that has been placed somewhere, which
374 const CPEntry & CPE = CPEntries[i][j];
375 AFI->recordCPEClone(i, CPE.CPI);
397 // Create the basic block to hold the CPE's.
402 // identity mapping of CPI's to CPE's.
641 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
642 assert(CPE && "Cannot find a corresponding CPEntry!");
643 CPE->RefCount++;
865 // user's effective address to be subtracted by 2 and the CPE's address to
883 /// WaterIsInRange - Returns true if a CPE place
995 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI); local
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1307 const MachineConstantPoolEntry &CPE = CP[i]; local
1308 unsigned Align = CPE.getAlignment();
1310 SectionKind Kind = CPE.getSectionKind(&getDataLayout());
1313 if (!CPE.isMachineConstantPoolEntry())
1314 C = CPE.Val.ConstVal;
1356 MachineConstantPoolEntry CPE = CP[CPI]; local
1359 unsigned AlignMask = CPE.getAlignment() - 1;
1363 Type *Ty = CPE.getType();
1367 if (CPE.isMachineConstantPoolEntry())
1368 EmitMachineConstantPoolValue(CPE
[all...]

Completed in 3100 milliseconds