Displaying 12 results from an estimated 12 matches for "vendorstr".
2014 Jul 09
5
[LLVMdev] [PATCH][REQUEST] Could someone submit this CSR Kalimba definitions patch please?
...Arch(parseArch(getArchName())),
- SubArch(parseSubArch(getArchName())),
Vendor(parseVendor(getVendorName())),
OS(parseOS(getOSName())),
Environment(parseEnvironment(getEnvironmentName())),
@@ -413,7 +398,6 @@
Triple::Triple(const Twine &ArchStr, const Twine &VendorStr, const
Twine &OSStr)
: Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr).str()),
Arch(parseArch(ArchStr.str())),
- SubArch(parseSubArch(ArchStr.str())),
Vendor(parseVendor(VendorStr.str())),
OS(parseOS(OSStr.str())),
Environ...
2012 Aug 17
3
[LLVMdev] RFC: MCJIT enhancements
...Add an llvm::Triple::ObjectFormatType enum with all llvm-supported object formats.
>
> 3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
>
> 4. Add the following methods to llvm::Triple:
>
>
>
> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
>
> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
>
> bool hasExplicitObjectFormat() const
>
> ObjectFormatType getObjectFormat() con...
2012 Aug 16
2
[LLVMdev] RFC: MCJIT enhancements
...EM-OBJECT_FORMAT-ENVIRONMENT
2. Add an llvm::Triple::ObjectFormatType enum with all llvm-supported object formats.
3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
4. Add the following methods to llvm::Triple:
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
bool hasExplicitObjectFormat() const
ObjectFormatType getObjectFormat() const
StringRef getObjectFormatN...
2012 Aug 17
0
[LLVMdev] RFC: MCJIT enhancements
...atType enum with all
> llvm-supported object formats.****
>
> **3. **Remove “MachO” from the llvm::Triple::EnvironmentType enum.**
> **
>
> **4. **Add the following methods to llvm::Triple:****
>
> ** **
>
> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr,
> const Twine &ObjFmtStr)****
>
> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr,
> const Twine &ObjFmtStr, const Twine &EnvStr)****
>
> bool hasExplicitObjectFormat() const****
>
> ObjectFormatType ge...
2012 Sep 05
2
[LLVMdev] RFC: MCJIT enhancements
...EM-OBJECT_FORMAT-ENVIRONMENT
2. Add an llvm::Triple::ObjectFormatType enum with all llvm-supported object formats.
3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
4. Add the following methods to llvm::Triple:
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
bool hasExplicitObjectFormat() const
ObjectFormatType getObjectFormat() const
StringRef getObjectFormatN...
2012 Aug 28
0
[LLVMdev] RFC: MCJIT enhancements
...EM-OBJECT_FORMAT-ENVIRONMENT
2. Add an llvm::Triple::ObjectFormatType enum with all llvm-supported object formats.
3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
4. Add the following methods to llvm::Triple:
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
bool hasExplicitObjectFormat() const
ObjectFormatType getObjectFormat() const
StringRef getObjectFormatN...
2012 Sep 05
0
[LLVMdev] RFC: MCJIT enhancements
...Add an llvm::Triple::ObjectFormatType enum with all llvm-supported object formats.
>
> 3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
>
> 4. Add the following methods to llvm::Triple:
>
>
>
> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
>
> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
>
> bool hasExplicitObjectFormat() const
>
> ObjectFormatType getObjectFormat() con...
2012 Sep 07
2
[LLVMdev] RFC: MCJIT enhancements
...tType enum with all llvm-supported object formats.
>>
>> 3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
>>
>> 4. Add the following methods to llvm::Triple:
>>
>>
>>
>> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
>>
>> Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
>>
>> bool hasExplicitObjectFormat() const
>>
>> ObjectFormatTy...
2002 Jul 26
6
What tags are allowed in ogg files?
...at two comment tags (and their leading 32 bit integer
describing the tags length) are switched position.
To write the file, i do this:
Bit-by-bit copying all contents of the existing file, until the beginning of
the "Vendor length" integer.
Then I write:
vendorlength (32 bit unsig. int)
vendorstring
comment count (32 bit unsig. int)
comment1 length) 32 bit unsig. int)
comment1 string (fieldname=value)
comment2 length..
..
..
and then I copy the rest of the contents from the existing file.
I've uploaded two sliced ogg files (200 kb each):
http://www.mexp.dk/ogg/test1.ogg (this is the...
2012 Aug 16
0
[LLVMdev] RFC: MCJIT enhancements
On Wed, Jul 25, 2012 at 12:24 AM, Kaylor, Andrew <andrew.kaylor at intel.com>wrote:
>
> -------------------------------****
>
> ELF Support on Windows****
>
> -------------------------------****
>
> ****
>
> There are various reasons that it would be nice to be able to support
> generation of ELF objects on Windows through the MCJIT interface, one of
>
2012 Sep 07
0
[LLVMdev] RFC: MCJIT enhancements
...EM-OBJECT_FORMAT-ENVIRONMENT
2. Add an llvm::Triple::ObjectFormatType enum with all llvm-supported object formats.
3. Remove “MachO” from the llvm::Triple::EnvironmentType enum.
4. Add the following methods to llvm::Triple:
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr)
Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, const Twine &ObjFmtStr, const Twine &EnvStr)
bool hasExplicitObjectFormat() const
ObjectFormatType getObjectFormat() const
StringRef getObjectFormatN...
2012 Jul 24
5
[LLVMdev] RFC: MCJIT enhancements
Following up and expanding on an earlier conversation, I'd like to discuss making several non-trivial changes to the MCJIT engine and related objects. There may be some interdependencies between these changes, but I think that they can be logically grouped as follows:
* Lazy module compilation
* Enhance the JIT memory manager interface to enable section-based memory protection
* Clean up