Home
last modified time | relevance | path

Searched refs:PVal (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineOperand.cpp1085 } else if (const PseudoSourceValue *PVal = getPseudoValue()) { in print() local
1087 assert(PVal && "Expected a pseudo source value"); in print()
1088 switch (PVal->kind()) { in print()
1102 int FrameIndex = cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex(); in print()
1109 cast<GlobalValuePseudoSourceValue>(PVal)->getValue()->printAsOperand( in print()
1115 OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol()); in print()
1123 PVal->printCustom(OS); in print()
DLiveDebugValues.cpp346 const PseudoSourceValue *PVal = (*MMOI)->getPseudoValue(); in extractSpillBaseRegAndOffset() local
347 assert(PVal->kind() == PseudoSourceValue::FixedStack && in extractSpillBaseRegAndOffset()
349 int FI = cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex(); in extractSpillBaseRegAndOffset()
DRegisterCoalescer.cpp965 VNInfo *PVal = IntA.getVNInfoBefore(LIS->getMBBEndIdx(Pred)); in removePartialRedundancy() local
966 MachineInstr *DefMI = LIS->getInstructionFromIndex(PVal->def); in removePartialRedundancy()
985 if (PVal->def < VNI->def && VNI->def < LIS->getMBBEndIdx(Pred)) { in removePartialRedundancy()
/external/llvm/lib/CodeGen/
DMIRPrinter.cpp890 } else if (const PseudoSourceValue *PVal = Op.getPseudoValue()) { in print() local
892 assert(PVal && "Expected a pseudo source value"); in print()
893 switch (PVal->kind()) { in print()
908 cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex()); in print()
912 cast<GlobalValuePseudoSourceValue>(PVal)->getValue()->printAsOperand( in print()
918 OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol()); in print()
/external/clang/include/clang/Sema/
DAttributeList.h267 ArgsUnion PVal(Parm); in AttributeList()
268 memcpy(getArgsBuffer(), &PVal, sizeof(ArgsUnion)); in AttributeList()
303 ArgsUnion PVal(ArgKind); in AttributeList()
304 memcpy(getArgsBuffer(), &PVal, sizeof(ArgsUnion)); in AttributeList()
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp5635 llvm::Value *PVal = Pointers[i]; in emitOffloadingArrays() local
5636 if (PVal->getType()->isPointerTy()) in emitOffloadingArrays()
5637 PVal = CGF.Builder.CreateBitCast(PVal, CGM.VoidPtrTy); in emitOffloadingArrays()
5639 assert(PVal->getType()->isIntegerTy() && in emitOffloadingArrays()
5641 PVal = CGF.Builder.CreateIntToPtr(PVal, CGM.VoidPtrTy); in emitOffloadingArrays()
5647 CGF.Builder.CreateStore(PVal, PAddr); in emitOffloadingArrays()