Home | History | Annotate | Download | only in MIRParser

Lines Matching refs:Value

300   if (parseMachineBasicBlockDefinitions(MF, YamlMF.Body.Value.Value, PFS,
303 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange));
321 if (parseMachineInstructions(MF, YamlMF.Body.Value.Value, PFS, IRSlots,
324 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange));
350 const auto *RC = getRegClass(MF, VReg.Class.Value);
354 VReg.Class.Value + "'");
356 if (!PFS.VirtualRegisterSlots.insert(std::make_pair(VReg.ID.Value, Reg))
360 Twine(VReg.ID.Value) + "'");
361 if (!VReg.PreferredRegister.Value.empty()) {
364 VReg.PreferredRegister.Value, PFS,
374 if (parseNamedRegisterReference(Reg, SM, MF, LiveIn.Register.Value, PFS,
378 if (!LiveIn.VirtualRegister.Value.empty()) {
380 VReg, SM, MF, LiveIn.VirtualRegister.Value, PFS, IRSlots, Error))
392 if (parseNamedRegisterReference(Reg, SM, MF, RegSource.Value, PFS, IRSlots,
436 if (!YamlMFI.SavePoint.Value.empty()) {
442 if (!YamlMFI.RestorePoint.Value.empty()) {
459 if (!PFS.FixedStackObjectSlots.insert(std::make_pair(Object.ID.Value,
464 Twine(Object.ID.Value) + "'");
475 if (!Name.Value.empty()) {
477 F.getValueSymbolTable().lookup(Name.Value));
480 "alloca instruction named '" + Name.Value +
491 if (!PFS.StackObjectSlots.insert(std::make_pair(Object.ID.Value, ObjectIdx))
495 Twine(Object.ID.Value) + "'");
510 if (!YamlMFI.StackProtector.Value.empty()) {
513 if (parseStackObjectReference(FI, SM, MF, YamlMFI.StackProtector.Value, PFS,
525 if (RegisterSource.Value.empty())
529 if (parseNamedRegisterReference(Reg, SM, MF, RegisterSource.Value, PFS,
578 if (Source.Value.empty())
581 if (llvm::parseMDNode(Node, SM, MF, Source.Value, PFS, IRSlots, Error))
593 const Constant *Value = dyn_cast_or_null<Constant>(
594 parseConstantValue(YamlConstant.Value.Value, Error, M));
595 if (!Value)
596 return error(Error, YamlConstant.Value.SourceRange);
600 : M.getDataLayout().getPrefTypeAlignment(Value->getType());
601 unsigned Index = ConstantPool.getConstantPoolIndex(Value, Alignment);
602 if (!ConstantPoolSlots.insert(std::make_pair(YamlConstant.ID.Value, Index))
606 Twine(YamlConstant.ID.Value) + "'");
619 if (parseMBBReference(MBB, MBBSource.Value, MF, PFS))
624 if (!PFS.JumpTableSlots.insert(std::make_pair(Entry.ID.Value, Index))
628 Twine(Entry.ID.Value) + "'");
638 if (llvm::parseMBBReference(MBB, SM, MF, Source.Value, PFS, IRSlots, Error))