Searched defs:LH (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/v8/src/compiler/arm/
H A Dlinkage-arm.cc36 typedef LinkageHelper<ArmLinkageHelperTraits> LH; typedef in namespace:v8::internal::compiler
39 return LH::GetJSCallDescriptor(zone, parameter_count);
46 return LH::GetRuntimeCallDescriptor(zone, function, parameter_count,
54 return LH::GetStubCallDescriptor(zone, descriptor, stack_parameter_count,
61 return LH::GetSimplifiedCDescriptor(zone, sig);
/external/chromium_org/v8/src/compiler/arm64/
H A Dlinkage-arm64.cc36 typedef LinkageHelper<Arm64LinkageHelperTraits> LH; typedef in namespace:v8::internal::compiler
39 return LH::GetJSCallDescriptor(zone, parameter_count);
46 return LH::GetRuntimeCallDescriptor(zone, function, parameter_count,
54 return LH::GetStubCallDescriptor(zone, descriptor, stack_parameter_count,
61 return LH::GetSimplifiedCDescriptor(zone, sig);
/external/chromium_org/v8/src/compiler/ia32/
H A Dlinkage-ia32.cc31 typedef LinkageHelper<IA32LinkageHelperTraits> LH; typedef in namespace:v8::internal::compiler
34 return LH::GetJSCallDescriptor(zone, parameter_count);
41 return LH::GetRuntimeCallDescriptor(zone, function, parameter_count,
49 return LH::GetStubCallDescriptor(zone, descriptor, stack_parameter_count,
56 return LH::GetSimplifiedCDescriptor(zone, sig);
/external/chromium_org/v8/src/compiler/x64/
H A Dlinkage-x64.cc50 typedef LinkageHelper<X64LinkageHelperTraits> LH; typedef in namespace:v8::internal::compiler
53 return LH::GetJSCallDescriptor(zone, parameter_count);
60 return LH::GetRuntimeCallDescriptor(zone, function, parameter_count,
68 return LH::GetStubCallDescriptor(zone, descriptor, stack_parameter_count,
75 return LH::GetSimplifiedCDescriptor(zone, sig);
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp130 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(I); local
133 if (!LH)
136 int Option = LH->getOption();
137 int ValueInt = LH->getValue();
156 SourceLocation ValueLoc = LH->getRange().getEnd();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp515 SDValue LL, LH, RL, RH, CL, CH; local
517 GetSplitOp(N->getOperand(1), LL, LH);
532 Hi = DAG.getNode(N->getOpcode(), dl, LH.getValueType(), CH, LH, RH);
537 SDValue LL, LH, RL, RH; local
539 GetSplitOp(N->getOperand(2), LL, LH);
544 Hi = DAG.getNode(ISD::SELECT_CC, dl, LH.getValueType(), N->getOperand(0),
545 N->getOperand(1), LH, RH, N->getOperand(4));
H A DLegalizeIntegerTypes.cpp1966 SDValue LL, LH, RL, RH; local
1967 GetExpandedInteger(N->getOperand(0), LL, LH);
1970 Hi = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LH, RH);
1979 SDValue LL, LH, RL, RH; local
1980 GetExpandedInteger(N->getOperand(0), LL, LH);
1983 if (TLI.expandMUL(N, Lo, Hi, NVT, DAG, LL, LH, RL, RH))
H A DTargetLowering.cpp2787 SelectionDAG &DAG, SDValue LL, SDValue LH,
2802 // LL, LH, RL, and RH must be either all NULL or all set to a value.
2803 assert((LL.getNode() && LH.getNode() && RL.getNode() && RH.getNode()) ||
2804 (!LL.getNode() && !LH.getNode() && !RL.getNode() && !RH.getNode()));
2850 if (!LH.getNode() && !RH.getNode() &&
2855 LH = DAG.getNode(ISD::SRL, dl, VT, N->getOperand(0), Shift);
2856 LH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, LH);
2861 if (!LH.getNode())
2871 LH
2786 expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT, SelectionDAG &DAG, SDValue LL, SDValue LH, SDValue RL, SDValue RH) const argument
[all...]
H A DLegalizeVectorTypes.cpp963 SDValue LL, LH, RL, RH; local
964 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 0);
968 Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2));
H A DDAGCombiner.cpp4602 SDValue Lo, Hi, LL, LH, RL, RH; local
4603 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 0);
4607 Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2));
4711 SDValue Lo, Hi, CCLo, CCHi, LL, LH, RL, RH;
4713 std::tie(LL, LH) = DAG.SplitVectorOperand(N, 1);
4717 Hi = DAG.getNode(N->getOpcode(), DL, LH.getValueType(), CCHi, LH, RH);
/external/clang/lib/CodeGen/
H A DCGStmt.cpp555 const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr); local
558 if (!LH)
561 LoopHintAttr::OptionType Option = LH->getOption();
562 int ValueInt = LH->getValue();
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp697 SDValue LH, RH; local
698 LH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
707 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL);
709 Hi = DAG.getNode(ISD::ADD, dl, MVT::i32, Hi, LH);
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp1640 LowHalf LH; local
1645 ST.addOperator("lowhalf", &LH);
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2054 SDValue LH = DAG.getNode(ISD::SRA, DL, VT, LL, C63); local
2062 SDValue NegLHTimesRL = DAG.getNode(ISD::AND, DL, VT, LH, RL);

Completed in 530 milliseconds