Searched defs:LSB (Results 1 - 11 of 11) sorted by relevance

/external/v8/test/cctest/compiler/
H A Dtest-run-load-store.cc226 #define LSB(addr, bytes) addr macro
228 #define LSB(addr, bytes) reinterpret_cast<byte*>(addr + 1) - bytes macro
236 Node* load8 = m.LoadFromPointer(LSB(&buffer[0], 1), MachineType::Int8());
237 Node* load16 = m.LoadFromPointer(LSB(&buffer[0], 2), MachineType::Int16());
257 Node* load8 = m.LoadFromPointer(LSB(&buffer[0], 1), MachineType::Uint8());
258 Node* load16 = m.LoadFromPointer(LSB(&buffer[0], 2), MachineType::Uint16());
295 Node* load8 = m.LoadFromPointer(LSB(&buffer[0], 1), MachineType::Int8());
296 Node* load16 = m.LoadFromPointer(LSB(&buffer[0], 2), MachineType::Int16());
297 Node* load32 = m.LoadFromPointer(LSB(&buffer[0], 4), MachineType::Int32());
320 Node* load8 = m.LoadFromPointer(LSB(
[all...]
/external/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.cpp169 int LSB = (BitWidth - ImmR) % BitWidth; local
173 << ", #" << LSB << ", #" << Width;
179 int LSB = (BitWidth - ImmR) % BitWidth; local
183 << getRegisterName(Op2.getReg()) << ", #" << LSB << ", #" << Width;
188 int LSB = ImmR; local
193 << ", #" << LSB << ", #" << Width;
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1211 // have already been filtered out. Store the first set bit in LSB and
1213 static bool isStringOfOnes(uint64_t Mask, unsigned &LSB, unsigned &Length) { argument
1217 LSB = First;
1233 unsigned LSB, Length; local
1234 if (isStringOfOnes(Mask, LSB, Length)) {
1235 Start = 63 - (LSB + Length - 1);
1236 End = 63 - LSB;
1242 if (isStringOfOnes(Mask ^ allOnes(BitSize), LSB, Length)) {
1243 assert(LSB > 0 && "Bottom bit must be set");
1244 assert(LSB
[all...]
/external/valgrind/none/tests/ppc32/
H A Dround.c598 int LSB; local
606 ** and the LSB bit at the bottom of the manitssa.
618 /* mask off LSB from resulting guard bits */
637 /* mask off LSB from resulting guard bits */
654 /* g >> 3 == LSB, g & 7 == guard bits */
700 /* get LSB for tie breaking */
701 LSB = Z.layout.frac & 1;
717 if (debug) printf("tie: LSB = %d\n", LSB);
718 expected = (LSB
929 int LSB; local
[all...]
/external/valgrind/none/tests/ppc64/
H A Dround.c598 int LSB; local
606 ** and the LSB bit at the bottom of the manitssa.
618 /* mask off LSB from resulting guard bits */
637 /* mask off LSB from resulting guard bits */
654 /* g >> 3 == LSB, g & 7 == guard bits */
700 /* get LSB for tie breaking */
701 LSB = Z.layout.frac & 1;
717 if (debug) printf("tie: LSB = %d\n", LSB);
718 expected = (LSB
929 int LSB; local
[all...]
/external/libweave/third_party/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc363 #define LSB 1 macro
420 #define LSB 1 macro
449 #define LSB 0x10000 macro
3214 if (!(word1(&rv) & LSB))
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp1422 unsigned &LSB, unsigned &MSB,
1496 LSB = Srl_imm;
1512 SDValue &Opd0, unsigned &LSB,
1515 // continuous bits from the source value and places it from the LSB of the
1549 LSB = Srl_imm;
1974 // f = Opc Opd0, Opd1, LSB, MSB ; where Opc is a BFM, LSB = imm, and MSB = imm2
2083 unsigned LSB, MSB; local
2093 if (!isBitfieldInsertOpFromOr(N, Opc, Opd0, Opd1, LSB, MSB, NUsefulBits,
2100 CurDAG->getTargetConstant(LSB, d
1420 isBitfieldExtractOpFromAnd(SelectionDAG *CurDAG, SDNode *N, unsigned &Opc, SDValue &Opd0, unsigned &LSB, unsigned &MSB, unsigned NumberOfIgnoredLowBits, bool BiggerPattern) argument
1511 isSeveralBitsExtractOpFromShr(SDNode *N, unsigned &Opc, SDValue &Opd0, unsigned &LSB, unsigned &MSB) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2345 unsigned LSB = Srl_imm; local
2349 if ((LSB + Width + 1) == N->getValueType(0).getSizeInBits()) {
2354 CurDAG->getTargetConstant(LSB, dl, MVT::i32),
2362 CurDAG->getTargetConstant(ARM_AM::getSORegOpc(ShOpcVal, LSB), dl,
2370 CurDAG->getTargetConstant(LSB, dl, MVT::i32),
2388 int LSB = Srl_imm - Shl_imm; local
2389 if (LSB < 0)
2393 CurDAG->getTargetConstant(LSB, dl, MVT::i32),
2402 unsigned LSB = 0; local
2403 if (!isOpcWithIntImmediate(N->getOperand(0).getNode(), ISD::SRL, LSB)
[all...]
H A DARMISelLowering.cpp4347 // Compute the least significant set bit: LSB = X & -X
4350 SDValue LSB = DAG.getNode(ISD::AND, dl, VT, X, NX); local
4358 SDValue Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One);
4369 SDValue CTLZ = DAG.getNode(ISD::CTLZ, dl, VT, LSB);
4379 // Compute LSB - 1.
4385 Bits = DAG.getNode(ISD::ADD, dl, VT, LSB, FF);
4389 Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One);
9033 unsigned LSB = countTrailingZeros(Mask); local
9034 if (ShAmtC != LSB)
9152 unsigned LSB local
[all...]
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3825 uint64_t LSB = LSBCE->getValue(); local
3835 if (LSB >= RegWidth)
3844 ImmR = (32 - LSB) & 0x1f;
3846 ImmR = (64 - LSB) & 0x3f;
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp537 unsigned LSB; member in struct:__anon12530::ARMOperand::BitfieldOp
1801 unsigned lsb = Bitfield.LSB;
2597 CreateBitfield(unsigned LSB, unsigned Width, SMLoc S, SMLoc E) { argument
2599 Op->Bitfield.LSB = LSB;
2854 OS << "<bitfield " << "lsb: " << Bitfield.LSB
4429 // The bitfield descriptor is really two operands, the LSB and the width.
4449 int64_t LSB = CE->getValue(); local
4450 // The LSB must be in the range [0,31]
4451 if (LSB <
6200 unsigned LSB = Inst.getOperand(2).getImm(); local
[all...]

Completed in 3050 milliseconds