aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/SubtargetFeature.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-08-22[MC] Remove guard(s). NFCI.Davide Italiano1-2/+0
2016-04-18[NFC] Header cleanupMehdi Amini1-0/+1
2016-01-29Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...Yaron Keren1-1/+1
2016-01-05(NFC) Change SubtargetFeatures::ToggleFeature andArtyom Skrobov1-12/+6
2016-01-03Use std::is_sorted instead of manual loops. NFCCraig Topper1-8/+4
2015-09-10[ADT] Switch a bunch of places in LLVM that were doing single-characterChandler Carruth1-1/+1
2015-06-05[ARM] Add knowledge of FPU subtarget features to TargetParserJohn Brawn1-22/+33
2015-05-28[MC] Replace custom string join function with the one from StringExtras.Benjamin Kramer1-22/+2
2015-05-26Use std::bitset for SubtargetFeatures.Michael Kuperstein1-11/+12
2015-05-13Reverting r237234, "Use std::bitset for SubtargetFeatures"Michael Kuperstein1-12/+11
2015-05-13Use std::bitset for SubtargetFeaturesMichael Kuperstein1-11/+12
2015-03-31Make llc use getHostCPUFeatures when 'native' is specified for cpu.Craig Topper1-2/+3
2015-03-28Convert feature strings to lowercase even if they have a '+'/'-' in front of ...Craig Topper1-1/+1
2015-03-28Update comment to match code behavior.Craig Topper1-1/+1
2015-03-24Revert "Use std::bitset for SubtargetFeatures"Michael Kuperstein1-12/+11
2015-03-24Use std::bitset for SubtargetFeaturesMichael Kuperstein1-11/+12
2015-02-19Reverting r229831 due to multiple ARM/PPC/MIPS build-bot failures.Michael Kuperstein1-12/+11
2015-02-19Use std::bitset for SubtargetFeaturesMichael Kuperstein1-11/+12
2014-08-30Fix some cases where StringRef was being passed by const reference. Remove co...Craig Topper1-8/+8
2014-08-11SubTargetFeature.cpp: it seems the size of this SmallVector should be 3Hans Wennborg1-1/+1
2014-05-13Make the split function use StringRef::split.Eric Christopher1-19/+3
2014-05-06Use a range based for loop for the SubtargetFeatures print function.Eric Christopher1-2/+2
2014-05-06Fix odd formatting that snuck into last patch.Eric Christopher1-3/+3
2014-05-06ArrayRef-ize the Feature and Processor tables for SubtargetFeatures.Eric Christopher1-60/+46
2014-05-06Have the SubtargetFeature help routine just not return a number andEric Christopher1-6/+4
2014-05-06Revert "Walk back commits for unused function parameters - they're still being"Eric Christopher1-19/+5
2014-05-05Walk back commits for unused function parameters - they're still beingEric Christopher1-5/+19
2014-05-05Remove a now unnecessary function since all calls have one versionEric Christopher1-17/+4
2014-05-05Remove a call to std::exit in a library. Make "Help" returnEric Christopher1-5/+7
2014-05-05Remove unused argument from AddFeature.Eric Christopher1-3/+2
2014-04-13[C++11] More 'nullptr' conversion or in some cases just using a boolean check...Craig Topper1-1/+1
2014-01-25Reverting r199886 (Prevent repetitive warnings for unrecognized processors an...Artyom Skrobov1-34/+20
2014-01-23Prevent repetitive warnings for unrecognized processors and featuresArtyom Skrobov1-20/+34
2013-10-13MC: Don't assume incoming StringRef's are null terminated.Will Dietz1-4/+1
2013-10-07Fix the documentation of getDefaultSubtargetFeatures.Rafael Espindola1-2/+1
2012-10-20Symbol hygiene: Make sure declarations and definitions match, make helper fun...Benjamin Kramer1-2/+2
2012-10-04Remove template from function that is only used with one type after r165092.Craig Topper1-4/+5
2012-10-03Remove unused function that used to get itineraries from SubTargetFeatures. T...Craig Topper1-24/+0
2012-09-12Release build: guard dump functions withManman Ren1-1/+1
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+2
2012-09-05Constify subtarget info properly so that we dont cast away the const inRoman Divacky1-3/+3
2012-05-11Tidy up. Trailing whitespace.Jim Grosbach1-8/+8
2011-11-06Replace (Lower|Upper)caseString in favor of StringRef's newest methods.Benjamin Kramer1-2/+1
2011-10-16Let printf do the formatting instead aligning strings ourselves.Benjamin Kramer1-11/+10
2011-07-09Change createAsmParser to take a MCSubtargetInfo instead of triple,Evan Cheng1-0/+32
2011-07-07Compute feature bits at time of MCSubtargetInfo initialization.Evan Cheng1-18/+22
2011-07-01Eliminate one extra conversion.Evan Cheng1-1/+1
2011-07-01Another misuse of StringRef. MSVC is very sensitive to that kind of error.Francois Pichet1-2/+2
2011-07-01Fix use after free.Rafael Espindola1-1/+1
2011-07-01Switch SubtargetFeatures from std::string to StringRef.Evan Cheng1-22/+19