HomeSort by: relevance | last modified time | path
    Searched refs:VBR (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitCodes.h 39 BlockIDWidth = 8, // We use VBR-8 for block IDs.
40 CodeLenWidth = 4, // Codelen are VBR-4.
103 VBR = 2, // A VBR field where Val specifies the width of each chunk.
130 case VBR:
161 /// specialized format instead of the fully-general, fully-vbr, format.
BitstreamWriter.h 233 // Emit the bits with VBR encoding, NumBits-1 bits at a time.
249 // Emit the bits with VBR encoding, NumBits-1 bits at a time.
360 case BitCodeAbbrevOp::VBR:
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
BitstreamRemarkSerializer.cpp 134 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Remark Name
135 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Pass name
136 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Function name
147 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 7)); // File
160 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Hotness
172 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 7)); // Key
173 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 7)); // Value
174 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 7)); // File
188 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 7)); // Key
189 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 7)); // Valu
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterDecl.cpp 1897 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // DeclContext
1907 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // SubmoduleID
1910 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Name
1913 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Type
1915 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // InnerStartLoc
1917 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // TSIType
1923 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // TypeLoc
1930 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // DeclContext
1940 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // SubmoduleID
1943 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Nam
    [all...]
ASTWriter.cpp 516 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Type
517 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 3)); // Quals
524 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ReturnType
539 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // NumParams
541 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Params
1369 FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // File ID
1429 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID
1430 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 12)); // Size
1431 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 32)); // Modification time
1538 OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # input file
    [all...]
  /src/sys/arch/sh3/sh3/
sh3_machdep.c 125 #define VBR (uint8_t *)SH3_PHYS_TO_P1SEG(IOM_RAM_BEGIN)
169 memcpy(VBR + 0x100, sh_vector_generic,
173 memcpy(VBR + 0x400, sh3_vector_tlbmiss,
178 memcpy(VBR + 0x400, sh4_vector_tlbmiss,
181 memcpy(VBR + 0x600, sh_vector_interrupt,
187 __asm volatile("ldc %0, vbr" :: "r"(VBR));
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 903 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // size
1177 // hold the real VST offset. Must use fixed instead of VBR as we don't
1178 // know how many VBR chunks to reserve ahead of time.
1275 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1276 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1279 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // AddrSpace << 2
1282 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Initializer.
1518 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));
1519 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
1520 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6))
    [all...]
  /src/sys/arch/x68k/stand/loadbsd/
trampoline.S 60 | reset VBR (for compatibility)
62 .long 0x4E7B9801 | movec %a1,%vbr
  /src/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/
BitstreamReader.cpp 78 case BitCodeAbbrevOp::VBR:
163 case BitCodeAbbrevOp::VBR:
289 case BitCodeAbbrevOp::VBR:
378 // and vbr(0) as a literal zero. This is decoded the same way, and avoids
380 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
386 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
389 "Fixed or VBR abbrev record with size > MaxChunkData");
  /src/external/gpl3/binutils/dist/gas/config/
tc-m68k.c 137 SFC, DFC, USP, VBR,
141 SFC, DFC, USP, VBR, CACR, CAAR, MSP, ISP,
146 USP, VBR, MSP, ISP, MMUSR, URP, SRP,
151 USP, VBR, URP, SRP, PCR,
155 CACR, TC, ACR0, ACR1, ACR2, ACR3, VBR, ROMBAR,
160 VBR, CPUCR,
164 CACR, ACR0, ACR1, VBR, RAMBAR0, RAMBAR_ALT, MBAR,
168 CACR, ACR0, ACR1, VBR, RAMBAR, RAMBAR1,
172 VBR, CACR, ACR0, ACR1, ROMBAR, RAMBAR, RAMBAR1, MBAR,
176 VBR, RAMBAR, RAMBAR1, FLASHBAR
    [all...]
