Home
last modified time | relevance | path

Searched refs:Opcodes (Results 1 – 25 of 125) sorted by relevance

12345

/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h38 bool opcode_0xxxxxxx(const uint8_t *Opcodes, unsigned &Offset,
40 bool opcode_10Lxxxxx(const uint8_t *Opcodes, unsigned &Offset,
42 bool opcode_1100xxxx(const uint8_t *Opcodes, unsigned &Offset,
44 bool opcode_11010Lxx(const uint8_t *Opcodes, unsigned &Offset,
46 bool opcode_11011Lxx(const uint8_t *Opcodes, unsigned &Offset,
48 bool opcode_11100xxx(const uint8_t *Opcodes, unsigned &Offset,
50 bool opcode_111010xx(const uint8_t *Opcodes, unsigned &Offset,
52 bool opcode_1110110L(const uint8_t *Opcodes, unsigned &Offset,
54 bool opcode_11101110(const uint8_t *Opcodes, unsigned &Offset,
56 bool opcode_11101111(const uint8_t *Opcodes, unsigned &Offset,
[all …]
H A DARMEHABIPrinter.h34 void (OpcodeDecoder::*Routine)(const uint8_t *Opcodes, unsigned &OI);
38 void Decode_00xxxxxx(const uint8_t *Opcodes, unsigned &OI);
39 void Decode_01xxxxxx(const uint8_t *Opcodes, unsigned &OI);
40 void Decode_1000iiii_iiiiiiii(const uint8_t *Opcodes, unsigned &OI);
41 void Decode_10011101(const uint8_t *Opcodes, unsigned &OI);
42 void Decode_10011111(const uint8_t *Opcodes, unsigned &OI);
43 void Decode_1001nnnn(const uint8_t *Opcodes, unsigned &OI);
44 void Decode_10100nnn(const uint8_t *Opcodes, unsigned &OI);
45 void Decode_10101nnn(const uint8_t *Opcodes, unsigned &OI);
46 void Decode_10110000(const uint8_t *Opcodes, unsigned &OI);
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.h26 uint16_t Opcodes[3]; member
56 return Opcodes[Form132]; in get132Opcode()
61 return Opcodes[Form213]; in get213Opcode()
66 return Opcodes[Form231]; in get231Opcode()
86 return Opcodes[0] < RHS.Opcodes[0];
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMInstructionSelector.cpp128 } const Opcodes; member in __anonb198688f0111::ARMInstructionSelector
175 STI(STI), Opcodes(STI), in ARMInstructionSelector()
347 return Size == 8 ? Opcodes.SEXT8 : Opcodes.SEXT16; in selectSimpleExtOpc()
350 return Size == 8 ? Opcodes.ZEXT8 : Opcodes.ZEXT16; in selectSimpleExtOpc()
364 return isStore ? Opcodes.STORE8 : Opcodes.LOAD8; in selectLoadStoreOpCode()
366 return isStore ? Opcodes.STORE16 : Opcodes.LOAD16; in selectLoadStoreOpCode()
368 return isStore ? Opcodes.STORE32 : Opcodes.LOAD32; in selectLoadStoreOpCode()
494 (void)BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Opcodes.MOVi)) in putConstant()
674 : Opcodes.MOV_ga_pcrel) in selectGlobal()
676 : Opcodes.LDRLIT_ga_pcrel); in selectGlobal()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DSerialSnippetGenerator.cpp42 std::vector<unsigned> Opcodes; in computeAliasingInstructions() local
43 Opcodes.resize(State.getInstrInfo().getNumOpcodes()); in computeAliasingInstructions()
44 std::iota(Opcodes.begin(), Opcodes.end(), 0U); in computeAliasingInstructions()
45 llvm::shuffle(Opcodes.begin(), Opcodes.end(), randomGenerator()); in computeAliasingInstructions()
48 for (const unsigned OtherOpcode : Opcodes) { in computeAliasingInstructions()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h62 void EmitRaw(const SmallVectorImpl<uint8_t> &Opcodes) { in EmitRaw() argument
63 Ops.insert(Ops.end(), Opcodes.begin(), Opcodes.end()); in EmitRaw()
64 OpBegins.push_back(OpBegins.back() + Opcodes.size()); in EmitRaw()
H A DARMELFStreamer.cpp87 const SmallVectorImpl<uint8_t> &Opcodes) override;
281 const SmallVectorImpl<uint8_t> &Opcodes) { in emitUnwindRaw() argument
283 for (uint8_t Opcode : Opcodes) in emitUnwindRaw()
409 const SmallVectorImpl<uint8_t> &Opcodes) override;
475 void emitUnwindRaw(int64_t Offset, const SmallVectorImpl<uint8_t> &Opcodes);
737 SmallVector<uint8_t, 64> Opcodes; member in __anon351017eb0111::ARMELFStreamer
782 const SmallVectorImpl<uint8_t> &Opcodes) { in emitUnwindRaw() argument
783 getStreamer().emitUnwindRaw(Offset, Opcodes); in emitUnwindRaw()
1204 Opcodes.clear(); in EHReset()
1254 assert(Opcodes.size() == 4u && in emitFnEnd()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/
H A DMachOLayoutBuilder.cpp272 uint64_t StartOfRebaseInfo = updateOffset(O.Rebases.Opcodes.size()); in layoutTail()
273 uint64_t StartOfBindingInfo = updateOffset(O.Binds.Opcodes.size()); in layoutTail()
274 uint64_t StartOfWeakBindingInfo = updateOffset(O.WeakBinds.Opcodes.size()); in layoutTail()
275 uint64_t StartOfLazyBindingInfo = updateOffset(O.LazyBinds.Opcodes.size()); in layoutTail()
396 O.Rebases.Opcodes.empty() ? 0 : StartOfRebaseInfo; in layoutTail()
397 MLC.dyld_info_command_data.rebase_size = O.Rebases.Opcodes.size(); in layoutTail()
399 O.Binds.Opcodes.empty() ? 0 : StartOfBindingInfo; in layoutTail()
400 MLC.dyld_info_command_data.bind_size = O.Binds.Opcodes.size(); in layoutTail()
402 O.WeakBinds.Opcodes.empty() ? 0 : StartOfWeakBindingInfo; in layoutTail()
403 MLC.dyld_info_command_data.weak_bind_size = O.WeakBinds.Opcodes.size(); in layoutTail()
[all …]
H A DMachOWriter.cpp59 assert((DyLdInfoCommand.rebase_size == O.Rebases.Opcodes.size()) && in totalSize()
64 assert((DyLdInfoCommand.bind_size == O.Binds.Opcodes.size()) && in totalSize()
69 assert((DyLdInfoCommand.weak_bind_size == O.WeakBinds.Opcodes.size()) && in totalSize()
75 assert((DyLdInfoCommand.lazy_bind_size == O.LazyBinds.Opcodes.size()) && in totalSize()
324 assert((DyLdInfoCommand.rebase_size == O.Rebases.Opcodes.size()) && in writeRebaseInfo()
326 memcpy(Out, O.Rebases.Opcodes.data(), O.Rebases.Opcodes.size()); in writeRebaseInfo()
336 assert((DyLdInfoCommand.bind_size == O.Binds.Opcodes.size()) && in writeBindInfo()
338 memcpy(Out, O.Binds.Opcodes.data(), O.Binds.Opcodes.size()); in writeBindInfo()
348 assert((DyLdInfoCommand.weak_bind_size == O.WeakBinds.Opcodes.size()) && in writeWeakBindInfo()
350 memcpy(Out, O.WeakBinds.Opcodes.data(), O.WeakBinds.Opcodes.size()); in writeWeakBindInfo()
[all …]
H A DMachOObject.h214 ArrayRef<uint8_t> Opcodes; member
230 ArrayRef<uint8_t> Opcodes; member
248 ArrayRef<uint8_t> Opcodes; member
261 ArrayRef<uint8_t> Opcodes; member
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DMachOObjectFile.cpp3475 : E(E), O(O), Opcodes(Bytes), Ptr(Bytes.begin()), in MachORebaseEntry()
3479 Ptr = Opcodes.begin(); in moveToFirst()
3484 Ptr = Opcodes.end(); in moveToEnd()
3500 if (Ptr == Opcodes.end()) { in moveNext()
3525 Twine::utohexstr(OpcodeStart - Opcodes.begin())); in moveNext()
3540 Twine::utohexstr(OpcodeStart - Opcodes.begin())); in moveNext()
3549 Twine::utohexstr(OpcodeStart - Opcodes.begin())); in moveNext()
3565 Twine::utohexstr(OpcodeStart - Opcodes.begin())); in moveNext()
3574 Twine::utohexstr(OpcodeStart - Opcodes.begin())); in moveNext()
3590 Twine::utohexstr(OpcodeStart - Opcodes.begin())); in moveNext()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DPredicateExpander.cpp118 const RecVec &Opcodes) { in expandCheckOpcode() argument
119 assert(!Opcodes.empty() && "Expected at least one opcode to check!"); in expandCheckOpcode()
122 if (Opcodes.size() == 1) { in expandCheckOpcode()
124 expandCheckOpcode(OS, Opcodes[0]); in expandCheckOpcode()
131 for (const Record *Rec : Opcodes) { in expandCheckOpcode()
148 const RecVec &Opcodes) { in expandCheckPseudo() argument
152 expandCheckOpcode(OS, Opcodes); in expandCheckPseudo()
241 const RecVec &Opcodes = Rec->getValueAsListOfDefs("Opcodes"); in expandOpcodeSwitchCase() local
242 for (const Record *Opcode : Opcodes) { in expandOpcodeSwitchCase()
H A DPredicateExpander.h72 void expandCheckPseudo(raw_ostream &OS, const RecVec &Opcodes);
73 void expandCheckOpcode(raw_ostream &OS, const RecVec &Opcodes);
H A DCodeGenSchedule.h350 std::vector<const Record *> Opcodes; variable
360 assert(!llvm::is_contained(Opcodes, Opcode) && "Opcode already in set!"); in addOpcode()
361 Opcodes.push_back(Opcode); in addOpcode()
364 ArrayRef<const Record *> getOpcodes() const { return Opcodes; } in getOpcodes()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DCMakeLists.txt12 clang_tablegen(Opcodes.inc
14 SOURCE Interp/Opcodes.td
15 TARGET Opcodes)
131 Opcodes
/openbsd-src/gnu/usr.bin/clang/libclangAST/
H A DMakefile123 Opcodes.inc
125 Opcodes.inc
131 Opcodes.inc:
132 …${TBLGEN} -I${CLANG_INC} -gen-clang-opcodes ${.CURDIR}/../../../llvm/clang/lib/AST/Interp/Opcodes.…
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/lib/AST/
H A DBUILD.gn3 clang_tablegen("Opcodes") {
6 td_file = "Interp/Opcodes.td"
20 ":Opcodes",
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp296 std::initializer_list<unsigned> Opcodes) { in getActionDefinitionsBuilder() argument
297 unsigned Representative = *Opcodes.begin(); in getActionDefinitionsBuilder()
299 assert(Opcodes.size() >= 2 && in getActionDefinitionsBuilder()
302 for (unsigned Op : llvm::drop_begin(Opcodes)) in getActionDefinitionsBuilder()
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-msp430.texi21 * MSP430 Opcodes:: Opcodes
155 @node MSP430 Opcodes
156 @section Opcodes
H A Dc-arc.texi24 * ARC Opcodes:: Opcodes
200 @node ARC Opcodes
201 @section Opcodes
H A Dc-a29k.texi21 * AMD29K Opcodes:: Opcodes
172 @node AMD29K Opcodes
173 @section Opcodes
H A Dc-ia64.texi24 * IA-64 Opcodes:: Opcodes
143 @node IA-64 Opcodes
144 @section Opcodes
H A Dc-i860.texi24 * Opcodes for i860:: i860 Opcodes
115 @node Opcodes for i860
116 @section i860 Opcodes
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/
H A DTargetInstrPredicate.td165 // Check that the instruction opcode is one of the opcodes in set `Opcodes`.
169 class CheckOpcode<list<Instruction> Opcodes> : MCInstPredicate {
170 list<Instruction> ValidOpcodes = Opcodes;
174 // `Opcodes`. This check is always expanded to "false" if we are generating
176 class CheckPseudo<list<Instruction> Opcodes> : CheckOpcode<Opcodes>;
215 list<Instruction> Opcodes = opcodes;
297 list<Instruction> Opcodes = opcodes;
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-i860.texi24 * Opcodes for i860:: i860 Opcodes
115 @node Opcodes for i860
116 @section i860 Opcodes

12345