mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	the X86 asmparser to produce ranges in the one case that was annoying me, for example:
test.s:10:15: error: invalid operand for instruction
movl 0(%rax), 0(%edx)
              ^~~~~~~
It should be straight-forward to enhance filecheck, tblgen, and/or the .ll parser to use 
ranges where appropriate if someone is interested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142106 91177308-0d34-0410-b5e6-96231b3b80d8
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- MCAsmParser.cpp - Abstract Asm Parser Interface -------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "llvm/MC/MCParser/MCAsmParser.h"
 | 
						|
#include "llvm/MC/MCParser/MCAsmLexer.h"
 | 
						|
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
 | 
						|
#include "llvm/MC/MCTargetAsmParser.h"
 | 
						|
#include "llvm/Support/SourceMgr.h"
 | 
						|
#include "llvm/Support/raw_ostream.h"
 | 
						|
#include "llvm/Support/Debug.h"
 | 
						|
#include "llvm/ADT/Twine.h"
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
MCAsmParser::MCAsmParser() : TargetParser(0), ShowParsedOperands(0) {
 | 
						|
}
 | 
						|
 | 
						|
MCAsmParser::~MCAsmParser() {
 | 
						|
}
 | 
						|
 | 
						|
void MCAsmParser::setTargetParser(MCTargetAsmParser &P) {
 | 
						|
  assert(!TargetParser && "Target parser is already initialized!");
 | 
						|
  TargetParser = &P;
 | 
						|
  TargetParser->Initialize(*this);
 | 
						|
}
 | 
						|
 | 
						|
const AsmToken &MCAsmParser::getTok() {
 | 
						|
  return getLexer().getTok();
 | 
						|
}
 | 
						|
 | 
						|
bool MCAsmParser::TokError(const Twine &Msg, ArrayRef<SMRange> Ranges) {
 | 
						|
  Error(getLexer().getLoc(), Msg, Ranges);
 | 
						|
  return true;
 | 
						|
}
 | 
						|
 | 
						|
bool MCAsmParser::ParseExpression(const MCExpr *&Res) {
 | 
						|
  SMLoc L;
 | 
						|
  return ParseExpression(Res, L);
 | 
						|
}
 | 
						|
 | 
						|
void MCParsedAsmOperand::dump() const {
 | 
						|
  dbgs() << "  " << *this;
 | 
						|
}
 |