HomeSort by: relevance | last modified time | path
    Searched refs:OpcodeOffset (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 380 uint64_t OpcodeOffset);
390 uint64_t OpcodeOffset);
399 AddrAndLineDelta handleSpecialOpcode(uint8_t Opcode, uint64_t OpcodeOffset);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 609 uint64_t OpcodeOffset) {
622 LineTableOffset, OpcodeName.data(), OpcodeOffset,
631 LineTableOffset, OpcodeName.data(), OpcodeOffset));
640 uint64_t OpcodeOffset) {
652 LineTableOffset, OpcodeName.data(), OpcodeOffset));
664 uint64_t AddrOffset = advanceAddr(OperationAdvance, Opcode, OpcodeOffset);
670 uint64_t OpcodeOffset) {
703 advanceAddrForOpcode(Opcode, OpcodeOffset);
804 uint64_t OpcodeOffset = *OffsetPtr;
1007 State.advanceAddr(*Operand, Opcode, OpcodeOffset);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGISel.h 357 /// OpcodeOffset - This is a cache used to dispatch efficiently into isel
359 std::vector<unsigned> OpcodeOffset;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 1443 unsigned OpcodeOffset = 0;
1460 OpcodeOffset = MI.getOperand(NumOps - 1).getImm();
1461 assert(OpcodeOffset < 16 && "Unexpected opcode offset!");
1465 emitByte(BaseOpcode + OpcodeOffset, OS);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 2917 // OpcodeOffset table.
2920 if (!OpcodeOffset.empty()) {
2921 // Already computed the OpcodeOffset table, just index into it.
2922 if (N.getOpcode() < OpcodeOffset.size())
2923 MatcherIndex = OpcodeOffset[N.getOpcode()];
2941 if (Opc >= OpcodeOffset.size())
2942 OpcodeOffset.resize((Opc+1)*2);
2943 OpcodeOffset[Opc] = Idx;
2948 if (N.getOpcode() < OpcodeOffset.size())
2949 MatcherIndex = OpcodeOffset[N.getOpcode()]
    [all...]

Completed in 26 milliseconds