search for: asciiz

Displaying 7 results from an estimated 7 matches for "asciiz".

Did you mean: ascii
2001 Oct 18
1
bug fixes in vorbis-tools/share
Here's a patch to fix some bugs in my code, plus a header file I probably forget to send in before. * Missing header file charset.h. It's not needed outside vorbis-tools/share, so I think it can live there. * There was a minor bug in the UTF-8 decoder utf8_mbtowc(). * I've added some more tests in charset_test.c in an attempt to convince myself that there aren't any more bugs.
2010 Aug 08
1
PATCH/RFC chain.c: update iterator code, yank from chain.c, move both to separate directory
...o smaller functions, everything should look pretty logical. 2c) GPT iterator Core remained similar to previous version. Additional functionality includes: - extra small sanity check - empty partition is characterized by type guid == 0, not lba_first == 0 - automatic label rewrite from UCS2-LE to asciiz (to separate buffer) - export of partition guid (also to separate buffer) 2d) iterators *include* disk during iteration Right after creation, pi_begin() (previously get_first_partition()) does not iterate to first partition. 2e) available data at any time - disk guid or disk signature (sub.gpt....
2007 Dec 11
0
[LLVMdev] Exception handling in JIT
...; + Value >>= 7; > + IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; > + if (IsMore) Byte |= 0x80; > + EmitInt8(Byte, false); > + } while (IsMore); > + } > + > + void EmitString(const std::string &String) { > +// printf(".asciiz %s\n", String.c_str()); > + for (unsigned i = 0, N = String.size(); i < N; ++i) { > + unsigned char C = String[i]; > + EmitInt8(C, false); > + } > + EmitInt8(0, false); > + } > + > + void EmitInt32(int Value) { > +// printf(".long 0x%x...
2007 Dec 12
3
[LLVMdev] Exception handling in JIT
...> + IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; >> + if (IsMore) Byte |= 0x80; >> + EmitInt8(Byte, false); >> + } while (IsMore); >> + } >> + >> + void EmitString(const std::string &String) { >> +// printf(".asciiz %s\n", String.c_str()); >> + for (unsigned i = 0, N = String.size(); i < N; ++i) { >> + unsigned char C = String[i]; >> + EmitInt8(C, false); >> + } >> + EmitInt8(0, false); >> + } >> + >> + void EmitInt32(int Value) { &gt...
2007 Dec 10
2
[LLVMdev] Exception handling in JIT
Hi everyone, Here's a patch that enables exception handling when jitting. I've copy/pasted _many_code from lib/Codegen/DwarfWriter.cpp, so we may need to factorize it, but the functionality is there and I'm very happy with it :) lli should now be able to execute the output from llvm-gcc when using exceptions (the UnwindInst instruction is not involved in this patch). Just add the
2003 Dec 01
0
No subject
...Command = 0x72 Error class = 0x0 Error code = 0 Flags1 = 0x8 Flags2 = 0x1 Tree ID = 0 Proc ID = 2808 UID = 0 MID = 1 Word Count = 0 Dialect=PC NETWORK PROGRAM 1.0 Dialect=MICROSOFT NETWORKS 1.03 Dialect=MICROSOFT NETWO Dialect=Error! ASCIIZ buffer of type 0 (safety=19) Dialect=Error! ASCIIZ buffer of type 0 (safety=17) Dialect=Error! ASCIIZ buffer of type 0 (safety=15) Dialect=Error! ASCIIZ buffer of type 0 (safety=13) Dialect=Error! ASCIIZ buffer of type 0 (safety=11) Dialect=Error! ASCIIZ buffer of type 0 (safety=9) Dialect=Er...
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...- bool ParseDirectiveSectionSwitch(const char *Segment, const char *Section, - unsigned TAA = 0, unsigned ImplicitAlign = 0, - unsigned StubSize = 0); bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz" bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ... bool ParseDirectiveFill(); // ".fill" @@ -132,17 +135,6 @@ private: /// accepts a single symbol (which should be a label or an external). bool ParseDirectiveSymbolAttribute(MCSymbolAttr...