m68k-parse.h 101 VBR,
tc-h8300.c 416 *mode = VBR;
1158 case VBR:
1159 if (op_mode != VBR &&
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-m68k.c 137 SFC, DFC, USP, VBR,
141 SFC, DFC, USP, VBR, CACR, CAAR, MSP, ISP,
146 USP, VBR, MSP, ISP, MMUSR, URP, SRP,
151 USP, VBR, URP, SRP, PCR,
155 CACR, TC, ACR0, ACR1, ACR2, ACR3, VBR, ROMBAR,
160 VBR, CPUCR,
164 CACR, ACR0, ACR1, VBR, RAMBAR0, RAMBAR_ALT, MBAR,
168 CACR, ACR0, ACR1, VBR, RAMBAR, RAMBAR1,
172 VBR, CACR, ACR0, ACR1, ROMBAR, RAMBAR, RAMBAR1, MBAR,
176 VBR, RAMBAR, RAMBAR1, FLASHBAR
    [all...]
m68k-parse.h 101 VBR,
tc-h8300.c 416 *mode = VBR;
1158 case VBR:
1159 if (op_mode != VBR &&
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TestModuleFileExtension.cpp 30 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of characters
  /src/sys/arch/news68k/news68k/
locore.s 102 * The bootstrap loader loads us in starting at 0, and VBR is non-zero.
133 movc %vbr,%a0
450 * Basically we just turn off the MMU, restore the PROM's initial VBR
466 movl _C_LABEL(saved_vbr),%d3 | Fetch original VBR value
470 movc %d3,%vbr | Restore monitor's VBR
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeConvenience.h 107 abbrev.Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, Width));
  /src/external/gpl3/binutils/dist/opcodes/
h8300-dis.c 165 "ccr", "exr", "mach", "macl", "", "", "vbr", "sbr"
510 || ((looking_for & MODE) == VBR && (thisnib != C_VBR))
  /src/external/gpl3/binutils.old/dist/opcodes/
h8300-dis.c 165 "ccr", "exr", "mach", "macl", "", "", "vbr", "sbr"
510 || ((looking_for & MODE) == VBR && (thisnib != C_VBR))
  /src/external/gpl3/gdb/dist/gdb/stubs/
sh-stub.c 265 R15, PC, PR, GBR, VBR, MACH, MACL, SR,
832 Exceptions are vectored to the address stored at VBR + (exception_num * 4)
836 These processors have fixed entry points relative to the VBR for
855 or wherever your vbr points. */
1197 stc.l vbr, @-r0 ! save VBR
1248 ldc.l @r1+, vbr ! restore VBR
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
sh-stub.c 265 R15, PC, PR, GBR, VBR, MACH, MACL, SR,
832 Exceptions are vectored to the address stored at VBR + (exception_num * 4)
836 These processors have fixed entry points relative to the VBR for
855 or wherever your vbr points. */
1197 stc.l vbr, @-r0 ! save VBR
1248 ldc.l @r1+, vbr ! restore VBR
  /src/external/gpl3/gdb.old/dist/opcodes/
h8300-dis.c 165 "ccr", "exr", "mach", "macl", "", "", "vbr", "sbr"
510 || ((looking_for & MODE) == VBR && (thisnib != C_VBR))
  /src/external/gpl3/gdb/dist/opcodes/
h8300-dis.c 165 "ccr", "exr", "mach", "macl", "", "", "vbr", "sbr"
510 || ((looking_for & MODE) == VBR && (thisnib != C_VBR))
  /src/sys/arch/mvme68k/mvme68k/
locore.s 84 * The bootstrap loader loads us in starting at 0, and VBR is non-zero.
592 movc %vbr,%d2 | Save vbr
594 movc %a2,%vbr
604 movc %d2,%vbr | Restore original vbr
621 * Basically we just turn off the MMU, restore the Bug's initial VBR
630 movl _C_LABEL(saved_vbr),%d3 | Fetch Bug's original VBR value
661 movc %d3,%vbr | Restore Bug's VBR
    [all...]

Completed in 47 milliseconds

1 2