/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypes.h | 217 SDValue JoinIntegers(SDValue Lo, SDValue Hi); 224 void SplitInteger(SDValue Op, SDValue &Lo, SDValue &Hi); 226 SDValue &Lo, SDValue &Hi); 387 void GetExpandedInteger(SDValue Op, SDValue &Lo, SDValue &Hi); 388 void SetExpandedInteger(SDValue Op, SDValue Lo, SDValue Hi); 392 void ExpandIntRes_ANY_EXTEND (SDNode *N, SDValue &Lo, SDValue &Hi); 393 void ExpandIntRes_AssertSext (SDNode *N, SDValue &Lo, SDValue &Hi); 394 void ExpandIntRes_AssertZext (SDNode *N, SDValue &Lo, SDValue &Hi); 395 void ExpandIntRes_Constant (SDNode *N, SDValue &Lo, SDValue &Hi); 396 void ExpandIntRes_ABS (SDNode *N, SDValue &Lo, SDValue &Hi); [all …]
|
D | LegalizeTypesGeneric.cpp | 35 SDValue &Lo, SDValue &Hi) { in ExpandRes_MERGE_VALUES() argument 37 GetExpandedOp(Op, Lo, Hi); in ExpandRes_MERGE_VALUES() 40 void DAGTypeLegalizer::ExpandRes_BITCAST(SDNode *N, SDValue &Lo, SDValue &Hi) { in ExpandRes_BITCAST() argument 56 SplitInteger(GetSoftenedFloat(InOp), Lo, Hi); in ExpandRes_BITCAST() 58 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi); in ExpandRes_BITCAST() 64 GetExpandedOp(InOp, Lo, Hi); in ExpandRes_BITCAST() 67 std::swap(Lo, Hi); in ExpandRes_BITCAST() 69 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi); in ExpandRes_BITCAST() 73 GetSplitVector(InOp, Lo, Hi); in ExpandRes_BITCAST() 75 std::swap(Lo, Hi); in ExpandRes_BITCAST() [all …]
|
D | LegalizeIntegerTypes.cpp | 325 SDValue Lo, Hi; in PromoteIntRes_BITCAST() local 326 GetSplitVector(N->getOperand(0), Lo, Hi); in PromoteIntRes_BITCAST() 328 Hi = BitConvertToInteger(Hi); in PromoteIntRes_BITCAST() 331 std::swap(Lo, Hi); in PromoteIntRes_BITCAST() 336 JoinIntegers(Lo, Hi)); in PromoteIntRes_BITCAST() 1157 SDValue Hi = DAG.getNode(ISD::SRL, DL, Mul.getValueType(), Mul, in PromoteIntRes_XMULO() local 1159 Overflow = DAG.getSetCC(DL, N->getValueType(1), Hi, in PromoteIntRes_XMULO() 1160 DAG.getConstant(0, DL, Hi.getValueType()), in PromoteIntRes_XMULO() 1442 SDValue Hi = GetPromotedInteger(N->getOperand(1)); in PromoteIntOp_BUILD_PAIR() local 1446 Hi = DAG.getNode(ISD::SHL, dl, N->getValueType(0), Hi, in PromoteIntOp_BUILD_PAIR() [all …]
|
D | LegalizeFloatTypes.cpp | 1102 SDValue Lo, Hi; in ExpandFloatResult() local 1103 Lo = Hi = SDValue(); in ExpandFloatResult() 1117 case ISD::UNDEF: SplitRes_UNDEF(N, Lo, Hi); break; in ExpandFloatResult() 1118 case ISD::SELECT: SplitRes_SELECT(N, Lo, Hi); break; in ExpandFloatResult() 1119 case ISD::SELECT_CC: SplitRes_SELECT_CC(N, Lo, Hi); break; in ExpandFloatResult() 1121 case ISD::MERGE_VALUES: ExpandRes_MERGE_VALUES(N, ResNo, Lo, Hi); break; in ExpandFloatResult() 1122 case ISD::BITCAST: ExpandRes_BITCAST(N, Lo, Hi); break; in ExpandFloatResult() 1123 case ISD::BUILD_PAIR: ExpandRes_BUILD_PAIR(N, Lo, Hi); break; in ExpandFloatResult() 1124 case ISD::EXTRACT_ELEMENT: ExpandRes_EXTRACT_ELEMENT(N, Lo, Hi); break; in ExpandFloatResult() 1125 case ISD::EXTRACT_VECTOR_ELT: ExpandRes_EXTRACT_VECTOR_ELT(N, Lo, Hi); break; in ExpandFloatResult() [all …]
|
D | LegalizeTypes.cpp | 736 SDValue &Hi) { in GetExpandedInteger() argument 740 Hi = getSDValue(Entry.second); in GetExpandedInteger() 744 SDValue Hi) { in SetExpandedInteger() argument 747 Hi.getValueType() == Lo.getValueType() && in SetExpandedInteger() 751 AnalyzeNewValue(Hi); in SetExpandedInteger() 756 DAG.transferDbgValues(Op, Hi, 0, Hi.getValueSizeInBits(), false); in SetExpandedInteger() 757 DAG.transferDbgValues(Op, Lo, Hi.getValueSizeInBits(), in SetExpandedInteger() 761 DAG.transferDbgValues(Op, Hi, Lo.getValueSizeInBits(), in SetExpandedInteger() 762 Hi.getValueSizeInBits()); in SetExpandedInteger() 769 Entry.second = getTableId(Hi); in SetExpandedInteger() [all …]
|
D | LegalizeVectorTypes.cpp | 809 SDValue Lo, Hi; in SplitVectorResult() local 825 case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break; in SplitVectorResult() 827 case ISD::SELECT: SplitRes_SELECT(N, Lo, Hi); break; in SplitVectorResult() 828 case ISD::SELECT_CC: SplitRes_SELECT_CC(N, Lo, Hi); break; in SplitVectorResult() 829 case ISD::UNDEF: SplitRes_UNDEF(N, Lo, Hi); break; in SplitVectorResult() 830 case ISD::BITCAST: SplitVecRes_BITCAST(N, Lo, Hi); break; in SplitVectorResult() 831 case ISD::BUILD_VECTOR: SplitVecRes_BUILD_VECTOR(N, Lo, Hi); break; in SplitVectorResult() 832 case ISD::CONCAT_VECTORS: SplitVecRes_CONCAT_VECTORS(N, Lo, Hi); break; in SplitVectorResult() 833 case ISD::EXTRACT_SUBVECTOR: SplitVecRes_EXTRACT_SUBVECTOR(N, Lo, Hi); break; in SplitVectorResult() 834 case ISD::INSERT_SUBVECTOR: SplitVecRes_INSERT_SUBVECTOR(N, Lo, Hi); break; in SplitVectorResult() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | classExpression5.types | 3 >new class { hi() { return "Hi!"; }}().hi() : string 4 >new class { hi() { return "Hi!"; }}().hi : () => string 5 >new class { hi() { return "Hi!"; }}() : (Anonymous class) 6 >class { hi() { return "Hi!"; }} : typeof (Anonymous class) 11 return "Hi!"; 12 >"Hi!" : "Hi!"
|
D | commentEmittingInPreserveJsx1.types | 26 ><div> // Not Comment { //Comment just Fine "Hi" } // Another not Comment… 32 "Hi" 33 >"Hi" : "Hi" 40 ><div> /* Not Comment */ { //Comment just Fine "Hi" }</div> : JSX.Element 46 "Hi" 47 >"Hi" : "Hi"
|
D | declarationEmitDetachedComment1.js | 19 class Hi { class 49 var Hi = /** @class */ (function () { 50 function Hi() { class in Hi 52 return Hi; 77 declare class Hi {
|
D | declarationEmitDetachedComment2.js | 19 class Hi { class 42 var Hi = (function () { 43 function Hi() { class in Hi 45 return Hi; 60 declare class Hi {
|
D | templateStringWithEmbeddedNewOperatorES6.types | 2 var x = `abc${ new String("Hi") }def`; 4 >`abc${ new String("Hi") }def` : string 5 >new String("Hi") : String 7 >"Hi" : "Hi"
|
D | templateStringWithEmbeddedNewOperator.types | 2 var x = `abc${ new String("Hi") }def`; 4 >`abc${ new String("Hi") }def` : string 5 >new String("Hi") : String 7 >"Hi" : "Hi"
|
D | commentsAfterCaseClauses1.types | 3 >getSecurity : (level: any) => "Hi" | "hello" | "world" 18 return "Hi"; 19 >"Hi" : "Hi"
|
D | commentsAfterCaseClauses3.types | 3 >getSecurity : (level: any) => "Hi" | "hello" | "world" 19 return "Hi"; 20 >"Hi" : "Hi"
|
D | commentsAfterCaseClauses2.types | 3 >getSecurity : (level: any) => "Hi" | "hello" | "world" 19 return "Hi"; 20 >"Hi" : "Hi"
|
D | declarationEmitDetachedComment1.types | 16 * Hi class 18 class Hi { 19 >Hi : Hi
|
D | declarationEmitDetachedComment2.types | 16 * Hi class 18 class Hi { 19 >Hi : Hi
|
D | declarationEmitDetachedComment2.symbols | 16 * Hi class 18 class Hi { 19 >Hi : Symbol(Hi, Decl(test2.ts, 0, 0))
|
D | declarationEmitDetachedComment1.symbols | 16 * Hi class 18 class Hi { 19 >Hi : Symbol(Hi, Decl(test2.ts, 0, 0))
|
D | tsxStatelessFunctionComponents1.js | 13 return <div>Hi Hi</div>; 70 return <div>Hi Hi</div>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/Disassembler/ |
D | BPFDisassembler.cpp | 140 uint64_t Lo, Hi; in readInstruction64() local 149 Hi = (Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 0) | (Bytes[3] << 8); in readInstruction64() 152 Hi = (Bytes[0] << 24) | ((Bytes[1] & 0x0F) << 20) | ((Bytes[1] & 0xF0) << 12) | in readInstruction64() 156 Insn = Make_64(Hi, Lo); in readInstruction64() 166 uint64_t Insn, Hi; in getInstruction() local 195 Hi = (Bytes[12] << 0) | (Bytes[13] << 8) | (Bytes[14] << 16) | (Bytes[15] << 24); in getInstruction() 197 Hi = (Bytes[12] << 24) | (Bytes[13] << 16) | (Bytes[14] << 8) | (Bytes[15] << 0); in getInstruction() 199 Op.setImm(Make_64(Hi, Op.getImm())); in getInstruction()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_OnRomaji.txt | 26 丕>Hi; 215 俾>Hi; 517 匕>Hi; 526 匪>Hi; 545 卑>Hi; 637 否>Hi; 803 嚊>Hi; 1028 妃>Hi; 1037 妣>Hi; 1083 婢>Hi; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | SwapByteOrder.h | 36 uint16_t Hi = value << 8; in SwapByteOrder_16() 38 return Hi | Lo; in SwapByteOrder_16() 66 uint64_t Hi = SwapByteOrder_32(uint32_t(value)); in SwapByteOrder_64() 68 return (Hi << 32) | Lo; in SwapByteOrder_64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | SwapByteOrder.h | 64 uint16_t Hi = value << 8; in SwapByteOrder_16() 66 return Hi | Lo; in SwapByteOrder_16() 92 uint64_t Hi = SwapByteOrder_32(uint32_t(value)); in SwapByteOrder_64() 94 return (Hi << 32) | Lo; in SwapByteOrder_64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinterDwarf.cpp | 54 void AsmPrinter::EmitLabelDifferenceAsULEB128(const MCSymbol *Hi, in EmitLabelDifferenceAsULEB128() argument 56 OutStreamer->emitAbsoluteSymbolDiffAsULEB128(Hi, Lo); in EmitLabelDifferenceAsULEB128() 186 void AsmPrinter::EmitCallSiteOffset(const MCSymbol *Hi, in EmitCallSiteOffset() argument 191 EmitLabelDifferenceAsULEB128(Hi, Lo); in EmitCallSiteOffset() 193 EmitLabelDifference(Hi, Lo, GetSizeOfEncodedValue(Encoding)); in EmitCallSiteOffset()
|