similar to: Inline SmallVectorBase::grow_pod?

Displaying 20 results from an estimated 5000 matches similar to: "Inline SmallVectorBase::grow_pod?"

2010 Apr 27
1
[LLVMdev] 2.7 build fails
I configured with options: --enable-debug-runtime --prefix=/usr/local/llvm/2.7 --enable-optimized --enable-assertions --enable-shared Build fails with the errors: llvm[2]: Linking Release executable opt (without symbols) /tmp/llvm-build/2.7/llvm-objects/tools/opt/Release/AnalysisWrappers.o(.text+0xb0): In function `(anonymous
2016 Nov 17
2
NamedRegionTimer - printing structured data, full nanosecond resolution values
Hi all, I'd like to output structured data for all of the gathered timers with the full nanosecond numbers to a file, say JSON for example. Does the timer infrastructure support this, or at least installing some custom print handlers? If not, does any of that sound like an interesting patch? David
2013 Jun 30
1
[LLVMdev] Implementing closures and continuations
> On Jun 29, 2013, at 9:53 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > >> On Sat, Jun 29, 2013 at 7:51 PM, David Farler <accumulator at icloud.com> wrote: >> Hi all, >> >> In getting to know the LLVM infrastructure, I'm having a hard time finding implementation details for closures and continuations. >> >> For closures,
2013 Jun 30
2
[LLVMdev] Implementing closures and continuations
Hi all, In getting to know the LLVM infrastructure, I'm having a hard time finding implementation details for closures and continuations. For closures, I've read comments such as "using a struct" as an environment to hold references to free variables, linked lists to dictionaries for various scope levels, and even things like "it's just like virtual methods". I
2013 Jun 30
0
[LLVMdev] Implementing closures and continuations
On Sat, Jun 29, 2013 at 7:51 PM, David Farler <accumulator at icloud.com>wrote: > Hi all, > > In getting to know the LLVM infrastructure, I'm having a hard time finding > implementation details for closures and continuations. > > For closures, I've read comments such as "using a struct" as an > environment to hold references to free variables, linked
2016 Apr 14
2
Swift Test Suite
Folks, I'm glad we're getting all the Swift support upstream, but I worry how can we make sure it works for real applications after the initial support is in. I'm sure you guys have your own internal builders, but I think it would be interesting in having some more substantial tests in the test-suite. Are there plans to do that at all? Or are we just going to rely on Clang tests for
2013 Jan 30
6
New version of UFO - is there a new HOWTO?
I just installed glusterfs-swift 3.3.1 on a couple of Fedora 18 servers. This is based on swift 1.7.4 and has keystone in the config. I had experimented with the one based on swift 1.4.8 and tempauth and had some problems with it. The HOWTO I can find is still for the old one. Is there an updated one? I would also need to find some instructions on setting up keystone from scratch for
2016 Jan 05
6
Diff to add ARMv6L to Target parser
> You assume triples make sense. That's the first mistake everyone does > when thinking about triples. :) I know they don't make sense in many corner cases, but I think discarding logic where it *does* exist is a mistake. > AFAIK, "ARMv7B" is only used by HighBank, which is no more. But that, > too, was "ARMv7A big endian". I believe it's what any
2015 Oct 05
2
Swift to IR, generates wrong IR
Hi, I have a simple swift code from which I generate IR code with ‘swiftc test.swift -emit-ir -o test.ll' When I try to run the .ll file or apply optimization with opt, I get errors like this one: lli: test.ll:548:110: error: expected instruction opcode %9 = cmpxchg i64* bitcast (%swift.type*** @field_type_vector_TipCalculator to i64*), i64 0, i64 %8 seq_cst seq_cst
2016 Sep 28
2
Xcode issues
Hi, I’m using llvm+clang (+ a wrapper for swift that allow me to use my clang to compile swift files) inside Xcode and I have encountered two issues with the new clang 3.9 and Xcode 8: 1) when compiling with the deployment target set to 10.0, I got this error: clang-3.9: error: invalid version number in '-miphoneos-version-min=10.0’. If I set back the deployment target to 9.3 it works fine.
2012 Feb 08
11
define hostclass with special characters
Hi, I need to define the hostclass with special character for ex: "swift::proxy-ring" I have tried following ways but not worked: 1) hostclass :swift::proxy-ring do 2) hostclass ''swift::proxy-ring'' do 3) hostclass "swift::proxy-ring" do When I am using the 2 and 3 options it is giving following erroe: undefined method `[]'' for Class:Class at
2016 Mar 02
4
RFC: Implementing the Swift calling convention in LLVM and Clang
On 2 March 2016 at 19:01, John McCall <rjmccall at apple.com> wrote: > Also, just a quick question. I’m happy to continue to talk about the actual > design and implementation of LLVM IR on this point, and I’d be happy to > put out the actual patch we’re initially proposing. Obviously, all of this code > needs to go through the normal LLVM/Clang code review processes. But >
2007 Sep 18
1
Asterisk 1.4 and Cepstral
Greetings, I've recently upgraded from Asterisk 1.2 to 1.4. I've been searching for a solution, but am also trying the easy way at the same time. I've now got David of Cepstral now speaking using app_swift from http://www.mezzo.net/asterisk/app_swift.html . The problem is, he sounds way worse than he did when it was asterisk version 1.2. I'm seriously considering either
2014 Jun 11
7
[LLVMdev] [ADVERTISEMENT] open positions in Apple's Swift compiler team
On Jun 10, 2014, at 5:36 PM, C. Bergström <cbergstrom at pathscale.com> wrote: > On 06/11/14 06:58 AM, Ted Kremenek wrote: >> ** NOTE: This is a compiler job announcement. ** >> >> The Apple Source Languages team is looking for exceptional engineers to work on the Swift programming language: > Maybe this has been asked already and I missed it - Will Swift be open
2016 Jan 08
2
Diff to add ARMv6L to Target parser
Thanks for the clarifications, Bob! I’ve spent some time with the head of the llvm.org repo, and I now understand a lot better what Renato and Tim were talking about re. the architecture aliases. The patch to add v6l, therefore, seems simple enough. I haven’t been able to test it in my usual flow, because that involves the whole swift stack. I’m considering creating a program that links to
2016 Sep 28
2
Xcode issues
On Wed, Sep 28, 2016 at 11:13:35AM -0700, Mehdi Amini wrote: > > > On Sep 28, 2016, at 11:00 AM, Rinaldini Julien via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > > Hi, > > > > I’m using llvm+clang (+ a wrapper for swift that allow me to use my clang to compile swift files) inside Xcode and I have encountered two issues with the new clang 3.9 and
2016 Aug 17
2
Job Announcement: Swift Frontend Compiler Engineer at Apple
The Apple Swift frontend compiler team is seeking an exceptional compiler engineer who is passionate about great language design. In this position, you will participate in shaping the future of the Swift language and be a key participant of the swift.org project. You will be involved in all aspects of taking a language feature from concept to implementation. As part of the Apple Swift team, you
2007 Oct 22
1
app_swift issues
Hi all, i'm trying to integrate cepstral and asterisk, and i have a problem i'd appreciate any help with (i know it's a bit tangential, but i figure this is the place with the most knowledge of app_swift and asterisk). I've installed swift from cepstral.com with alison's voice, and it works fine, from the command line i can do swift "hello there" -o test.wav and then
2015 Oct 05
2
Swift to IR, generates wrong IR
Hi, 2015-10-05 11:49 GMT+02:00 Rinaldini Julien via llvm-dev <llvm-dev at lists.llvm.org>: > Sorry, the error is (the previous one was from Apple’s lli): > > Documents/strong.codes/code/build/obfuscator-llvm/bin/opt: test.ll:57:203: error: expected comma after getelementptr's type > @_METACLASS_DATA__TtC4test13TipCalculator = private constant { i32, i32, i32, i32, i8*, i8*,
2017 Nov 29
3
Version of LLVM used in Xcode 9.1
Hello! I'm wondering which LLVM upstream version is used in "Apple LLVM version 9.0.0 (clang-900.0.38)" included in the latest stable Xcode 9.1? The last source code published by Apple was https://opensource.apple.com/source/clang/clang-800.0.42.1/src/ which used LLVM 3.9 version (according to CMakeLists.txt). Best regards, Anton -------------- next part -------------- An HTML