Searched refs:AM (Results 26 - 50 of 55) sorted by relevance

123

/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h356 ISD::MemIndexedMode &AM,
437 /// by AM is legal for this target, for a load/store of the specified type.
438 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty)const;
H A DPPCISelLowering.cpp1204 ISD::MemIndexedMode &AM,
1247 AM = ISD::PRE_INC;
1273 AM = ISD::PRE_INC;
7727 // by AM is legal for this target, for a load/store of the specified type.
7728 bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM, argument
7733 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
7737 if (AM.BaseGV)
7741 switch (AM.Scale) {
7745 if (AM
1202 getPreIndexedAddressParts(SDNode *N, SDValue &Base, SDValue &Offset, ISD::MemIndexedMode &AM, SelectionDAG &DAG) const argument
[all...]
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
H A Dmathjax_external_util.js480 MathJax.InputJax.AsciiMath.AM.parseMath);
/external/jsilver/src/org/clearsilver/jni/
H A DJniHdf.java235 cal.get(Calendar.AM_PM) == Calendar.AM ? "1" : "0");
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h717 SDValue Offset, ISD::MemIndexedMode AM);
718 SDValue getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
725 SDValue getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
746 SDValue Offset, ISD::MemIndexedMode AM);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp642 ISD::MemIndexedMode &AM,
667 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
1634 /// AM is legal for this target, for a load/store of the specified type.
1635 bool HexagonTargetLowering::isLegalAddressingMode(const AddrMode &AM, argument
1638 if (AM.BaseOffs <= -(1LL << 13) || AM.BaseOffs >= (1LL << 13)-1) {
1643 if (AM.BaseGV) {
1647 int Scale = AM.Scale;
639 getPostIndexedAddressParts(SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset, ISD::MemIndexedMode &AM, SelectionDAG &DAG) const argument
H A DHexagonISelDAGToDAG.cpp678 ISD::MemIndexedMode AM = LD->getAddressingMode(); local
681 if (AM != ISD::UNINDEXED) {
818 ISD::MemIndexedMode AM = ST->getAddressingMode(); local
821 if (AM != ISD::UNINDEXED) {
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1928 /// by AM is legal for this target, for a load/store of the specified type.
1932 bool NVPTXTargetLowering::isLegalAddressingMode(const AddrMode &AM, argument
1944 if (AM.BaseGV) {
1945 if (AM.BaseOffs || AM.HasBaseReg || AM.Scale)
1950 switch (AM.Scale) {
1954 if (AM.HasBaseReg) // "r+r+i" or "r+r" is not allowed.
/external/llvm/include/llvm/Target/
H A DTargetLowering.h1114 /// Return true if the addressing mode represented by AM is legal for this
1120 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const;
1123 /// represented by AM for this target, for a load/store of the specified type.
1125 /// If the AM is supported, the return value must be >= 0.
1126 /// If the AM is not supported, it returns a negative value.
1128 virtual int getScalingFactorCost(const AddrMode &AM, Type *Ty) const {
1129 // Default: assume that any scaling factor used in a legal AM is free.
1130 if (isLegalAddressingMode(AM, Ty)) return 0;
1658 ISD::MemIndexedMode &/*AM*/,
1668 ISD::MemIndexedMode &/*AM*/,
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h449 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const;
H A DMipsISelLowering.cpp3028 MipsTargetLowering::isLegalAddressingMode(const AddrMode &AM, Type *Ty) const { argument
3030 if (AM.BaseGV)
3033 switch (AM.Scale) {
3037 if (!AM.HasBaseReg) // allow "r+i".
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp843 static inline raw_ostream &operator<<(raw_ostream &OS, const ExtAddrMode &AM) { argument
844 AM.print(OS);
907 Instruction *MI, ExtAddrMode &AM)
908 : AddrModeInsts(AMI), TLI(T), AccessTy(AT), MemoryInst(MI), AddrMode(AM) {
905 AddressingModeMatcher(SmallVectorImpl<Instruction*> &AMI, const TargetLowering &T, Type *AT, Instruction *MI, ExtAddrMode &AM) argument
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp645 AllocaModifier AM(BB, &PT, &R); AM.ActN(5); // Throw in a few allocas
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dcalendar.h257 AM, enumerator in enum:Calendar::EAmpm
/external/icu4c/i18n/unicode/
H A Dcalendar.h132 * saving time in US, wall clock time jumps from 1:00 AM (standard) to 2:00 AM
133 * (daylight). Therefore, wall clock time from 1:00 AM to 1:59 AM do not exist on
136 * In this example, 1:30 AM is interpreted as 1:30 AM standard time (non-exist),
137 * so the final result will be 2:30 AM daylight time.
140 * hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occu
288 AM, enumerator in enum:Calendar::EAmpm
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.h646 /// by AM is legal for this target, for a load/store of the specified type.
647 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty)const;
H A DX86ISelLowering.cpp13266 // by AM is legal for this target, for a load/store of the specified type.
13267 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM, argument
13274 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13277 if (AM.BaseGV) {
13279 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13287 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13292 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13296 switch (AM
15256 X86AddressMode AM; local
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp740 const ComplexPattern *AM = P->getComplexPatternInfo(CGP); local
741 if (AM)
742 Size += AM->getNumOperands() * 3;
1682 const ComplexPattern *AM = Child->getComplexPatternInfo(CDP); local
1683 if (!AM || AM->getNumOperands() < NumArgs) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp510 encodeMemSDNodeFlags(int ConvType, ISD::MemIndexedMode AM, bool isVolatile, argument
514 assert((AM & 7) == AM &&
515 "AM may not require more than 3 bits!");
517 (AM << 2) |
4388 SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, argument
4417 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
4421 SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, argument
4442 bool Indexed = AM != ISD::UNINDEXED;
4452 ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MM
4494 getIndexedLoad(SDValue OrigLoad, SDLoc dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM) argument
4627 getIndexedStore(SDValue OrigStore, SDLoc dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM) argument
[all...]
H A DDAGCombiner.cpp6993 TargetLowering::AddrMode AM;
6998 AM.BaseOffs = Offset->getSExtValue();
7001 AM.Scale = 1;
7006 AM.BaseOffs = -Offset->getSExtValue();
7009 AM.Scale = 1;
7013 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
7059 ISD::MemIndexedMode AM = ISD::UNINDEXED; local
7060 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
7166 BasePtr, Offset, AM);
7169 BasePtr, Offset, AM);
7293 ISD::MemIndexedMode AM = ISD::UNINDEXED; local
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp293 bool SystemZTargetLowering::isLegalAddressingMode(const AddrMode &AM, argument
297 if (AM.BaseGV)
301 if (!isInt<20>(AM.BaseOffs))
305 return AM.Scale == 0 || AM.Scale == 1;
/external/clang/lib/CodeGen/
H A DCGClass.cpp1329 AssignmentMemcpyizer AM(*this, AssignOp, Args);
1333 AM.emitAssignment(*I);
1335 AM.finish();
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/
H A Djquery.tablesorter.min.js4 var firstAvailCol;if(typeof(matrix[rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(typeof(matrix[rowIndex][k])=="undefined"){firstAvailCol=k;break;}}lookup[cellId]=firstAvailCol;for(var k=rowIndex;k<rowIndex+rowSpan;k++){if(typeof(matrix[k])=="undefined"){matrix[k]=[];}var matrixrow=matrix[k];for(var l=firstAvailCol;l<firstAvailCol+colSpan;l++){matrixrow[l]="x";}}}}return lookup;}function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i<l;i++){getWidgetById(c[i]).format(table);}}function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){if(widgets[i].id.toLowerCase()==name.toLowerCase()){return widgets[i];}}};function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerCase()=="desc")?1:0;}else{return(v==1)?1:0;}}function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i][0]==v){return true;}}return false;}function setHeadersCss(table,$headers,list,css){$headers.removeClass(css[0]).removeClass(css[1]);var h=[];$headers.each(function(offset){if(!this.sortDisabled){h[this.column]=$(this);}});var l=list.length;for(var i=0;i<l;i++){h[list[i][0]].addClass(css[list[i][1]]);}}function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFixed){var colgroup=$('<colgroup>');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($('<col>').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i<l;i++){var s=sortList[i],o=c.headerList[s[0]];o.count=s[1];o.count++;}}function multisort(table,sortList,cache){if(table.config.debug){var sortTime=new Date();}var dynamicExp="var sortWrapper = function(a,b) {",l=sortList.length;for(var i=0;i<l;i++){var c=sortList[i][0];var order=sortList[i][1];var s=(table.config.parsers[c].type=="text")?((order==0)?makeSortFunction("text","asc",c):makeSortFunction("text","desc",c)):((order==0)?makeSortFunction("numeric","asc",c):makeSortFunction("numeric","desc",c));var e="e"+i;dynamicExp+="var "+e+" = "+s;dynamicExp+="if("+e+") { return "+e+"; } ";dynamicExp+="else { ";}var orgOrderCol=cache.normalized[0].length-1;dynamicExp+="return a["+orgOrderCol+"]-b["+orgOrderCol+"];";for(var i=0;i<l;i++){dynamicExp+="}; ";}dynamicExp+="return 0; ";dynamicExp+="}; ";if(table.config.debug){benchmark("Evaling expression:"+dynamicExp,new Date());}eval(dynamicExp);cache.normalized.sort(sortWrapper);if(table.config.debug){benchmark("Sorting on "+sortList.toString()+" and dir "+order+" time:",sortTime);}return cache;};function makeSortFunction(type,direction,index){var a="a["+index+"]",b="b["+index+"]";if(type=='text'&&direction=='asc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+a+" < "+b+") ? -1 : 1 )));";}else if(type=='text'&&direction=='desc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+b+" < "+a+") ? -1 : 1 )));";}else if(type=='numeric'&&direction=='asc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+a+" - "+b+"));";}else if(type=='numeric'&&direction=='desc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+b+" - "+a+"));";}};function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"] > b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((a<b)?-1:((a>b)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((b<a)?-1:((b>a)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j<a.length;j++){if(a[j][0]!=i){config.sortList.push(a[j]);}}}config.sortList.push([i,this.order]);}else{if(isValueInArray(i,config.sortList)){for(var j=0;j<config.sortList.length;j++){var s=config.sortList[j],o=config.headerList[s[0]];if(s[0]==i){o.count=s[1];o.count++;s[1]=o.count%2;}}}else{config.sortList.push([i,this.order]);}};setTimeout(function(){setHeadersCss($this[0],$headers,config.sortList,sortCSS);appendToTable($this[0],multisort($this[0],config.sortList,cache));},1);return false;}}).mousedown(function(){if(config.cancelSelection){this.onselectstart=function(){return false};return false;}});$this.bind("update",function(){var me=this;setTimeout(function(){me.config.parsers=buildParserCache(me,$headers);cache=buildCache(me);},1);}).bind("updateCell",function(e,cell){var config=this.config;var pos=[(cell.parentNode.rowIndex-1),cell.cellIndex];cache.normalized[pos[0]][pos[1]]=config.parsers[pos[1]].format(getElementText(config,cell),cell);}).bind("sorton",function(e,list){$(this).trigger("sortStart");config.sortList=list;var sortList=config.sortList;updateHeaderSortCount(this,sortList);setHeadersCss(this,$headers,sortList,sortCSS);appendToTable(this,multisort(this,sortList,cache));}).bind("appendCache",function(){appendToTable(this,cache);}).bind("applyWidgetId",function(e,id){getWidgetById(id).format(this);}).bind("applyWidgets",function(){applyWidget(this);});if($.metadata&&($(this).metadata()&&$(this).metadata().sortlist)){config.sortList=$(this).metadata().sortlist;}if(config.sortList.length>0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==parser.id.toLowerCase()){a=false;}}if(a){parsers.push(parser);};};this.addWidget=function(widget){widgets.push(widget);};this.formatFloat=function(s){var i=parseFloat(s);return(isNaN(i))?0:i;};this.formatInt=function(s){var i=parseInt(s);return(isNaN(i))?0:i;};this.isDigit=function(s,config){return/^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g,'')));};this.clearTableBody=function(table){if($.browser.msie){function empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(table.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};}});$.fn.extend({tablesorter:$.tablesorter.construct});var ts=$.tablesorter;ts.addParser({id:"text",is:function(s){return true;},format:function(s){return $.trim(s.toLocaleLowerCase());},type:"text"});ts.addParser({id:"digit",is:function(s,table){var c=table.config;return $.tablesorter.isDigit(s,c);},format:function(s){return $.tablesorter.formatFloat(s);},type:"numeric"});ts.addParser({id:"currency",is:function(s){return/^[£$€?.]/.test(s);},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));},type:"numeric"});ts.addParser({id:"ipAddress",is:function(s){return/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);},format:function(s){var a=s.split("."),r="",l=a.length;for(var i=0;i<l;i++){var item=a[i];if(item.length==2){r+="0"+item;}else{r+=item;}}return $.tablesorter.formatFloat(r);},type:"numeric"});ts.addParser({id:"url",is:function(s){return/^(https?|ftp|file):\/\/$/.test(s);},format:function(s){return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));},type:"text"});ts.addParser({id:"isoDate",is:function(s){return/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);},format:function(s){return $.tablesorter.formatFloat((s!="")?new Date(s.replace(new RegExp(/-/g),"/")).getTime():"0");},type:"numeric"});ts.addParser({id:"percent",is:function(s){return/\%$/.test($.trim(s));},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));},type:"numeric"});ts.addParser({id:"usLongDate",is:function(s){return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));},format:function(s){return $.tablesorter.formatFloat(new Date(s).getTime());},type:"num (…)
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1000 ISD::MemIndexedMode &AM,
1022 AM = ISD::POST_INC;
997 getPostIndexedAddressParts(SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset, ISD::MemIndexedMode &AM, SelectionDAG &DAG) const argument
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10108 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM, argument
10110 int Scale = AM.Scale;
10127 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
10142 /// by AM is legal for this target, for a load/store of the specified type.
10143 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM, argument
10146 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
10150 if (AM.BaseGV)
10153 switch (AM.Scale) {
10162 if (AM.BaseOffs)
10169 return isLegalT2ScaledAddressingMode(AM, V
10319 getPreIndexedAddressParts(SDNode *N, SDValue &Base, SDValue &Offset, ISD::MemIndexedMode &AM, SelectionDAG &DAG) const argument
10357 getPostIndexedAddressParts(SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset, ISD::MemIndexedMode &AM, SelectionDAG &DAG) const argument
[all...]

Completed in 4156 milliseconds

123